rainbow-dark: line_start uses ROYGBIV (7 colours)

R-Y-G-C-B-M was only six. Full spectrum now: red, orange (%y dark
yellow, renders brown-orange on most terminals), yellow, green,
blue, indigo (%b dark blue as the closest ANSI indigo), violet
(%M bright magenta). Stays ANSI-only so it renders reliably
regardless of 24-bit truecolor support.
This commit is contained in:
2026-04-21 09:01:20 -07:00
parent 1d4d454434
commit c5ccf351de

View File

@@ -62,8 +62,11 @@ abstracts = {
## generic ## generic
## ##
# text to insert at the beginning of each non-message line — rainbow dashes # text to insert at the beginning of each non-message line — ROYGBIV dashes
line_start = "%R-%Y-%G-%C-%B-%M-%n "; # R = bright red, O = dark yellow/brown (closest ANSI orange),
# Y = bright yellow, G = bright green, B = bright blue,
# I = dark blue (closest ANSI indigo), V = bright magenta (violet).
line_start = "%R-%y-%Y-%G-%B-%b-%M-%n ";
# timestamp styling, nothing by default # timestamp styling, nothing by default
timestamp = "$*"; timestamp = "$*";