40 lines
725 B
CSS
40 lines
725 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--color-bg: #0a0a0a;
|
|
--color-surface: #141414;
|
|
--color-surface-hover: #1a1a1a;
|
|
--color-border: #262626;
|
|
--color-text: #ededed;
|
|
--color-text-muted: #888;
|
|
--color-accent: #e85d3a;
|
|
--color-accent-hover: #f06a47;
|
|
}
|
|
|
|
body {
|
|
background: var(--color-bg);
|
|
color: var(--color-text);
|
|
font-family:
|
|
"Inter",
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
"Segoe UI",
|
|
Roboto,
|
|
sans-serif;
|
|
}
|
|
|
|
/* Scrollbar styling */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-border);
|
|
border-radius: 3px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--color-text-muted);
|
|
}
|