File size: 1,490 Bytes
178e38e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary: 16 162 53;
  --primary-hover: 14 140 46;
}

.dark {
  --primary: 16 163 127;
  --primary-hover: 14 140 108;
}

/* Windows dark mode overrides (macOS values are the Tailwind defaults) */
.platform-win.dark {
  --bg-dark: #202020;
  --card-dark: #2d2d2d;
  --border-dark: #3d3d3d;
}

/* ── macOS titlebar integration ────────────────────────────────── */
.platform-mac header {
  -webkit-app-region: drag;
}

.platform-mac header button,
.platform-mac header a,
.platform-mac header input,
.platform-mac header select {
  -webkit-app-region: no-drag;
}

/* Traffic light clearance */
.platform-mac header > div {
  padding-top: 6px;
}

.platform-mac header > div > div {
  padding-left: 72px;
}

/* ── Windows input focus line ──────────────────────────────────── */
.platform-win input:focus,
.platform-win select:focus {
  border-bottom: 2px solid rgb(var(--primary));
}

/* ── Scrollbar styling ─────────────────────────────────────────── */
pre::-webkit-scrollbar { height: 8px; }
pre::-webkit-scrollbar-track { background: #0d1117; }
pre::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
pre::-webkit-scrollbar-thumb:hover { background: #8b949e; }