From 25ea6b53506077d6e95ed88ebd59d009ea31fb4d Mon Sep 17 00:00:00 2001 From: Antawari de la Torre Cobos Date: Sat, 6 Jun 2026 14:52:15 -0600 Subject: [PATCH] docs: fix accent-palette inventory drift, remove phantom PNG references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit install.sh ships themes/candyfactory-accent-palette-{dark,light} (into the COSMIC accent picker) but the user-facing inventory never listed them, and the docs referenced non-existent PNGs. One coherent accuracy pass — no shipped script behavior changes: - README §"What's in the box": add the two accent-palette files. - CLAUDE.md §2 file map: drop the non-existent assets/candyfactory-logo.png; list the two accent palettes under themes/ where install.sh reads them. - CLAUDE.md §6 Step 3: "three RONs and three PNGs" → "three RONs and the two accent palettes" (there are zero PNGs; install.sh copies 3 RONs + 2 palettes). - Hub HTML file-tree: add the two accent palettes; drop the phantom logo PNG. Gates stay green: shellcheck install.sh tests/*.sh clean; bash tests/test_accent_palettes.sh 14/14. install.sh untouched. Co-Authored-By: Claude Opus 4.8 (1M context) --- CLAUDE.md | 7 ++++--- Cotton Candy Parlor for COSMIC.html | 7 ++++--- README.md | 2 ++ 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 6668516..f2cbb6a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -29,9 +29,10 @@ candyfactory-cosmic/ ├── themes/ │ ├── candyfactory-bonfire-dark.ron ← COSMIC dark theme │ ├── candyfactory-parlor-light.ron ← COSMIC light theme -│ └── candyfactory-term-bonfire.ron ← cosmic-term scheme +│ ├── candyfactory-term-bonfire.ron ← cosmic-term scheme +│ ├── candyfactory-accent-palette-dark ← dark accent picker palette +│ └── candyfactory-accent-palette-light ← light accent picker palette └── assets/ - ├── candyfactory-logo.png └── parlor.css ← reference design tokens ``` @@ -194,7 +195,7 @@ chmod +x install.sh ./install.sh # for real ``` -It copies the three RONs and three PNGs to the right places. Idempotent. `--uninstall` undoes it. +It copies the three RONs and the two accent palettes to the right places. Idempotent. `--uninstall` undoes it. ### Step 4 — Apply in COSMIC Settings 1. `Settings → Desktop → Appearance` → click `Import`, browse to `themes/candyfactory-bonfire-dark.ron` (or `-parlor-light.ron`). The theme appears in the list — select it. diff --git a/Cotton Candy Parlor for COSMIC.html b/Cotton Candy Parlor for COSMIC.html index e6d058e..240b1ac 100644 --- a/Cotton Candy Parlor for COSMIC.html +++ b/Cotton Candy Parlor for COSMIC.html @@ -327,10 +327,11 @@

§ The kit on disk

├── themes/ │ ├── candyfactory-bonfire-dark.ron # COSMIC dark │ ├── candyfactory-parlor-light.ron # COSMIC light -│ └── candyfactory-term-bonfire.ron # cosmic-term scheme +│ ├── candyfactory-term-bonfire.ron # cosmic-term scheme +│ ├── candyfactory-accent-palette-dark # dark accent picker +│ └── candyfactory-accent-palette-light # light accent picker └── assets/ - ├── candyfactory-logo.png - └── parlor.css # reference tokens + └── parlor.css # reference tokens diff --git a/README.md b/README.md index 2536bef..e3fe5f1 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ based on the **CandyFactory** brand world. | `themes/candyfactory-bonfire-dark.ron` | COSMIC dark theme — ink + pink + grape | | `themes/candyfactory-parlor-light.ron` | COSMIC light theme — cream + grape + mint | | `themes/candyfactory-term-bonfire.ron` | cosmic-term color scheme — "candied dark" | +| `themes/candyfactory-accent-palette-dark` | Candy hues for the dark accent picker | +| `themes/candyfactory-accent-palette-light` | Candy hues for the light accent picker | | `install.sh` | One-shot installer (safe to re-run) | | `CLAUDE.md` | Spec sheet for regenerating with Claude Code |