23 lines
527 B
JavaScript
23 lines
527 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'bg-primary': '#0a0a0a',
|
|
'bg-secondary': '#171717',
|
|
'text-primary': '#fafafa',
|
|
'text-secondary': '#a3a3a3',
|
|
'accent-red': '#dc2626',
|
|
'accent-red-dark': '#991b1b',
|
|
'accent-red-light': '#ef4444',
|
|
'border-color': '#262626',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'Segoe UI', 'system-ui', '-apple-system', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|