aboutsummaryrefslogtreecommitdiffstats
path: root/bin/udt-palette
blob: edde7f3a6298f09c0146edf39b725f44f7013f70 (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
#!/usr/bin/env python3
# udt-palette: generate every themed config from one palette and one role map.
# Copyright (C) 2026 Danilo M. <danix@danix.xyz>
# Licensed under the GNU General Public License v2 only.
"""Render the palette into each consumer's own syntax.

Usage: udt-palette [--roles <file>] [--out <dir>]
       udt-palette --selftest

The point of this script is that a colour is written down once. palette/<scheme>
.conf holds the colours under the scheme's own names, palette/roles.conf says
what each is for, and everything else here is generated. Editing a generated
file is pointless: the next install.sh overwrites it.
"""

import re
import sys
from pathlib import Path

REPO = Path(__file__).resolve().parent.parent
PALETTE_DIR = REPO / "palette"

# The scheme selection is the user's, not the repo's, so it lives outside the
# working tree: switching scheme should not show up as a diff, and two machines
# sharing this repo can run different schemes. install.sh seeds it from
# palette/roles.conf.default on a first run and never overwrites it after.
SELECTOR = Path.home() / ".config" / "udt" / "roles.conf"
SELECTOR_SEED = PALETTE_DIR / "roles.conf.default"


def parse_conf(path):
    """Parse `key = value` lines into a dict, preserving order.

    [section] headers are read but not nested: roles are a flat namespace, and
    the sections exist to group the file for a human reader. A duplicate key is
    an error rather than a silent last-wins, because two roles quietly fighting
    is exactly the drift this file exists to prevent.
    """
    out = {}
    for lineno, raw in enumerate(path.read_text().splitlines(), 1):
        # A comment is a whole line starting with #, or a trailing "# " after
        # a value. Splitting on a bare "#" would eat every colour, since the
        # values are hex literals that start with one.
        line = raw.strip()
        if line.startswith("#"):
            continue
        line = re.split(r"\s#\s", line, maxsplit=1)[0].strip()
        if not line or line.startswith("["):
            continue
        if "=" not in line:
            raise ValueError(f"{path}:{lineno}: expected 'key = value', got {raw!r}")
        key, value = (p.strip() for p in line.split("=", 1))
        if key in out:
            raise ValueError(f"{path}:{lineno}: duplicate key {key!r}")
        out[key] = value
    return out


def resolve(roles, palette, roles_path):
    """Turn every role into (r, g, b, alpha). Unknown colour names are fatal.

    A role names a palette colour, optionally with an alpha percentage:
    `text/75`. Failing here is the whole safety story: a typo or a name the new
    scheme does not carry stops the build, rather than emitting a config with a
    black hole where a colour should be.
    """
    resolved = {}
    for role, spec in roles.items():
        if role in ("scheme", "snap"):
            continue
        # `name/75` is 75% alpha; `name*50` is the colour at 50% brightness.
        # shade exists because GTK's shade() has no palette name to point at:
        # half-brightness crust is darker than the darkest colour a scheme
        # ships, so it can only be computed.
        rest, _, alpha_s = spec.partition("/")
        name, _, shade_s = rest.partition("*")
        name = name.strip()
        if name not in palette:
            available = ", ".join(sorted(palette))
            raise ValueError(
                f"{roles_path}: role {role!r} wants colour {name!r}, which the "
                f"{roles['scheme']} palette does not define.\nAvailable: {available}")
        alpha = 100
        if alpha_s:
            alpha = int(alpha_s.strip())
            if not 0 <= alpha <= 100:
                raise ValueError(f"{roles_path}: role {role!r} alpha {alpha} out of 0-100")
        hexval = palette[name]
        r, g, b = (int(hexval[i:i + 2], 16) for i in (1, 3, 5))
        if shade_s:
            factor = int(shade_s.strip()) / 100
            if not 0 <= factor <= 2:
                raise ValueError(f"{roles_path}: role {role!r} shade out of 0-200")
            r, g, b = (min(255, round(c * factor)) for c in (r, g, b))
        resolved[role] = (r, g, b, alpha)
    return resolved


def hex6(c):
    r, g, b, _ = c
    return f"#{r:02x}{g:02x}{b:02x}"


def hex8(c):
    r, g, b, a = c
    return f"#{r:02x}{g:02x}{b:02x}{round(a * 255 / 100):02x}"


def rgba(c):
    r, g, b, a = c
    return f"rgb({r},{g},{b})" if a == 100 else f"rgba({r},{g},{b},{a / 100:.2f})"


BANNER = "Generated by udt-palette from palette/{scheme}.conf. Do not edit."


# The names the rofi themes reference. They are Catppuccin spellings because
# that is what the themes were written against, but each is filled from a role,
# so a scheme that names nothing "base" still produces a parseable palette.
ROFI_NAMES = [
    ("base", "bg"), ("mantle", "bg_alt"), ("crust", "bg_deep"),
    ("surface0", "surface"), ("surface1", "surface_alt"),
    ("surface2", "surface_high"),
    ("text", "fg"), ("subtext0", "fg_dim"), ("subtext1", "fg_bright"),
    ("overlay0", "fg_faint"), ("overlay1", "mid_low"), ("overlay2", "mid_high"),
    ("red", "critical"), ("green", "success"), ("yellow", "warning"),
    ("teal", "info"), ("blue", "border_active"), ("lavender", "accent"),
]


def gen_rofi(res, scheme, palette):
    """rofi: the structural palette, under the names the themes reference.

    Every value comes from a role, not from the scheme's own colour names: the
    themes ask for @base and @text, and Tokyo Night calls those bg and fg, so
    emitting palette names outright left the themes referencing colours that
    did not exist and rofi refusing to parse the file.
    """
    rows = "\n".join(f"    {name + ':':11}{hex8(res[role])};"
                      for name, role in ROFI_NAMES)
    return (
        f"/*\n * {BANNER.format(scheme=scheme)}\n *\n"
        " * Structural colors only. The accent lives in accent.rasi.\n"
        " * Names are Catppuccin's; values come from the scheme's roles.\n */\n\n"
        f"* {{\n{rows}\n}}\n"
    )


def gen_waybar(res, scheme, palette):
    """waybar: one file holding the palette and the role layer.

    Both halves together because style.css imports a single themes/<scheme>.css,
    and the stylesheets reference names from each: @lavender and @surface1 from
    the palette, @cpu and @hover-bg from the roles.

    Role names keep their existing hyphenated spelling (main-bg, not main_bg):
    the stylesheets reference them and are not generated.
    """
    palette_rows = "\n".join(f"@define-color {k:<12}{v};"
                              for k, v in sorted(palette.items()))

    def emit(role, css_name=None):
        c = res[role]
        return f"@define-color {(css_name or role.replace('_', '-')):<12}{rgba(c)};"

    ui = ["main_br", "main_bg", "main_fg", "hover_bg", "hover_fg", "outline"]
    modules = ["workspaces", "temperature", "memory", "cpu", "time", "date",
               "tray", "volume", "backlight", "battery"]
    states = ["warning", "critical", "charging"]

    return "\n".join([
        f"/* {BANNER.format(scheme=scheme)} */",
        "",
        palette_rows,
        "",
        "/* br - border, bg - background, fg - foreground */",
        "",
        "/* main colors */",
        f"@define-color accent      {rgba(res['accent'])};",
        *(emit(r) for r in ui),
        "",
        "/* module colors */",
        *(emit(r) for r in modules),
        "",
        "/* state colors */",
        *(emit(r) for r in states),
        "",
    ])


def gen_kitty(res, scheme, palette):
    """kitty: the 16 ANSI slots plus chrome.

    kitty has no include-with-override, so this is the whole colour section of
    the theme file rather than a fragment.
    """
    ansi = ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "white"]
    lines = [f"# {BANNER.format(scheme=scheme)}", ""]
    for key, role in [("foreground", "fg"), ("background", "bg"),
                      ("selection_foreground", "selection_fg"),
                      ("selection_background", "selection_bg"),
                      ("cursor", "cursor"), ("cursor_text_color", "bg"),
                      ("url_color", "url"),
                      ("active_border_color", "border_active"),
                      ("inactive_border_color", "border_inactive"),
                      ("active_tab_foreground", "tab_active_fg"),
                      ("active_tab_background", "tab_active_bg"),
                      ("inactive_tab_foreground", "tab_inactive_fg"),
                      ("inactive_tab_background", "tab_inactive_bg"),
                      ("tab_bar_background", "tab_bar_bg"),
                      ("scrollbar_handle_color", "scrollbar_handle"),
                      ("scrollbar_track_color", "scrollbar_track"),
                      ("bell_border_color", "bell_border"),
                      ("mark1_foreground", "bg"), ("mark1_background", "mark1"),
                      ("mark2_foreground", "bg"), ("mark2_background", "mark2"),
                      ("mark3_foreground", "bg"), ("mark3_background", "mark3")]:
        lines.append(f"{key:<24}{hex6(res[role])}")
    lines.append("")
    for i, name in enumerate(ansi):
        lines.append(f"color{i:<3}{' ' * 16}{hex6(res[name])}")
    for i, name in enumerate(ansi):
        lines.append(f"color{i + 8:<3}{' ' * 16}{hex6(res['bright_' + name])}")
    return "\n".join(lines) + "\n"


