This commit is contained in:
root
2026-05-17 13:21:44 +00:00
parent ffdc887b8a
commit a3e8a4a96c
27 changed files with 671 additions and 140 deletions

View File

@@ -12,6 +12,7 @@
--text: #e8edf7;
--muted: #94a3b8;
--ring-offset: #060912;
color-scheme: dark;
}
html[data-theme="light"] {
@@ -20,6 +21,11 @@ html[data-theme="light"] {
--text: #0f172a;
--muted: #64748b;
--ring-offset: #f1f5f9;
color-scheme: light;
}
html {
scroll-behavior: smooth;
}
body {
@@ -27,9 +33,32 @@ body {
background: var(--bg-deep);
min-height: 100vh;
font-family: var(--font-geist-sans), system-ui, sans-serif;
overflow-x: hidden;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: background-color 0.35s ease, color 0.25s ease;
}
* {
scrollbar-width: thin;
scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-thumb {
background: rgba(148, 163, 184, 0.35);
border-radius: 999px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
.app-bg-layer {
position: fixed;
inset: 0;
@@ -297,3 +326,18 @@ html[data-theme="light"] .chart-surface {
.lp-noise {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}