Files
Tomas Dvorak b27fe6fe0e upload
2025-12-02 13:52:21 +01:00

24 lines
476 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./*.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
'dark-bg': '#0a0e1a',
'dark-card': '#131823',
'dark-border': '#1f2937',
'accent-blue': '#3b82f6',
'accent-green': '#10b981',
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
}
},
},
plugins: [],
}