This commit is contained in:
gpt-engineer-app[bot]
2026-02-27 00:41:06 +00:00
parent dc6b44fef9
commit 1cc84fb1f1
10 changed files with 3183 additions and 112 deletions
+65 -75
View File
@@ -1,96 +1,52 @@
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Definition of the design system. All colors, gradients, fonts, etc should be defined here.
All colors MUST be HSL.
*/
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--background: 220 20% 7%;
--foreground: 210 20% 92%;
--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
--card: 220 18% 10%;
--card-foreground: 210 20% 92%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
--popover: 220 18% 10%;
--popover-foreground: 210 20% 92%;
--primary: 222.2 47.4% 11.2%;
--primary-foreground: 210 40% 98%;
--primary: 38 92% 55%;
--primary-foreground: 220 20% 7%;
--secondary: 210 40% 96.1%;
--secondary-foreground: 222.2 47.4% 11.2%;
--secondary: 220 16% 16%;
--secondary-foreground: 210 20% 85%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--muted: 220 14% 14%;
--muted-foreground: 215 12% 55%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--accent: 200 80% 50%;
--accent-foreground: 220 20% 7%;
--destructive: 0 84.2% 60.2%;
--destructive: 0 72% 51%;
--destructive-foreground: 210 40% 98%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--ring: 222.2 84% 4.9%;
--success: 142 72% 42%;
--success-foreground: 220 20% 7%;
--border: 220 14% 18%;
--input: 220 14% 18%;
--ring: 38 92% 55%;
--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%;
}
.dark {
--background: 222.2 84% 4.9%;
--foreground: 210 40% 98%;
--card: 222.2 84% 4.9%;
--card-foreground: 210 40% 98%;
--popover: 222.2 84% 4.9%;
--popover-foreground: 210 40% 98%;
--primary: 210 40% 98%;
--primary-foreground: 222.2 47.4% 11.2%;
--secondary: 217.2 32.6% 17.5%;
--secondary-foreground: 210 40% 98%;
--muted: 217.2 32.6% 17.5%;
--muted-foreground: 215 20.2% 65.1%;
--accent: 217.2 32.6% 17.5%;
--accent-foreground: 210 40% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;
--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
--ring: 212.7 26.8% 83.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%;
--sidebar-background: 220 18% 9%;
--sidebar-foreground: 210 20% 85%;
--sidebar-primary: 38 92% 55%;
--sidebar-primary-foreground: 220 20% 7%;
--sidebar-accent: 220 14% 14%;
--sidebar-accent-foreground: 210 20% 85%;
--sidebar-border: 220 14% 18%;
--sidebar-ring: 38 92% 55%;
}
}
@@ -101,5 +57,39 @@ All colors MUST be HSL.
body {
@apply bg-background text-foreground;
font-family: 'Inter', system-ui, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'JetBrains Mono', monospace;
}
code, pre, .font-mono {
font-family: 'JetBrains Mono', monospace;
}
}
@layer utilities {
.glow-primary {
box-shadow: 0 0 20px hsl(38 92% 55% / 0.3), 0 0 60px hsl(38 92% 55% / 0.1);
}
.glow-accent {
box-shadow: 0 0 20px hsl(200 80% 50% / 0.3), 0 0 60px hsl(200 80% 50% / 0.1);
}
.glow-success {
box-shadow: 0 0 20px hsl(142 72% 42% / 0.3);
}
.glow-destructive {
box-shadow: 0 0 20px hsl(0 72% 51% / 0.3);
}
.grid-industrial {
background-image:
linear-gradient(hsl(220 14% 18% / 0.5) 1px, transparent 1px),
linear-gradient(90deg, hsl(220 14% 18% / 0.5) 1px, transparent 1px);
background-size: 20px 20px;
}
}