ubiquitous-invention/apps/web/styles/globals.css

96 lines
1.9 KiB
CSS
Raw Permalink Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222 47% 11%;
--card: 0 0% 100%;
--card-foreground: 222 47% 11%;
--popover: 0 0% 100%;
--popover-foreground: 222 47% 11%;
--primary: 263 70% 55%;
--primary-foreground: 0 0% 100%;
--teal: 168 76% 42%;
--teal-foreground: 0 0% 100%;
--secondary: 210 40% 96%;
--secondary-foreground: 222 47% 11%;
--muted: 210 40% 96%;
--muted-foreground: 215 16% 47%;
--accent: 210 40% 96%;
--accent-foreground: 222 47% 11%;
--destructive: 0 84% 60%;
--destructive-foreground: 0 0% 100%;
--border: 214 32% 91%;
--input: 214 32% 91%;
--ring: 263 70% 55%;
--radius: 0.5rem;
--sidebar: 0 0% 98%;
--sidebar-foreground: 222 47% 11%;
--sidebar-border: 214 32% 91%;
--sidebar-accent: 263 70% 96%;
--sidebar-accent-foreground: 263 70% 35%;
}
.dark {
--background: 240 17% 4%;
--foreground: 210 40% 98%;
--card: 240 17% 7%;
--card-foreground: 210 40% 98%;
--popover: 240 17% 7%;
--popover-foreground: 210 40% 98%;
--primary: 263 70% 58%;
--primary-foreground: 0 0% 100%;
--teal: 168 76% 42%;
--teal-foreground: 0 0% 100%;
--secondary: 240 10% 14%;
--secondary-foreground: 210 40% 98%;
--muted: 240 10% 14%;
--muted-foreground: 215 20% 55%;
--accent: 240 10% 14%;
--accent-foreground: 210 40% 98%;
--destructive: 0 63% 31%;
--destructive-foreground: 0 0% 100%;
--border: 240 10% 18%;
--input: 240 10% 18%;
--ring: 263 70% 58%;
--sidebar: 240 17% 6%;
--sidebar-foreground: 210 40% 98%;
--sidebar-border: 240 10% 18%;
--sidebar-accent: 263 50% 12%;
--sidebar-accent-foreground: 263 70% 80%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}