39420-vm/src/index.css
gpt-engineer-app[bot] 9c7929d359 Unified mod sources display
Co-authored-by: felix-fx-top <253056634+felix-fx-top@users.noreply.github.com>
2026-03-31 10:43:02 +00:00

82 lines
1.6 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 240 30% 8%;
--foreground: 210 40% 96%;
--card: 240 25% 12%;
--card-foreground: 210 40% 96%;
--popover: 240 25% 12%;
--popover-foreground: 210 40% 96%;
--primary: 122 39% 49%;
--primary-foreground: 240 30% 6%;
--secondary: 240 20% 16%;
--secondary-foreground: 210 40% 96%;
--muted: 240 15% 14%;
--muted-foreground: 215 15% 55%;
--accent: 122 39% 49%;
--accent-foreground: 240 30% 6%;
--destructive: 0 84% 60%;
--destructive-foreground: 210 40% 98%;
--border: 240 12% 18%;
--input: 240 12% 18%;
--ring: 122 39% 49%;
--radius: 0.75rem;
--sidebar-background: 240 25% 7%;
--sidebar-foreground: 210 40% 96%;
--sidebar-primary: 122 39% 49%;
--sidebar-primary-foreground: 240 30% 6%;
--sidebar-accent: 240 15% 14%;
--sidebar-accent-foreground: 210 40% 96%;
--sidebar-border: 240 12% 18%;
--sidebar-ring: 122 39% 49%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground font-cairo antialiased;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Better focus styles */
:focus-visible {
@apply outline-2 outline-offset-2 outline-ring;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: hsl(var(--background));
}
::-webkit-scrollbar-thumb {
background: hsl(var(--border));
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(var(--muted-foreground));
}
}