|
2 | 2 | @import "@repo/tailwind-config"; |
3 | 3 | @import "@repo/ui/styles.css"; |
4 | 4 |
|
| 5 | +@theme inline { |
| 6 | + --color-background: var(--background); |
| 7 | + --color-foreground: var(--foreground); |
| 8 | + --color-card: var(--card); |
| 9 | + --color-card-foreground: var(--card-foreground); |
| 10 | + --color-popover: var(--popover); |
| 11 | + --color-popover-foreground: var(--popover-foreground); |
| 12 | + --color-primary: var(--primary); |
| 13 | + --color-primary-foreground: var(--primary-foreground); |
| 14 | + --color-secondary: var(--secondary); |
| 15 | + --color-secondary-foreground: var(--secondary-foreground); |
| 16 | + --color-muted: var(--muted); |
| 17 | + --color-muted-foreground: var(--muted-foreground); |
| 18 | + --color-accent: var(--accent); |
| 19 | + --color-accent-foreground: var(--accent-foreground); |
| 20 | + --color-destructive: var(--destructive); |
| 21 | + --color-destructive-foreground: var(--destructive-foreground); |
| 22 | + --color-border: var(--border); |
| 23 | + --color-input: var(--input); |
| 24 | + --color-ring: var(--ring); |
| 25 | + --color-chart-1: var(--chart-1); |
| 26 | + --color-chart-2: var(--chart-2); |
| 27 | + --color-chart-3: var(--chart-3); |
| 28 | + --color-chart-4: var(--chart-4); |
| 29 | + --color-chart-5: var(--chart-5); |
| 30 | + --radius-sm: calc(var(--radius) - 4px); |
| 31 | + --radius-md: calc(var(--radius) - 2px); |
| 32 | + --radius-lg: var(--radius); |
| 33 | + --radius-xl: calc(var(--radius) + 4px); |
| 34 | + --color-sidebar: var(--sidebar); |
| 35 | + --color-sidebar-foreground: var(--sidebar-foreground); |
| 36 | + --color-sidebar-primary: var(--sidebar-primary); |
| 37 | + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); |
| 38 | + --color-sidebar-accent: var(--sidebar-accent); |
| 39 | + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); |
| 40 | + --color-sidebar-border: var(--sidebar-border); |
| 41 | + --color-sidebar-ring: var(--sidebar-ring); |
| 42 | +} |
| 43 | + |
| 44 | +@layer base { |
| 45 | + * { |
| 46 | + @apply border-border outline-ring/50; |
| 47 | + } |
| 48 | + body { |
| 49 | + @apply bg-background text-foreground; |
| 50 | + } |
| 51 | +} |
| 52 | + |
5 | 53 | /* Custom scrollbar styles */ |
6 | 54 | ::-webkit-scrollbar { |
7 | 55 | width: 8px; |
|
0 commit comments