Initial commit

This commit is contained in:
2024-12-14 00:11:55 +01:00
committed by GitHub
commit e3eab0f5a1
43 changed files with 5035 additions and 0 deletions

80
src/app/globals.css Normal file
View File

@@ -0,0 +1,80 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 220 23.077% 94.902%; /* base */
--foreground: 233.793 16.022% 35.490%; /* text */
--muted: 222.857 15.909% 82.745%; /* surface0 */
--muted-foreground: 233.333 12.796% 41.373%; /* subtext1 */
--popover: 220 23.077% 94.902%; /* base */
--popover-foreground: 233.793 16.022% 35.490%; /* text */
--card: 220 23.077% 94.902%; /* base */
--card-foreground: 233.793 16.022% 35.490%; /* text */
--border: 225 13.559% 76.863%; /* surface1 */
--input: 225 13.559% 76.863%; /* surface1 */
--primary: 219.907 91.489% 53.922%; /* blue */
--primary-foreground: 220 23.077% 94.902%; /* base */
--secondary: 222.857 15.909% 82.745%; /* surface0 */
--secondary-foreground: 233.793 16.022% 35.490%; /* text */
--accent: 222.857 15.909% 82.745%; /* surface0 */
--accent-foreground: 233.793 16.022% 35.490%; /* text */
--destructive: 347.077 86.667% 44.118%; /* red */
--destructive-foreground: 220 21.951% 91.961%; /* mantle */
--ring: 233.793 16.022% 35.490%; /* text */
--radius: 0.5rem;
}
.dark {
--background: 240 21.053% 14.902%; /* base */
--foreground: 226.154 63.934% 88.039%; /* text */
--muted: 236.842 16.239% 22.941%; /* surface0 */
--muted-foreground: 226.667 35.294% 80.000%; /* subtext1 */
--popover: 240 21.053% 14.902%; /* base */
--popover-foreground: 226.154 63.934% 88.039%; /* text */
--card: 240 21.053% 14.902%; /* base */
--card-foreground: 226.154 63.934% 88.039%; /* text */
--border: 234.286 13.208% 31.176%; /* surface1 */
--input: 234.286 13.208% 31.176%; /* surface1 */
--primary: 217.168 91.870% 75.882%; /* blue */
--primary-foreground: 240 21.053% 14.902%; /* base */
--secondary: 236.842 16.239% 22.941%; /* surface0 */
--secondary-foreground: 226.154 63.934% 88.039%; /* text */
--accent: 236.842 16.239% 22.941%; /* surface0 */
--accent-foreground: 226.154 63.934% 88.039%; /* text */
--destructive: 343.269 81.250% 74.902%; /* red */
--destructive-foreground: 240 21.311% 11.961%; /* mantle */
--ring: 226.154 63.934% 88.039%; /* text */
--radius: 0.5rem;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}