diff --git a/__pycache__/app.cpython-313.pyc b/__pycache__/app.cpython-313.pyc index 3955feb..8c5da0e 100644 Binary files a/__pycache__/app.cpython-313.pyc and b/__pycache__/app.cpython-313.pyc differ diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..e69de29 diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..893a057 --- /dev/null +++ b/tailwind.config.js @@ -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' +} \ No newline at end of file