KVANTUM_ROLES = ["bg", "bg_alt", "surface", "surface_alt", "surface_high",
                 "fg", "fg_dim", "fg_faint", "mid_high", "accent",
                 "accent_dim", "accent_bright", "highlight", "critical"]


def gen_kvantum(res, scheme, palette, template):
    """Kvantum: substitute the palette into the widget theme.

    A Kvantum theme is a .kvconfig of colours and a .svg of widget artwork with
    colours baked into the paths. Only the palette colours are placeholders;
    the neutral greys in the SVG are shading and shadow, not theme colour, so
    they are left exactly as upstream drew them.

    Derived from the catppuccin-macchiato-lavender theme, which is what this
    desktop was already running by hand.
    """
    out = template
    for role in KVANTUM_ROLES:
        out = out.replace(f"@{role.upper()}@", hex6(res[role]))
    return out


def gen_homepage(res, scheme, palette):
    """gethomepage: a custom.css overriding its ten-step colour ramp.

    homepage themes itself with --color-50 (lightest) to --color-900 (darkest)
    as space-separated RGB triples, so the ramp is filled from the text scale
    at the light end and the surface scale at the dark end.

    The card backgrounds do NOT come from that ramp: in dark mode the service
    and bookmark cards carry `dark:bg-white/5`, a literal white, so redefining
    the variables alone leaves them a neutral grey. Upstream hits the same wall
    and hardcodes those selectors for .theme-white; this does the same for
    .theme-gray, which is the class settings.yaml's `color: gray` puts on the
    page. Change that setting and this file stops applying.
    """
    def triple(role):
        r, g, b, _ = res[role]
        return f"{r} {g} {b}"

    ramp = [("50", "fg"), ("100", "fg_bright"), ("200", "fg_dim"),
            ("300", "mid_high"), ("400", "mid_low"), ("500", "fg_faint"),
            ("600", "surface_high"), ("700", "surface_alt"), ("800", "surface"),
            ("900", "bg")]
    rows = "\n".join(f"  --color-{n}: {triple(role)};" for n, role in ramp)

    sr, sg, sb, _ = res["surface"]
    ar, ag, ab, _ = res["surface_alt"]
    br, bg_, bb, _ = res["bg"]
    accent = hex6(res["accent"])

    return f"""/* {BANNER.format(scheme=scheme)}
 *
 * Catppuccin-independent: every colour here comes from palette/roles-{scheme}
 * .conf, so this file follows the desktop rather than restating a palette.
 */

.theme-gray {{
{rows}

  --color-logo-start: {triple('accent')};
  --color-logo-stop:  {triple('info')};
}}

/* Card backgrounds, which the ramp does not reach. See the note above. */
.theme-gray .bg-theme-100\\/20:not([class^="backdrop-blur"]),
.theme-gray .dark\\:bg-white\\/5:not([class^="backdrop-blur"]) {{
  background-color: rgb({sr} {sg} {sb} / 55%);
}}

.theme-gray .bg-theme-100\\/20:hover:not([class^="backdrop-blur"]),
.theme-gray .dark\\:bg-white\\/5:hover:not([class^="backdrop-blur"]) {{
  background-color: rgb({ar} {ag} {ab} / 70%);
}}

.theme-gray .bg-theme-900\\/50:not([class^="backdrop-blur"]) {{
  background-color: rgb({br} {bg_} {bb} / 50%);
}}

/* Accent on secondary labels. Fixed, not wallpaper-tracking: this runs on a
 * server with no wallpaper to read. */
.theme-gray .text-theme-500 {{
  color: {accent};
}}
"""


