Spaces:
Running
Running
File size: 597 Bytes
74626f2 | 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 | /** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
brand: {
light: '#8B85FF',
DEFAULT: '#6C63FF',
dark: '#5B54E0',
},
secondary: '#38BDF8', // Soft Blue
surface: {
light: '#F8F9FA',
DEFAULT: '#FFFFFF',
dark: '#E9ECEF',
}
},
borderRadius: {
'2xl': '16px',
'3xl': '24px',
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
};
|