mirror of
https://github.com/bestnite/sub2clash.git
synced 2026-01-18 06:17:24 +00:00
Refactor(frontend): Refactor frontend using Lit
Refactor(database): use gorm+sqlite instead of bbolt Feat: Add delete short link functionality Fix: Load correct configuration template during meta config conversion
This commit is contained in:
72
server/frontend/src/index.css
Normal file
72
server/frontend/src/index.css
Normal file
@@ -0,0 +1,72 @@
|
||||
@import "tailwindcss";
|
||||
@plugin "daisyui";
|
||||
|
||||
@plugin "daisyui/theme" {
|
||||
name: "light";
|
||||
default: false;
|
||||
prefersdark: false;
|
||||
color-scheme: "light";
|
||||
--color-base-100: oklch(98% 0.001 106.423);
|
||||
--color-base-200: oklch(97% 0.001 106.424);
|
||||
--color-base-300: oklch(92% 0.003 48.717);
|
||||
--color-base-content: oklch(21% 0.006 56.043);
|
||||
--color-primary: oklch(54% 0.281 293.009);
|
||||
--color-primary-content: oklch(96% 0.016 293.756);
|
||||
--color-secondary: oklch(57% 0.245 27.325);
|
||||
--color-secondary-content: oklch(97% 0.013 17.38);
|
||||
--color-accent: oklch(59% 0.249 0.584);
|
||||
--color-accent-content: oklch(97% 0.014 343.198);
|
||||
--color-neutral: oklch(14% 0.004 49.25);
|
||||
--color-neutral-content: oklch(98% 0.001 106.423);
|
||||
--color-info: oklch(78% 0.154 211.53);
|
||||
--color-info-content: oklch(30% 0.056 229.695);
|
||||
--color-success: oklch(79% 0.209 151.711);
|
||||
--color-success-content: oklch(26% 0.065 152.934);
|
||||
--color-warning: oklch(82% 0.189 84.429);
|
||||
--color-warning-content: oklch(27% 0.077 45.635);
|
||||
--color-error: oklch(71% 0.194 13.428);
|
||||
--color-error-content: oklch(27% 0.105 12.094);
|
||||
--radius-selector: 1rem;
|
||||
--radius-field: 1rem;
|
||||
--radius-box: 1rem;
|
||||
--size-selector: 0.25rem;
|
||||
--size-field: 0.25rem;
|
||||
--border: 1.5px;
|
||||
--depth: 0;
|
||||
--noise: 0;
|
||||
}
|
||||
|
||||
@plugin "daisyui/theme" {
|
||||
name: "dark";
|
||||
default: true;
|
||||
prefersdark: true;
|
||||
color-scheme: "dark";
|
||||
--color-base-100: oklch(21% 0.006 285.885);
|
||||
--color-base-200: oklch(21% 0.006 285.885);
|
||||
--color-base-300: oklch(27% 0.006 286.033);
|
||||
--color-base-content: oklch(96% 0.001 286.375);
|
||||
--color-primary: oklch(55% 0.288 302.321);
|
||||
--color-primary-content: oklch(97% 0.014 308.299);
|
||||
--color-secondary: oklch(44% 0.03 256.802);
|
||||
--color-secondary-content: oklch(98% 0.002 247.839);
|
||||
--color-accent: oklch(59% 0.249 0.584);
|
||||
--color-accent-content: oklch(97% 0.014 343.198);
|
||||
--color-neutral: oklch(37% 0.013 285.805);
|
||||
--color-neutral-content: oklch(98% 0 0);
|
||||
--color-info: oklch(54% 0.245 262.881);
|
||||
--color-info-content: oklch(97% 0.014 254.604);
|
||||
--color-success: oklch(64% 0.2 131.684);
|
||||
--color-success-content: oklch(98% 0.031 120.757);
|
||||
--color-warning: oklch(66% 0.179 58.318);
|
||||
--color-warning-content: oklch(98% 0.022 95.277);
|
||||
--color-error: oklch(58% 0.253 17.585);
|
||||
--color-error-content: oklch(96% 0.015 12.422);
|
||||
--radius-selector: 1rem;
|
||||
--radius-field: 1rem;
|
||||
--radius-box: 1rem;
|
||||
--size-selector: 0.25rem;
|
||||
--size-field: 0.25rem;
|
||||
--border: 1px;
|
||||
--depth: 0;
|
||||
--noise: 1;
|
||||
}
|
||||
Reference in New Issue
Block a user