majorly overhauled the design to now use docker-compose and postgres

This commit is contained in:
2026-02-20 02:02:23 +01:00
parent 9769f509a7
commit 7308ad541d
18 changed files with 633 additions and 256 deletions

20
app/tailwind.config.js Normal file
View File

@@ -0,0 +1,20 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["templates/**/*.html"], // <-- MUST BE CORRECT
darkMode: 'class',
theme: {
extend: {
colors: {
background: '#121418',
surface: '#1e2127',
border: '#2a2d34',
primary: '#4f8cff',
text: '#e4e4e7',
muted: '#a0a0ad',
},
},
},
plugins: [
require('flowbite/plugin')
],
}