40 lines
725 B
CSS
40 lines
725 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #0f0f11;
|
|
--surface: #1a1a1f;
|
|
--surface-hover: #24242b;
|
|
--border: #2e2e38;
|
|
--text-primary: #f0f0f5;
|
|
--text-secondary: #9090a8;
|
|
--accent: #7c6aff;
|
|
--accent-hover: #9583ff;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--text-primary);
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: var(--background);
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--border);
|
|
border-radius: 3px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--text-secondary);
|
|
}
|