tailwind.config.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. primary: {
  11. 50: '#fef7ed',
  12. 100: '#fdedd3',
  13. 200: '#fbd9a5',
  14. 300: '#f8c06d',
  15. 400: '#f59e33',
  16. 500: '#f3830f',
  17. 600: '#e4690a',
  18. 700: '#bd4f0b',
  19. 800: '#973f10',
  20. 900: '#7a3511',
  21. },
  22. accent: {
  23. 50: '#fff7ed',
  24. 100: '#ffedd5',
  25. 200: '#fed7aa',
  26. 300: '#fdba74',
  27. 400: '#fb923c',
  28. 500: '#f97316',
  29. 600: '#ea580c',
  30. 700: '#c2410c',
  31. 800: '#9a3412',
  32. 900: '#7c2d12',
  33. },
  34. neutral: {
  35. 50: '#fafaf9',
  36. 100: '#f5f5f4',
  37. 200: '#e7e5e4',
  38. 300: '#d6d3d1',
  39. 400: '#a8a29e',
  40. 500: '#78716c',
  41. 600: '#57534e',
  42. 700: '#44403c',
  43. 800: '#292524',
  44. 900: '#1c1917',
  45. }
  46. }
  47. },
  48. },
  49. plugins: [],
  50. }