This repository has been archived on 2026-06-15. You can view files and clone it, but cannot push or open issues or pull requests.
Files
MediaLore/src/app/globals.css
2026-03-25 16:18:23 -04:00

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);
}