Spaces:
Sleeping
Sleeping
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap'); | |
| @import "tailwindcss"; | |
| @theme { | |
| --color-bg-main: #050505; | |
| --color-bg-panel: #0a0a0a; | |
| --color-border: #27272a; | |
| --color-accent: #f59e0b; /* Amber-500 for a functional, industrial look */ | |
| --color-accent-dim: #78350f; | |
| --color-text-primary: #e4e4e7; | |
| --color-text-secondary: #a1a1aa; | |
| } | |
| body { | |
| background-color: var(--color-bg-main); | |
| color: var(--color-text-primary); | |
| font-family: 'Inter', sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .font-mono { | |
| font-family: 'JetBrains Mono', monospace; | |
| } | |
| /* Custom Scrollbar for dense data */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: var(--color-bg-main); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: var(--color-border); | |
| border-radius: 3px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--color-text-secondary); | |
| } | |
| /* Utilities */ | |
| .panel-border { | |
| border: 1px solid var(--color-border); | |
| } | |
| .dense-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); | |
| gap: 0.75rem; | |
| } | |