mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-06-11 01:14:45 +02:00
feat: apply Carbon theme — amber accent, Inter/JetBrains Mono, sharp corners, Lucide icons preserved
Carbon palette: #111111/#0d0d0d backgrounds, #1e1e1e borders, traffic-light data colors (green/red/sky/amber), 10px uppercase card headers, StatCard colored border-tops, Layout sidebar amber bar + right nav indicator. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
88554eb252
commit
6b08cdc004
8 changed files with 142 additions and 168 deletions
|
|
@ -6,46 +6,30 @@
|
|||
@tailwind utilities;
|
||||
|
||||
body {
|
||||
background: #0a0e17;
|
||||
background: #111111;
|
||||
margin: 0;
|
||||
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* Custom scrollbar — sharp, no radius */
|
||||
/* Custom scrollbar — sharp */
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #0a0e17;
|
||||
background: #111111;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #2d3a4d;
|
||||
background: #1e1e1e;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #3b4a5d;
|
||||
}
|
||||
|
||||
/* Scanline texture on cards */
|
||||
.bg-bg-card {
|
||||
background-image: repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent,
|
||||
transparent 2px,
|
||||
rgba(255,255,255,0.008) 2px,
|
||||
rgba(255,255,255,0.008) 3px
|
||||
);
|
||||
}
|
||||
|
||||
/* Amber glow utility */
|
||||
.amber-glow {
|
||||
box-shadow: 0 0 12px rgba(245,158,11,0.25);
|
||||
background: #2a2a2a;
|
||||
}
|
||||
|
||||
/* Data values use JetBrains Mono */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue