- Remove all gradient backgrounds for clean white interface - Update color scheme to neutral shadcn.com palette - Simplify card headers (remove icons and colored backgrounds) - Clean up spacing and reduce visual noise - Update buttons to use outline variants - Simplify table and stats styling with muted colors - Improve typography with better font smoothing - Match shadcn.com's minimal, professional aesthetic 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
1.1 KiB
CSS
40 lines
1.1 KiB
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-background: 0 0% 100%;
|
|
--color-foreground: 240 10% 3.9%;
|
|
--color-card: 0 0% 100%;
|
|
--color-card-foreground: 240 10% 3.9%;
|
|
--color-popover: 0 0% 100%;
|
|
--color-popover-foreground: 240 10% 3.9%;
|
|
--color-primary: 240 5.9% 10%;
|
|
--color-primary-foreground: 0 0% 98%;
|
|
--color-secondary: 240 4.8% 95.9%;
|
|
--color-secondary-foreground: 240 5.9% 10%;
|
|
--color-muted: 240 4.8% 95.9%;
|
|
--color-muted-foreground: 240 3.8% 46.1%;
|
|
--color-accent: 240 4.8% 95.9%;
|
|
--color-accent-foreground: 240 5.9% 10%;
|
|
--color-destructive: 0 84.2% 60.2%;
|
|
--color-destructive-foreground: 0 0% 98%;
|
|
--color-border: 240 5.9% 90%;
|
|
--color-input: 240 5.9% 90%;
|
|
--color-ring: 240 5.9% 10%;
|
|
--radius: 0.5rem;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background: hsl(var(--color-background));
|
|
min-height: 100vh;
|
|
color: hsl(var(--color-foreground));
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|