| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: [
- "./index.html",
- "./src/**/*.{vue,js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- colors: {
- primary: {
- 50: '#fef7ed',
- 100: '#fdedd3',
- 200: '#fbd9a5',
- 300: '#f8c06d',
- 400: '#f59e33',
- 500: '#f3830f',
- 600: '#e4690a',
- 700: '#bd4f0b',
- 800: '#973f10',
- 900: '#7a3511',
- },
- accent: {
- 50: '#fff7ed',
- 100: '#ffedd5',
- 200: '#fed7aa',
- 300: '#fdba74',
- 400: '#fb923c',
- 500: '#f97316',
- 600: '#ea580c',
- 700: '#c2410c',
- 800: '#9a3412',
- 900: '#7c2d12',
- },
- neutral: {
- 50: '#fafaf9',
- 100: '#f5f5f4',
- 200: '#e7e5e4',
- 300: '#d6d3d1',
- 400: '#a8a29e',
- 500: '#78716c',
- 600: '#57534e',
- 700: '#44403c',
- 800: '#292524',
- 900: '#1c1917',
- }
- }
- },
- },
- plugins: [],
- }
|