def gen_dunst(res, scheme, palette, template):
    """dunst: substitute colours into the shipped template.

    Kept as a template rather than fully generated: dunstrc is mostly geometry
    and behaviour that has nothing to do with colour. @ACCENT@ is left alone,
    because udt-accent substitutes it per wallpaper after pywal renders it.
    """
    out = template.replace("@SCHEME@", scheme)
    for role in ("bg", "bg_alt", "fg", "fg_dim", "border", "critical"):
        out = out.replace(f"@{role.upper()}@", hex6(res[role]))
    return out


def gen_conky(res, scheme, palette, template):
    """conky: substitute into the shipped template.

    conky.text is laid out with absolute ${goto} offsets tuned to label widths,
    so it is never regenerated, only its colour block is substituted.
    """
    out = template.replace("@SCHEME@", scheme)
    for role in ("heading", "label", "rule", "value", "highlight", "ok",
                 "body", "body_outline", "body_shade"):
        out = out.replace(f"@{role.upper()}@", hex6(res[role]))
    return out


def gen_accent_py(res, scheme, palette, snap_names):
    """The accent table and Macchiato dict udt-accent carries for Firefox.

    Written as a Python fragment that udt-accent imports, so the accent snapping
    and the pywalfox palette both follow the scheme instead of hardcoding one.
    """
    # The snap candidates are declared per scheme, not derived: which hues make
    # good accents is a judgement about the palette (drop near-neutrals, drop
    # near-duplicate hues) that the colour values alone do not carry.
    candidates = {n: palette[n] for n in snap_names}
    rows = "\n".join(f'    {n!r}: {v!r},' for n, v in candidates.items())

    ansi = ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "white"]
    normal = ", ".join(f'"{hex6(res[n])}"' for n in ansi)
    bright = ", ".join(f'"{hex6(res["bright_" + n])}"' for n in ansi)

    return (
        f"# {BANNER.format(scheme=scheme)}\n"
        '"""Generated colour tables. See palette/roles.conf."""\n\n'
        f"SCHEME = {scheme!r}\n\n"
        "# The candidate accents udt-accent snaps a wallpaper to.\n"
        f"ACCENTS = {{\n{rows}\n}}\n\n"
        f"FALLBACK = {accent_name(res, palette, candidates)!r}\n\n"
        "# Firefox, via pywalfox, which reads colors.json and nothing else.\n"
        "PALETTE = {\n"
        f'    "background": "{hex6(res["bg"])}",\n'
        f'    "foreground": "{hex6(res["fg"])}",\n'
        f'    "cursor": "{hex6(res["cursor"])}",\n'
        f"    \"colors\": [{normal},\n"
        f"               {bright}],\n"
        "}\n"
    )


