initial version

This commit is contained in:
2026-03-25 16:18:23 -04:00
parent aeec7cae36
commit 88595bee90
27 changed files with 7959 additions and 1 deletions

39
src/app/globals.css Normal file
View File

@@ -0,0 +1,39 @@
@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);
}