2025-01-31 19:51:25 +02:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2025-01-18 23:17:25 +02:00
|
|
|
|
|
|
|
@layer base {
|
2025-01-21 17:39:17 +02:00
|
|
|
:root {
|
|
|
|
--background: 0 0% 100%;
|
|
|
|
--foreground: 20 14.3% 4.1%;
|
|
|
|
--muted: 60 4.8% 95.9%;
|
|
|
|
--muted-foreground: 25 5.3% 44.7%;
|
|
|
|
--popover: 0 0% 100%;
|
|
|
|
--popover-foreground: 20 14.3% 4.1%;
|
|
|
|
--card: 0 0% 100%;
|
|
|
|
--card-foreground: 20 14.3% 4.1%;
|
|
|
|
--border: 20 5.9% 90%;
|
|
|
|
--input: 20 5.9% 90%;
|
|
|
|
--primary: 24 9.8% 10%;
|
|
|
|
--primary-foreground: 60 9.1% 94%;
|
|
|
|
--secondary: 60 4.8% 95.9%;
|
|
|
|
--secondary-foreground: 24 9.8% 10%;
|
|
|
|
--accent: 60 4.8% 95.9%;
|
|
|
|
--accent-foreground: 24 9.8% 10%;
|
|
|
|
--destructive: 0 72.2% 50.6%;
|
|
|
|
--destructive-foreground: 60 9.1% 94%;
|
|
|
|
--ring: 20 14.3% 4.1%;
|
|
|
|
--radius: 0.5rem;
|
|
|
|
--sidebar-background: 0 0% 98%;
|
|
|
|
--sidebar-foreground: 240 5.3% 26.1%;
|
|
|
|
--sidebar-primary: 240 5.9% 10%;
|
|
|
|
--sidebar-primary-foreground: 0 0% 98%;
|
|
|
|
--sidebar-accent: 240 4.8% 95.9%;
|
|
|
|
--sidebar-accent-foreground: 240 5.9% 10%;
|
|
|
|
--sidebar-border: 220 13% 91%;
|
|
|
|
--sidebar-ring: 217.2 91.2% 59.8%;
|
|
|
|
}
|
2025-01-18 23:17:25 +02:00
|
|
|
|
2025-01-21 17:39:17 +02:00
|
|
|
.dark {
|
|
|
|
--background: 20 14.3% 4.1%;
|
|
|
|
--foreground: 60 9.1% 94%;
|
|
|
|
--muted: 12 6.5% 15.1%;
|
|
|
|
--muted-foreground: 24 5.4% 63.9%;
|
|
|
|
--popover: 20 14.3% 4.1%;
|
|
|
|
--popover-foreground: 60 9.1% 94%;
|
|
|
|
--card: 20 14.3% 4.1%;
|
|
|
|
--card-foreground: 60 9.1% 94%;
|
|
|
|
--border: 12 6.5% 15.1%;
|
|
|
|
--input: 12 6.5% 15.1%;
|
|
|
|
--primary: 60 9.1% 94%;
|
|
|
|
--primary-foreground: 24 9.8% 10%;
|
|
|
|
--secondary: 12 6.5% 15.1%;
|
|
|
|
--secondary-foreground: 60 9.1% 94%;
|
|
|
|
--accent: 12 6.5% 15.1%;
|
|
|
|
--accent-foreground: 60 9.1% 94%;
|
|
|
|
--destructive: 0 62.8% 30.6%;
|
|
|
|
--destructive-foreground: 60 9.1% 94%;
|
|
|
|
--ring: 24 5.7% 82.9%;
|
|
|
|
--sidebar-background: 240 5.9% 10%;
|
|
|
|
--sidebar-foreground: 240 4.8% 95.9%;
|
|
|
|
--sidebar-primary: 224.3 76.3% 48%;
|
|
|
|
--sidebar-primary-foreground: 0 0% 100%;
|
|
|
|
--sidebar-accent: 240 3.7% 15.9%;
|
|
|
|
--sidebar-accent-foreground: 240 4.8% 95.9%;
|
|
|
|
--sidebar-border: 240 3.7% 15.9%;
|
|
|
|
--sidebar-ring: 217.2 91.2% 59.8%;
|
|
|
|
}
|
2025-01-18 23:17:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@layer base {
|
2025-01-21 17:39:17 +02:00
|
|
|
* {
|
|
|
|
@apply border-border;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
@apply bg-background text-foreground;
|
|
|
|
}
|
|
|
|
}
|
2025-01-31 19:51:25 +02:00
|
|
|
|
|
|
|
@layer components {
|
|
|
|
.shadow-sharp {
|
|
|
|
box-shadow: hsl(var(--primary)) 4px 3px 0px;
|
|
|
|
}
|
|
|
|
button.shadow-sharp,
|
|
|
|
a.shadow-sharp {
|
|
|
|
&:hover {
|
|
|
|
box-shadow: hsl(var(--primary)) 2px 1px 0px;
|
|
|
|
translate: 2px 1px;
|
|
|
|
}
|
|
|
|
&.pressed {
|
|
|
|
box-shadow: hsl(var(--primary)) 2px 1px 0px;
|
|
|
|
translate: 2px 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-02-06 01:37:09 +02:00
|
|
|
|
|
|
|
/* Modern browsers with `scrollbar-*` support */
|
|
|
|
@supports (scrollbar-width: auto) {
|
|
|
|
html {
|
|
|
|
scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
|
|
|
|
scrollbar-width: var(--scrollbar-width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Legacy browsers with `::-webkit-scrollbar-*` support */
|
|
|
|
@supports selector(::-webkit-scrollbar) {
|
|
|
|
html::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--scrollbar-color-thumb);
|
|
|
|
}
|
|
|
|
html::-webkit-scrollbar-track {
|
|
|
|
background: var(--scrollbar-color-track);
|
|
|
|
}
|
|
|
|
html::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
max-width: var(--scrollbar-width-legacy);
|
|
|
|
max-height: var(--scrollbar-width-legacy);
|
|
|
|
}
|
|
|
|
}
|