Files
Linking-Tool/tailwind.config.js
Sudo-Ivan 5e07339709
All checks were successful
OSV-Scanner Scheduled Scan / scan-scheduled (push) Successful in 16s
CI / check (push) Successful in 19s
CI / build (push) Successful in 32s
0.1.0
2025-12-24 18:43:08 -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: [],
};