|
50 | 50 | @layer base { |
51 | 51 | :root, |
52 | 52 | .light { |
53 | | - --bg: #fdfdfd; /* main canvas - neutral near-white */ |
54 | | - --surface-1: #fcfcfc; /* sidebar, panels */ |
| 53 | + --bg: #fefefe; /* main canvas - neutral near-white */ |
| 54 | + --surface-1: #fefefe; /* sidebar, panels */ |
55 | 55 | --surface-2: #ffffff; /* blocks, cards, modals - pure white */ |
56 | 56 | --surface-3: #f7f7f7; /* popovers, headers */ |
57 | 57 | --surface-4: #f5f5f5; /* buttons base */ |
|
70 | 70 | --text-muted: #737373; |
71 | 71 | --text-subtle: #8c8c8c; |
72 | 72 | --text-inverse: #ffffff; |
| 73 | + --text-muted-inverse: #a0a0a0; |
73 | 74 | --text-error: #ef4444; |
74 | 75 |
|
75 | 76 | /* Borders / dividers */ |
|
186 | 187 | --text-muted: #787878; |
187 | 188 | --text-subtle: #7d7d7d; |
188 | 189 | --text-inverse: #1b1b1b; |
| 190 | + --text-muted-inverse: #b3b3b3; |
189 | 191 | --text-error: #ef4444; |
190 | 192 |
|
191 | 193 | /* --border-strong: #303030; */ |
|
331 | 333 | } |
332 | 334 |
|
333 | 335 | ::-webkit-scrollbar-track { |
334 | | - background: var(--surface-1); |
| 336 | + background: transparent; |
335 | 337 | } |
336 | 338 |
|
337 | 339 | ::-webkit-scrollbar-thumb { |
338 | | - background-color: var(--surface-7); |
| 340 | + background-color: #c0c0c0; |
339 | 341 | border-radius: var(--radius); |
340 | 342 | } |
341 | 343 |
|
342 | 344 | ::-webkit-scrollbar-thumb:hover { |
343 | | - background-color: var(--surface-7); |
| 345 | + background-color: #a8a8a8; |
344 | 346 | } |
345 | 347 |
|
346 | 348 | /* Dark Mode Global Scrollbar */ |
347 | 349 | .dark ::-webkit-scrollbar-track { |
348 | | - background: var(--surface-4); |
| 350 | + background: transparent; |
349 | 351 | } |
350 | 352 |
|
351 | 353 | .dark ::-webkit-scrollbar-thumb { |
352 | | - background-color: var(--surface-7); |
| 354 | + background-color: #5a5a5a; |
353 | 355 | } |
354 | 356 |
|
355 | 357 | .dark ::-webkit-scrollbar-thumb:hover { |
356 | | - background-color: var(--surface-7); |
| 358 | + background-color: #6a6a6a; |
357 | 359 | } |
358 | 360 |
|
359 | 361 | * { |
360 | 362 | scrollbar-width: thin; |
361 | | - scrollbar-color: var(--surface-7) var(--surface-1); |
| 363 | + scrollbar-color: #c0c0c0 transparent; |
362 | 364 | } |
363 | 365 |
|
364 | 366 | .dark * { |
365 | | - scrollbar-color: var(--surface-7) var(--surface-4); |
| 367 | + scrollbar-color: #5a5a5a transparent; |
366 | 368 | } |
367 | 369 |
|
368 | 370 | .copilot-scrollable { |
|
0 commit comments