118 lines
2.6 KiB
CSS
118 lines
2.6 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 30 25% 96%;
|
|
--foreground: 24 20% 12%;
|
|
|
|
--card: 30 20% 99%;
|
|
--card-foreground: 24 20% 12%;
|
|
|
|
--popover: 30 20% 99%;
|
|
--popover-foreground: 24 20% 12%;
|
|
|
|
--primary: 24 40% 22%;
|
|
--primary-foreground: 30 25% 96%;
|
|
|
|
--secondary: 30 18% 90%;
|
|
--secondary-foreground: 24 20% 18%;
|
|
|
|
--muted: 30 15% 93%;
|
|
--muted-foreground: 24 10% 46%;
|
|
|
|
--accent: 32 80% 50%;
|
|
--accent-foreground: 30 25% 98%;
|
|
|
|
--destructive: 0 72% 50%;
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
--border: 30 15% 88%;
|
|
--input: 30 15% 88%;
|
|
--ring: 24 40% 22%;
|
|
|
|
--radius: 0.75rem;
|
|
|
|
--sidebar-background: 24 30% 14%;
|
|
--sidebar-foreground: 30 20% 85%;
|
|
--sidebar-primary: 32 80% 50%;
|
|
--sidebar-primary-foreground: 30 25% 98%;
|
|
--sidebar-accent: 24 25% 20%;
|
|
--sidebar-accent-foreground: 30 20% 90%;
|
|
--sidebar-border: 24 20% 22%;
|
|
--sidebar-ring: 32 80% 50%;
|
|
|
|
--success: 142 60% 40%;
|
|
--success-foreground: 0 0% 100%;
|
|
|
|
--warning: 38 92% 50%;
|
|
--warning-foreground: 24 20% 12%;
|
|
|
|
--font-display: 'Playfair Display', serif;
|
|
--font-body: 'DM Sans', sans-serif;
|
|
}
|
|
|
|
.dark {
|
|
--background: 24 20% 8%;
|
|
--foreground: 30 20% 90%;
|
|
|
|
--card: 24 20% 11%;
|
|
--card-foreground: 30 20% 90%;
|
|
|
|
--popover: 24 20% 11%;
|
|
--popover-foreground: 30 20% 90%;
|
|
|
|
--primary: 32 80% 50%;
|
|
--primary-foreground: 24 20% 8%;
|
|
|
|
--secondary: 24 15% 18%;
|
|
--secondary-foreground: 30 20% 90%;
|
|
|
|
--muted: 24 15% 15%;
|
|
--muted-foreground: 30 10% 55%;
|
|
|
|
--accent: 32 80% 50%;
|
|
--accent-foreground: 24 20% 8%;
|
|
|
|
--destructive: 0 62.8% 30.6%;
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
--border: 24 15% 20%;
|
|
--input: 24 15% 20%;
|
|
--ring: 32 80% 50%;
|
|
|
|
--sidebar-background: 24 25% 6%;
|
|
--sidebar-foreground: 30 20% 85%;
|
|
--sidebar-primary: 32 80% 50%;
|
|
--sidebar-primary-foreground: 24 20% 8%;
|
|
--sidebar-accent: 24 20% 12%;
|
|
--sidebar-accent-foreground: 30 20% 90%;
|
|
--sidebar-border: 24 15% 14%;
|
|
--sidebar-ring: 32 80% 50%;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
font-family: var(--font-body);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-display);
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.glass-card {
|
|
@apply bg-card/80 backdrop-blur-sm border border-border/50 shadow-sm;
|
|
}
|
|
}
|