Files
Surveilled/tailwind.config.js
Sudo-Ivan 04e3359369
All checks were successful
OSV-Scanner Scheduled Scan / scan-scheduled (push) Successful in 19s
CI / check (push) Successful in 23s
CI / build (push) Successful in 39s
Remove 'Nunito' from the default sans font family in tailwind.config.js for a more streamlined font stack.
2025-12-24 20:06:25 -06:00

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: [],
};