tailwind.config.js 430 B

123456789101112131415161718192021
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. mode: 'jit',
  4. darkMode: 'class',
  5. content: [
  6. './resources/admin/**/*.{vue,js,ts,jsx.tsx}',
  7. './modules/**/views/**/*.{vue,js,ts,jsx.tsx}'
  8. ],
  9. theme: {
  10. extend: {
  11. transitionProperty: {
  12. width: 'width',
  13. spacing: 'margin, padding',
  14. },
  15. colors: {
  16. 'regal-dark': '#283046',
  17. },
  18. },
  19. },
  20. plugins: [],
  21. }