Files
libreboard.app/app/globals.css
T

36 lines
681 B
CSS
Raw Normal View History

2026-02-18 16:00:14 +01:00
@import "tailwindcss";
:root {
2026-02-18 16:17:34 +01:00
--background: #09090b;
--foreground: #ffffff;
--muted: #a1a1aa;
--border: #27272a;
--surface: #18181b;
2026-02-18 16:00:14 +01:00
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
2026-02-18 16:17:34 +01:00
--color-muted: var(--muted);
--color-border: var(--border);
--color-surface: var(--surface);
2026-02-18 16:00:14 +01:00
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
2026-02-18 16:17:34 +01:00
@keyframes shimmer {
0%,
100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
2026-02-18 16:00:14 +01:00
}
}
body {
background: var(--background);
color: var(--foreground);
2026-02-18 16:17:34 +01:00
font-family: var(--font-geist-sans), system-ui, sans-serif;
2026-02-18 16:00:14 +01:00
}