tailwind.config.js 797 B

12345678910111213141516171819202122232425262728293031323334353637
  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. indigo: {
  19. 50: '#f0f9ff',
  20. 100: '#e0f2fe',
  21. 200: '#bae6fd',
  22. 300: '#7dd3fc',
  23. 400: '#38bdf8',
  24. 500: '#0ea5e9',
  25. 600: '#0284c7',
  26. 700: '#005b8a',
  27. 800: '#075985',
  28. 900: '#0c4a6e',
  29. },
  30. red: colors.rose,
  31. yellow: colors.amber,
  32. orange: colors.orange,
  33. rose: colors.rose
  34. }
  35. }
  36. }