def accent_name(res, palette, candidates):
    """Which candidate udt-accent falls back to when a wallpaper is too grey.

    The accent role's own colour, so the fallback matches what every consumer
    that does not track the wallpaper is already sitting on.
    """
    target = hex6(res["accent"])
    for name, hexval in candidates.items():
        if hexval == target:
            return name
    return next(iter(candidates))


def schemes():
    """Every scheme that ships both a palette and a role map."""
    return sorted(p.stem for p in PALETTE_DIR.glob("*.conf")
                  if p.stem != "roles" and not p.stem.startswith("roles-"))


def load(selector_path, scheme=None):
    """Read the selected scheme's palette and role map.

    The selector names a scheme; the scheme names two files. Keeping the role
    map per-scheme is what lets a palette use its own colour names: Nord has no
    `base` and Dracula no `surface0`, so one shared map could not satisfy both.
    """
    if scheme is None:
        scheme = parse_conf(selector_path).get("scheme")
    if not scheme:
        raise ValueError(f"{selector_path}: no 'scheme' line")

    palette_path = PALETTE_DIR / f"{scheme}.conf"
    roles_path = PALETTE_DIR / f"roles-{scheme}.conf"
    for needed in (palette_path, roles_path):
        if not needed.exists():
            raise ValueError(
                f"scheme {scheme!r} is missing {needed.name}. "
                f"Available: {', '.join(schemes())}")

    roles = parse_conf(roles_path)
    palette = parse_conf(palette_path)
    for name, value in palette.items():
        if not re.fullmatch(r"#[0-9a-fA-F]{6}", value):
            raise ValueError(f"{palette_path}: {name} = {value!r} is not #rrggbb")
    snap_names = roles.get("snap", "").split()
    if not snap_names:
        raise ValueError(f"{roles_path}: no [accents] snap list")
    for name in snap_names:
        if name not in palette:
            raise ValueError(
                f"{roles_path}: snap candidate {name!r} is not in the {scheme} palette")

    roles["scheme"] = scheme
    return scheme, palette, resolve(roles, palette, roles_path), snap_names


