2025-09-28 19:40:23 +02:00
|
|
|
@import "tailwindcss";
|
|
|
|
@import "tw-animate-css";
|
|
|
|
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--background: oklch(1 0 0);
|
|
|
|
--foreground: oklch(0.145 0 0);
|
|
|
|
--card: oklch(1 0 0);
|
|
|
|
--card-foreground: oklch(0.145 0 0);
|
|
|
|
--popover: oklch(1 0 0);
|
|
|
|
--popover-foreground: oklch(0.145 0 0);
|
|
|
|
--primary: oklch(0.205 0 0);
|
|
|
|
--primary-foreground: oklch(0.985 0 0);
|
|
|
|
--secondary: oklch(0.97 0 0);
|
|
|
|
--secondary-foreground: oklch(0.205 0 0);
|
|
|
|
--muted: oklch(0.97 0 0);
|
|
|
|
--muted-foreground: oklch(0.556 0 0);
|
|
|
|
--accent: oklch(0.97 0 0);
|
|
|
|
--accent-foreground: oklch(0.205 0 0);
|
|
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
|
|
--destructive-foreground: oklch(0.577 0.245 27.325);
|
|
|
|
--border: oklch(0.922 0 0);
|
|
|
|
--input: oklch(0.922 0 0);
|
|
|
|
--ring: oklch(0.708 0 0);
|
|
|
|
--chart-1: oklch(0.646 0.222 41.116);
|
|
|
|
--chart-2: oklch(0.6 0.118 184.704);
|
|
|
|
--chart-3: oklch(0.398 0.07 227.392);
|
|
|
|
--chart-4: oklch(0.828 0.189 84.429);
|
|
|
|
--chart-5: oklch(0.769 0.188 70.08);
|
|
|
|
--radius: 0.625rem;
|
|
|
|
--sidebar: oklch(0.985 0 0);
|
|
|
|
--sidebar-foreground: oklch(0.145 0 0);
|
2025-09-28 22:53:42 +02:00
|
|
|
--header-bg: oklch(1 0 0);
|
|
|
|
--header-foreground: oklch(0.145 0 0);
|
2025-09-28 19:40:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
--background: oklch(0.205 0.005 240); /* Proxmox dark gray #2b2f36 */
|
|
|
|
--foreground: oklch(0.985 0 0);
|
|
|
|
--card: oklch(0.235 0.005 240); /* Slightly lighter gray for cards #363c45 */
|
|
|
|
--card-foreground: oklch(0.985 0 0);
|
|
|
|
--popover: oklch(0.235 0.005 240);
|
|
|
|
--popover-foreground: oklch(0.985 0 0);
|
|
|
|
--primary: oklch(0.985 0 0);
|
|
|
|
--primary-foreground: oklch(0.205 0 0);
|
|
|
|
--secondary: oklch(0.285 0.005 240); /* Better contrast for secondary elements */
|
|
|
|
--secondary-foreground: oklch(0.985 0 0);
|
|
|
|
--muted: oklch(0.285 0.005 240);
|
|
|
|
--muted-foreground: oklch(0.708 0 0); /* Better contrast for muted text */
|
|
|
|
--accent: oklch(0.285 0.005 240);
|
|
|
|
--accent-foreground: oklch(0.985 0 0);
|
|
|
|
--destructive: oklch(0.396 0.141 25.723);
|
|
|
|
--destructive-foreground: oklch(0.637 0.237 25.331);
|
|
|
|
--border: oklch(0.335 0.005 240); /* More visible borders */
|
|
|
|
--input: oklch(0.285 0.005 240);
|
|
|
|
--ring: oklch(0.439 0 0);
|
|
|
|
--chart-1: oklch(0.65 0.2 220); /* Bright Blue */
|
|
|
|
--chart-2: oklch(0.65 0.2 140); /* Bright Green */
|
|
|
|
--chart-3: oklch(0.7 0.2 50); /* Bright Yellow */
|
|
|
|
--chart-4: oklch(0.65 0.2 300); /* Bright Purple */
|
|
|
|
--chart-5: oklch(0.65 0.2 20); /* Bright Orange */
|
2025-09-28 22:53:42 +02:00
|
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
|
|
--radius-lg: var(--radius);
|
|
|
|
--radius-xl: calc(var(--radius) + 4px);
|
2025-09-28 19:40:23 +02:00
|
|
|
--sidebar: oklch(0.205 0 0);
|
|
|
|
--sidebar-foreground: oklch(0.985 0 0);
|
|
|
|
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
|
|
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
|
|
--sidebar-accent: oklch(0.285 0.005 240);
|
|
|
|
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
|
|
--sidebar-border: oklch(0.285 0.005 240);
|
|
|
|
--sidebar-ring: oklch(0.439 0 0);
|
|
|
|
--header-bg: oklch(0 0 0);
|
|
|
|
--header-foreground: oklch(1 0 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@theme inline {
|
2025-09-28 22:53:42 +02:00
|
|
|
--font-sans: var(--font-geist-sans);
|
|
|
|
--font-mono: var(--font-geist-mono);
|
2025-09-28 19:40:23 +02:00
|
|
|
--color-background: var(--background);
|
|
|
|
--color-foreground: var(--foreground);
|
|
|
|
--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: var(--chart-1);
|
|
|
|
--color-chart-2: var(--chart-2);
|
|
|
|
--color-chart-3: var(--chart-3);
|
|
|
|
--color-chart-4: var(--chart-4);
|
|
|
|
--color-chart-5: 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);
|
|
|
|
--color-sidebar: var(--sidebar);
|
|
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
|
|
}
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
* {
|
|
|
|
@apply border-border outline-ring/50;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
@apply bg-background text-foreground;
|
|
|
|
}
|
2025-09-28 22:53:42 +02:00
|
|
|
.header-bg {
|
|
|
|
background-color: var(--header-bg);
|
|
|
|
color: var(--header-foreground);
|
|
|
|
backdrop-filter: none; /* Remove any blur effects */
|
|
|
|
}
|
|
|
|
/* Custom scrollbar with better contrast */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: var(--background);
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--muted);
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: var(--muted-foreground);
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
/* Better contrast for dark mode content */
|
|
|
|
.dark .metric-card {
|
|
|
|
background: var(--card);
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
.dark .metric-value {
|
|
|
|
color: var(--foreground);
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
.dark .metric-label {
|
|
|
|
color: var(--muted-foreground);
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
/* Fix chart axis visibility in dark mode */
|
|
|
|
.dark .recharts-cartesian-axis-tick-value {
|
|
|
|
fill: var(--muted-foreground) !important;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
.dark .recharts-text {
|
|
|
|
fill: var(--muted-foreground) !important;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
/* Improve server info layout in header - clean design without transparency */
|
|
|
|
.server-info {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 0.5rem;
|
|
|
|
padding: 0.25rem 0.75rem;
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
.dark .server-info {
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
/* Better spacing for VM/LXC badges */
|
|
|
|
.vm-badges {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 0.25rem;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
|
2025-09-28 22:53:42 +02:00
|
|
|
.vm-badge {
|
|
|
|
font-size: 0.75rem;
|
|
|
|
padding: 0.125rem 0.5rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2025-09-28 19:40:23 +02:00
|
|
|
}
|