33 lines
973 B
JavaScript
33 lines
973 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
DEFAULT: '#312E81',
|
|
50: '#EEF2FF',
|
|
100: '#E0E7FF',
|
|
200: '#C7D2FE',
|
|
300: '#A5B4FC',
|
|
400: '#818CF8',
|
|
500: '#6366F1',
|
|
600: '#4F46E5',
|
|
700: '#4338CA',
|
|
800: '#312E81',
|
|
900: '#1E1B4B',
|
|
},
|
|
accent: {
|
|
DEFAULT: '#22D3EE',
|
|
light: '#67E8F9',
|
|
dark: '#0891B2',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|