--wip-- [skip ci]

This commit is contained in:
2026-03-22 18:19:12 +01:00
parent fdf0e65e22
commit 4eb5a4d7db
11 changed files with 1200 additions and 34 deletions

1
tailwind/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules/

37
tailwind/input.css Normal file
View File

@@ -0,0 +1,37 @@
@import "tailwindcss";
@source "../src/judas_web/templates/**/*.html";
@source "../src/judas_web/static/js/**/*.js";
.btn-primary {
@apply px-2 py-1 rounded text-sm font-medium text-ctp-base bg-ctp-blue hover:bg-ctp-lavender active:bg-ctp-sapphire;
}
@theme {
--color-ctp-rosewater: #f5e0dc;
--color-ctp-flamingo: #f2cdcd;
--color-ctp-pink: #f5c2e7;
--color-ctp-mauve: #cba6f7;
--color-ctp-red: #f38ba8;
--color-ctp-maroon: #eba0ac;
--color-ctp-peach: #fab387;
--color-ctp-yellow: #f9e2af;
--color-ctp-green: #a6e3a1;
--color-ctp-teal: #94e2d5;
--color-ctp-sky: #89dceb;
--color-ctp-sapphire: #74c7ec;
--color-ctp-blue: #89b4fa;
--color-ctp-lavender: #b4befe;
--color-ctp-text: #cdd6f4;
--color-ctp-subtext1: #bac2de;
--color-ctp-subtext0: #a6adc8;
--color-ctp-overlay2: #9399b2;
--color-ctp-overlay1: #7f849c;
--color-ctp-overlay0: #6c7086;
--color-ctp-surface2: #585b70;
--color-ctp-surface1: #45475a;
--color-ctp-surface0: #313244;
--color-ctp-base: #1e1e2e;
--color-ctp-mantle: #181825;
--color-ctp-crust: #11111b;
}

1037
tailwind/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

17
tailwind/package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "tailwind",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@tailwindcss/cli": "^4.2.1",
"tailwindcss": "^4.2.1"
}
}