# What gets written where. Templates are read from the repo, everything else is
# generated whole.
TARGETS = [
    ("rofi/udt/palette.rasi", gen_rofi, None),
    ("templates/waybar/theme.css", gen_waybar, None),
    ("templates/terminal/kitty-theme.conf", gen_kitty, None),
    ("templates/dunstrc", gen_dunst, "templates/dunstrc.in"),
    ("templates/conky.conf", gen_conky, "templates/conky.conf.in"),
    ("bin/udt_colors.py", gen_accent_py, None),
    ("templates/homepage/custom.css", gen_homepage, None),
    ("templates/kvantum/theme.kvconfig", gen_kvantum, "templates/kvantum/theme.kvconfig.in"),
    ("templates/kvantum/theme.svg", gen_kvantum, "templates/kvantum/theme.svg.in"),
]


def generate(roles_path, out_dir, scheme=None):
    scheme, palette, res, snap_names = load(roles_path, scheme=scheme)
    written = []
    for target, fn, template in TARGETS:
        dest = out_dir / target
        if template:
            src = REPO / template
            if not src.exists():
                raise ValueError(f"missing template {src}")
            content = fn(res, scheme, palette, src.read_text())
        elif fn is gen_accent_py:
            content = fn(res, scheme, palette, snap_names)
        else:
            content = fn(res, scheme, palette)
        dest.parent.mkdir(parents=True, exist_ok=True)
        dest.write_text(content)
        written.append(target)
    return scheme, written


def check_rofi_parses(scheme):
    """Render `scheme` to a temp dir and have rofi parse every theme.

    The role checks below prove a scheme resolves, not that what it emits is
    valid. A palette missing a name the themes reference parses as a broken
    theme and every launcher stops opening, which is how exactly that bug
    shipped once. rofi needs no display for -dump-theme.
    """
    import shutil
    import subprocess
    import tempfile

    if not shutil.which("rofi"):
        return None

    with tempfile.TemporaryDirectory() as tmp:
        out = Path(tmp)
        generate(None, out, scheme=scheme)
        udt = out / "rofi" / "udt"
        # The themes @import siblings, so they need the whole directory.
        for extra in (REPO / "rofi" / "udt").glob("*.rasi"):
            if not (udt / extra.name).exists():
                shutil.copy(extra, udt / extra.name)
        # accent.rasi is generated per wallpaper; seed it so themes resolve.
        (udt / "accent.rasi").write_text("* { accent: #ffffffff; }\n")

        for theme in sorted(udt.glob("*.rasi")):
            if theme.name in ("palette.rasi", "accent.rasi", "common.rasi"):
                continue
            proc = subprocess.run(
                ["rofi", "-no-config", "-theme", str(theme), "-dump-theme"],
                capture_output=True, text=True)
            if "Failed to parse" in proc.stderr:
                raise AssertionError(
                    f"{scheme}: rofi cannot parse {theme.name}\n{proc.stderr.strip()}")
    return True


