From 7278ece2b8c234a65db0769a4a63cc9567819c31 Mon Sep 17 00:00:00 2001 From: Till Tomczak Date: Sat, 10 May 2025 23:36:23 +0200 Subject: [PATCH] "feat: Add PostCSS --- __pycache__/app.cpython-313.pyc | Bin 134796 -> 134796 bytes postcss.config.js | 0 tailwind.config.js | 42 ++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 postcss.config.js create mode 100644 tailwind.config.js diff --git a/__pycache__/app.cpython-313.pyc b/__pycache__/app.cpython-313.pyc index 3955febd86c2f892e8fd7513547209f1169e58fd..8c5da0e4cd246a34bf38ce5e9d4ad9928c698fc1 100644 GIT binary patch delta 26 gcmeB~%h5BJgYz>lFBbz4oNnZ7lFBbz4)HZUqax!k^WNPLE0Ae!+Y5)KL 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