Files
website/app/globals.css
2025-09-12 23:20:36 +02:00

123 lines
3.9 KiB
CSS

/* file: app/globals.css */
@import "tailwindcss";
@import "tw-animate-css";
/*
The :root and .dark variables for shadcn/ui theming remain standard CSS.
*/
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 240 5.9% 10%;
--primary-foreground: 0 0% 98%;
--secondary: 240 4.8% 95.9%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
/* ADDED: A slightly darker shade for hover in light mode */
--accent-hover: 240 5% 94%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 10% 3.9%;
--radius: 0.5rem;
--shadow-glow: 0 0 15px 0 hsl(var(--foreground) / 0.075);
--shadow-glow-hover: 0 0 25px 0 hsl(var(--foreground) / 0.25);
}
.dark {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 0 0% 98%;
--primary-foreground: 240 5.9% 10%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--accent-hover: 240 3.7% 19.9%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 18%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--radius: 0.5rem;
--shadow-glow: 0 0 15px 0 hsl(var(--foreground) / 0.075);
--shadow-glow-hover: 0 0 25px 0 hsl(var(--foreground) / 0.25);
}
* {
border-color: theme(colors.border);
}
a {
@apply cursor-pointer font-bold text-accent-foreground transition-colors duration-300 hover:underline;
}
};
@theme {
--dark-mode: "class";
--container-center: true;
--container-padding: 2rem;
--screen-2xl: 1400px;
--color-border: hsl(var(--border));
--color-input: hsl(var(--input));
--color-ring: hsl(var(--ring));
--color-background: hsl(var(--background));
--color-foreground: hsl(var(--foreground));
--color-primary: hsl(var(--primary));
--color-primary-foreground: hsl(var(--primary-foreground));
--color-secondary: hsl(var(--secondary));
--color-secondary-foreground: hsl(var(--secondary-foreground));
--color-destructive: hsl(var(--destructive));
--color-destructive-foreground: hsl(var(--destructive-foreground));
--color-muted: hsl(var(--muted));
--color-muted-foreground: hsl(var(--muted-foreground));
--color-accent: hsl(var(--accent));
--color-accent-foreground: hsl(var(--accent-foreground));
/* ADDED: Make the new variable available to Tailwind */
--color-accent-hover: hsl(var(--accent-hover));
--color-popover: hsl(var(--popover));
--color-popover-foreground: hsl(var(--popover-foreground));
--color-card: hsl(var(--card));
--color-card-foreground: hsl(var(--card-foreground));
--border-radius-lg: var(--radius);
--border-radius-md: calc(var(--radius) - 2px);
--border-radius-sm: calc(var(--radius) - 4px);
--animation-accordion-down: accordion-down 0.2s ease-out;
--animation-accordion-up: accordion-up 0.2s ease-out;
}
@layer components {
.cards {
@apply no-underline transition-all duration-300 ease-out shadow-sm hover:bg-accent-hover hover:shadow-lg dark:shadow-[var(--shadow-glow)] dark:hover:shadow-[var(--shadow-glow-hover)];
}
}
@keyframes accordion-down {
from {
height: 0;
}
to {
height: var(--radix-accordion-content-height);
}
}
@keyframes accordion-up {
from {
height: var(--radix-accordion-content-height);
}
to {
height: 0;
}
}
::view-transition-old(root), ::view-transition-new(root) {
animation: none;
mix-blend-mode: normal;
}