Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/changes/10890.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Change some colors to improve readability in light-mode terminals
(#10890, @gridbugs)
6 changes: 3 additions & 3 deletions otherlibs/stdune/src/user_message.ml
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ module Print_config = struct
| Kwd -> [ `Bold; `Fg_blue ]
| Id -> [ `Bold; `Fg_yellow ]
| Prompt -> [ `Bold; `Fg_green ]
| Hint -> [ `Italic; `Fg_white ]
| Details -> [ `Dim; `Fg_white ]
| Ok -> [ `Dim; `Fg_green ]
| Hint -> [ `Italic ]
| Details -> [ `Dim ]
| Ok -> [ `Fg_green ]
| Debug -> [ `Underline; `Fg_bright_cyan ]
| Success -> [ `Bold; `Fg_green ]
| Ansi_styles l -> l
Expand Down