commitshow 0.3.16 → 0.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/colors.js +6 -1
- package/package.json +1 -1
package/dist/lib/colors.js
CHANGED
|
@@ -17,7 +17,12 @@ export const c = {
|
|
|
17
17
|
// matched the Claude Code logo too literally — CEO pulled it back to
|
|
18
18
|
// brand on 2026-05-02.)
|
|
19
19
|
pixelInk: rgb(0xF0, 0xC0, 0x40),
|
|
20
|
-
cream
|
|
20
|
+
// `cream` was originally truecolor #F8F5EE (near-white), which is
|
|
21
|
+
// invisible on light-background terminals. Use the terminal's default
|
|
22
|
+
// foreground color (no escape) so body text reads on both light and
|
|
23
|
+
// dark backgrounds. The brand cream is preserved for accents (gold ·
|
|
24
|
+
// scarlet · teal) which stay readable on both.
|
|
25
|
+
cream: (s) => s,
|
|
21
26
|
teal: rgb(0x00, 0xD4, 0xAA),
|
|
22
27
|
scarlet: rgb(0xC8, 0x10, 0x2E),
|
|
23
28
|
muted: rgb(0x6B, 0x72, 0x80),
|