Spaces:
Sleeping
Sleeping
File size: 871 Bytes
01d5a5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import type { Config } from 'tailwindcss';
export default {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
secondme: {
'warm-bg': '#FDF8F3',
blue: '#4A90E2',
green: '#50B86B',
red: '#FF6B6B',
yellow: '#FFD93D',
navy: '#2C3E50',
gray: {
100: '#F7F9FA',
200: '#E9ECEF',
300: '#DEE2E6',
400: '#CED4DA',
500: '#ADB5BD',
600: '#6C757D',
700: '#495057',
800: '#343A40',
900: '#212529'
}
}
}
}
},
plugins: []
} satisfies Config;
|