Initial commit

This commit is contained in:
Maurus Decimus
2026-04-20 15:02:57 +02:00
parent e72c9614f1
commit 4470616775
115 changed files with 26207 additions and 21 deletions
+141
View File
@@ -0,0 +1,141 @@
/*
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
*/
@import 'tailwindcss';
:root {
--background: oklch(1 0 0);
--foreground: oklch(0.145 0.017 285.823);
--card: oklch(1 0 0);
--card-foreground: oklch(0.145 0.017 285.823);
--popover: oklch(1 0 0);
--popover-foreground: oklch(0.145 0.017 285.823);
--content-background: oklch(0.97 0.003 285.823);
--primary: oklch(0.205 0.017 285.823);
--primary-foreground: oklch(0.985 0.002 285.823);
--secondary: oklch(0.965 0.005 285.823);
--secondary-foreground: oklch(0.205 0.017 285.823);
--muted: oklch(0.93 0.005 285.823);
--muted-foreground: oklch(0.556 0.015 285.823);
--accent: oklch(0.965 0.005 285.823);
--accent-foreground: oklch(0.205 0.017 285.823);
--destructive: oklch(0.577 0.245 27.325);
--destructive-foreground: oklch(0.985 0.002 285.823);
--border: oklch(0.922 0.007 285.823);
--input: oklch(0.922 0.007 285.823);
--ring: oklch(0.708 0.015 285.823);
--radius: 0.5rem;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
.dark {
--background: oklch(0.141 0.005 285.823);
--foreground: oklch(0.985 0.002 285.823);
--card: oklch(0.205 0.007 285.823);
--card-foreground: oklch(0.985 0.002 285.823);
--popover: oklch(0.205 0.007 285.823);
--popover-foreground: oklch(0.985 0.002 285.823);
--content-background: oklch(0.115 0.005 285.823);
--primary: oklch(0.985 0.002 285.823);
--primary-foreground: oklch(0.205 0.017 285.823);
--secondary: oklch(0.274 0.009 285.823);
--secondary-foreground: oklch(0.985 0.002 285.823);
--muted: oklch(0.274 0.009 285.823);
--muted-foreground: oklch(0.708 0.015 285.823);
--accent: oklch(0.274 0.009 285.823);
--accent-foreground: oklch(0.985 0.002 285.823);
--destructive: oklch(0.577 0.245 27.325);
--destructive-foreground: oklch(0.985 0.002 285.823);
--border: oklch(0.274 0.009 285.823);
--input: oklch(0.274 0.009 285.823);
--ring: oklch(0.553 0.013 285.823);
--chart-1: 220 70% 60%;
--chart-2: 160 60% 55%;
--chart-3: 30 80% 60%;
--chart-4: 280 65% 65%;
--chart-5: 340 75% 60%;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-content-background: var(--content-background);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-destructive-foreground: var(--destructive-foreground);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--color-chart-1: hsl(var(--chart-1));
--color-chart-2: hsl(var(--chart-2));
--color-chart-3: hsl(var(--chart-3));
--color-chart-4: hsl(var(--chart-4));
--color-chart-5: hsl(var(--chart-5));
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}
.dark input[type='number'] {
color-scheme: dark;
}