commit 9312e7a2a5b1b102c8713336eded822d0d001a2e from: Omar Polo date: Thu Feb 15 17:47:13 2024 UTC change default patch/diff colours to magenta and cyan red/green is not a great choice for diff colours: it's a bad combo for (some) colour-blind people, and they may also carry an implicit meaning of 'good' and 'bad', or 'ok' and 'not ok'. Instead, just like tog and gotwebd, use a combo of purple and cyan, which was choosen by a colour-blind user (I'm told). commit - f0e62b859a56026db832e80814a11b27f6a7332f commit + 9312e7a2a5b1b102c8713336eded822d0d001a2e blob - 13ef23dd6740f1dd87531e4f5ab0be60447b914a blob + da3e36fe4075eeb4824e2df417d598b8b02b1e3f --- defaults.c +++ defaults.c @@ -520,8 +520,8 @@ config_init(void) } line_faces[LINE_LINK].fg = COLOR_BLUE; - line_faces[LINE_PATCH_ADD].fg = COLOR_GREEN; - line_faces[LINE_PATCH_DEL].fg = COLOR_RED; + line_faces[LINE_PATCH_ADD].fg = COLOR_CYAN; + line_faces[LINE_PATCH_DEL].fg = COLOR_MAGENTA; load_default_keys(); }