Files
Surveilled/tailwind.config.js
2025-12-24 17:00:21 -06:00

23 lines
537 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: ['Nunito', 'Inter', 'Segoe UI', 'system-ui', '-apple-system', 'sans-serif'],
},
},
},
plugins: [],
};