def selftest():
    # Every shipped scheme must satisfy every role, or switching to it breaks
    # at install time. load() raises on any role the palette cannot supply.
    names = schemes()
    assert names, "no palettes found"

    seen = {}
    for scheme in names:
        _, _, res, snap = load(None, scheme=scheme)
        assert res["bg"] != res["fg"], f"{scheme}: bg and fg are the same colour"
        assert len(snap) >= 5, f"{scheme}: only {len(snap)} snap candidates"
        seen[scheme] = set(res)
        parsed = check_rofi_parses(scheme)
        note = "" if parsed else "  (rofi not installed, parse unchecked)"
        print(f"  {scheme}: {len(res)} roles, {len(snap)} accents{note}")

    # Every scheme must define the SAME roles: a generator asks for a role by
    # name, so one scheme missing it would fail only once that scheme was
    # selected, which is exactly the late failure this check exists to prevent.
    reference = seen[names[0]]
    for scheme, roles in seen.items():
        missing = reference - roles
        extra = roles - reference
        assert not missing, f"{scheme} is missing roles: {sorted(missing)}"
        assert not extra, f"{scheme} has roles no other scheme has: {sorted(extra)}"

    # Every name the rofi themes reference must be emitted, or rofi refuses to
    # parse the theme and every launcher on the desktop stops opening. This is
    # a real regression that shipped: gen_rofi used to emit the scheme's own
    # colour names, which only happened to match under Catppuccin.
    theme_dir = REPO / "rofi" / "udt"
    used = set()
    for theme in theme_dir.glob("*.rasi"):
        if theme.name in ("palette.rasi", "accent.rasi"):
            continue
        # Only @name in a colour-property value: @import is a directive and
        # @radius a dimension, neither of which this file defines.
        # Only @name in a colour-property value. @import is a directive and
        # border-radius a dimension, so neither is a colour this file owes.
        used |= set(re.findall(
            r"(?!border-radius)(?:[\w-]*color|background[\w-]*|border):\s*@(\w+)",
            theme.read_text()))
    emitted = {name for name, _ in ROFI_NAMES} | {"accent"}
    missing = used - emitted
    assert not missing, f"rofi themes reference undefined colours: {sorted(missing)}"

    # Alpha survives the round trip into each syntax.
    assert hex8((202, 211, 245, 75)) == "#cad3f5bf", hex8((202, 211, 245, 75))
    assert hex8((202, 211, 245, 100)) == "#cad3f5ff"
    assert rgba((202, 211, 245, 100)) == "rgb(202,211,245)"
    assert rgba((202, 211, 245, 75)) == "rgba(202,211,245,0.75)"

    # A role naming a colour the palette lacks must fail, not emit a hole.
    try:
        resolve({"scheme": "x", "bad": "nosuchcolour"}, {"base": "#000000"}, "probe")
    except ValueError as exc:
        assert "nosuchcolour" in str(exc)
    else:
        raise AssertionError("unknown colour did not raise")

    print("selftest OK")


def main(argv):
    if "--selftest" in argv:
        selftest()
        return 0

    roles_path = SELECTOR if SELECTOR.exists() else SELECTOR_SEED
    out_dir = REPO
    if "--roles" in argv:
        roles_path = Path(argv[argv.index("--roles") + 1]).expanduser()
    if "--out" in argv:
        out_dir = Path(argv[argv.index("--out") + 1]).expanduser()

    try:
        scheme, written = generate(roles_path, out_dir)
    except ValueError as exc:
        print(f"udt-palette: {exc}", file=sys.stderr)
        return 1

    print(f"{scheme}: {len(written)} files")
    for w in written:
        print(f"  {w}")
    return 0


if __name__ == "__main__":
    sys.exit(main(sys.argv[1:]))