|
|
@import "tailwindcss";
|
|
|
|
|
|
@theme {
|
|
|
--color-theme-bg: var(--theme-bg);
|
|
|
--color-theme-card: var(--theme-card);
|
|
|
--color-theme-border: var(--theme-border);
|
|
|
--color-theme-text: var(--theme-text);
|
|
|
--color-theme-text-muted: var(--theme-text-muted);
|
|
|
--color-theme-accent: var(--theme-accent);
|
|
|
}
|
|
|
|
|
|
:root {
|
|
|
|
|
|
--theme-bg: #0b1120;
|
|
|
|
|
|
--theme-card: #1e293b;
|
|
|
|
|
|
--theme-border: #334155;
|
|
|
|
|
|
--theme-text: #f8fafc;
|
|
|
|
|
|
--theme-text-muted: #94a3b8;
|
|
|
|
|
|
--theme-accent: #38bdf8;
|
|
|
|
|
|
--theme-grad-start: #1e293b;
|
|
|
--theme-grad-end: #0b1120;
|
|
|
|
|
|
font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
|
line-height: 1.5;
|
|
|
font-weight: 400;
|
|
|
|
|
|
color-scheme: dark;
|
|
|
color: var(--theme-text);
|
|
|
background-color: var(--theme-bg);
|
|
|
|
|
|
font-synthesis: none;
|
|
|
text-rendering: optimizeLegibility;
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
}
|
|
|
|
|
|
|
|
|
.theme-emerald {
|
|
|
--theme-bg: #000000;
|
|
|
|
|
|
--theme-card: #051a0d;
|
|
|
|
|
|
--theme-border: #14532d;
|
|
|
|
|
|
--theme-text: #ecfccb;
|
|
|
|
|
|
--theme-text-muted: #4ade80;
|
|
|
|
|
|
--theme-text-highlight: #ffffff;
|
|
|
--theme-accent: #22c55e;
|
|
|
|
|
|
--theme-grad-start: #020602;
|
|
|
--theme-grad-end: #000000;
|
|
|
|
|
|
color-scheme: dark;
|
|
|
}
|
|
|
|
|
|
|
|
|
.theme-synthwave {
|
|
|
--theme-bg: #0f0720;
|
|
|
|
|
|
--theme-card: #1e1035;
|
|
|
|
|
|
--theme-border: #4c1d95;
|
|
|
|
|
|
--theme-text: #fae8ff;
|
|
|
|
|
|
--theme-text-muted: #a855f7;
|
|
|
|
|
|
--theme-text-highlight: #ffffff;
|
|
|
--theme-accent: #e879f9;
|
|
|
|
|
|
--theme-grad-start: #2e1065;
|
|
|
|
|
|
--theme-grad-end: #0f0720;
|
|
|
|
|
|
color-scheme: dark;
|
|
|
}
|
|
|
|
|
|
.theme-synthwave .glass {
|
|
|
background: color-mix(in srgb, var(--theme-card), transparent 20%);
|
|
|
border: 1px solid var(--theme-border);
|
|
|
box-shadow: 0 0 15px -3px rgba(192, 132, 252, 0.15);
|
|
|
|
|
|
}
|
|
|
|
|
|
body {
|
|
|
margin: 0;
|
|
|
display: flex;
|
|
|
min-width: 320px;
|
|
|
min-height: 100vh;
|
|
|
background: radial-gradient(circle at 50% 0%, var(--theme-grad-start) 0%, var(--theme-grad-end) 100%);
|
|
|
color: var(--theme-text);
|
|
|
}
|
|
|
|
|
|
#app {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
@utility glass {
|
|
|
background: color-mix(in srgb, var(--theme-card), transparent 30%);
|
|
|
backdrop-filter: blur(12px);
|
|
|
-webkit-backdrop-filter: blur(12px);
|
|
|
border: 1px solid color-mix(in srgb, var(--theme-border), transparent 80%);
|
|
|
}
|
|
|
|
|
|
.theme-emerald .glass {
|
|
|
background: color-mix(in srgb, var(--theme-card), transparent 20%);
|
|
|
border: 1px solid var(--theme-border);
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@utility card-hover {
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
&:hover {
|
|
|
transform: translateY(-2px);
|
|
|
border-color: var(--theme-accent);
|
|
|
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
width: 8px;
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
background: var(--theme-bg);
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
background: var(--theme-border);
|
|
|
border-radius: 4px;
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
background: var(--theme-text-muted);
|
|
|
} |