tailwind.config.js 821 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. const colors = require('tailwindcss/colors')
  2. module.exports = {
  3. purge: [
  4. './src/**/*.js',
  5. './src/**/*.cljs',
  6. './resources/**/*.html',
  7. ],
  8. plugins: [require('@tailwindcss/ui')],
  9. darkMode: 'class',
  10. theme: {
  11. colors: {
  12. transparent: 'transparent',
  13. current: 'currentColor',
  14. black: colors.black,
  15. white: colors.white,
  16. gray: colors.trueGray,
  17. green: colors.green,
  18. blue: colors.blue,
  19. indigo: {
  20. 50: '#f0f9ff',
  21. 100: '#e0f2fe',
  22. 200: '#bae6fd',
  23. 300: '#7dd3fc',
  24. 400: '#38bdf8',
  25. 500: '#0ea5e9',
  26. 600: '#0284c7',
  27. 700: '#005b8a',
  28. 800: '#075985',
  29. 900: '#0c4a6e',
  30. },
  31. red: colors.red,
  32. yellow: colors.amber,
  33. orange: colors.orange,
  34. rose: colors.rose
  35. }
  36. }
  37. }