Files
website/tailwind.config.js
2025-05-10 23:36:23 +02:00

42 lines
934 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./templates/**/*.{html,js}",
"./static/**/*.{html,js}",
"./templates/admin/**/*.html",
"./templates/community/**/*.html",
"./templates/errors/**/*.html"
],
theme: {
extend: {
colors: {
dark: {
'500': '#333',
'600': '#222',
'700': '#1a1a1a',
'800': '#121212'
},
primary: {
'100': '#d1e7ff',
'300': '#6aa2ff',
'400': '#4d8cff',
'500': '#3a75ff',
'600': '#2563eb',
'700': '#1d4ed8',
'900': '#1e3a8a'
},
secondary: {
'100': '#f0f9ff',
'300': '#7dd3fc',
'400': '#38bdf8',
'500': '#0ea5e9',
'600': '#0284c7',
'700': '#0369a1',
'900': '#075985'
}
}
}
},
plugins: [],
darkMode: 'class'
}