"feat: Add PostCSS

This commit is contained in:
2025-05-10 23:36:23 +02:00
parent f677e98795
commit 7278ece2b8
3 changed files with 42 additions and 0 deletions

Binary file not shown.

0
postcss.config.js Normal file
View File

42
tailwind.config.js Normal file
View File

@@ -0,0 +1,42 @@
/** @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'
}