We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fa39ab commit c7100abCopy full SHA for c7100ab
1 file changed
ui/components/yourpc_page.py
@@ -6,6 +6,17 @@
6
import os
7
import time
8
9
+# ── Typography ────────────────────────────────────────────────────────────────
10
+# Inter (loaded at startup via utils.fonts.load) → falls back to Segoe UI.
11
+# Segoe UI Semibold used for all headings.
12
+try:
13
+ from utils.fonts import UI as _UIF, MONO as _MONOF
14
+except Exception:
15
+ _UIF, _MONOF = "Segoe UI", "Consolas"
16
+_HDR = "Segoe UI Semibold" # section / card headings
17
+_BODY = _UIF # body text (Inter or Segoe UI)
18
+_MONO = _MONOF # numbers / values (Consolas)
19
+
20
try:
21
import psutil
22
except ImportError:
0 commit comments