Skip to content

Commit ee4e0c1

Browse files
committed
change colors to blue-magenta instead of red-green combo
Since red-green color blindness is common, use a blue-magenta combo instead. Also, make the toggled option bold and change the color of first line of the menu to green to reduce the amount of blue in the menu.
1 parent 6471471 commit ee4e0c1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/ui.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ end
4848
const debugcolors = (:nothing, :light_black, :yellow)
4949
function usage(@nospecialize(view_cmd), optimize, iswarn, hide_type_stable, debuginfo, remarks, inline_cost, type_annotations, highlight)
5050
colorize(iotmp, active_option::Bool, c::Char) = stringify(iotmp) do io
51-
active_option ? printstyled(io, c; color=:green) : printstyled(io, c; color=:red)
51+
active_option ? printstyled(io, c; bold=true, color=:blue) : printstyled(io, c; color=:magenta)
5252
end
5353

5454
colorize(iotmp, s::AbstractString; color::Symbol = :cyan) = stringify(iotmp) do io
@@ -59,7 +59,7 @@ function usage(@nospecialize(view_cmd), optimize, iswarn, hide_type_stable, debu
5959
ioctx = IOContext(io, :color=>true)
6060

6161
println(ioctx,
62-
colorize(iotmp, "Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color=:blue))
62+
colorize(iotmp, "Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color=:green))
6363
println(ioctx,
6464
colorize(iotmp, "Toggles"), ": [",
6565
colorize(iotmp, optimize, 'o'), "]ptimize, [",

test/terminal.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const keydict = Dict(:up => "\e[A",
3030
@test Cthulhu.default_terminal() isa REPL.Terminals.TTYTerminal
3131
end
3232
colorize(active_option::Bool, c::Char) = Cthulhu.stringify() do io
33-
active_option ? printstyled(io, c; color=:green) : printstyled(io, c; color=:red)
33+
active_option ? printstyled(io, c; bold=true, color=:blue) : printstyled(io, c; color=:magenta)
3434
end
3535

3636
colorize(s::AbstractString; color::Symbol = :cyan) = Cthulhu.stringify() do io
@@ -69,14 +69,14 @@ const keydict = Dict(:up => "\e[A",
6969
@test occursin('[' * colorize(true, 'o') * "]ptimize", lines)
7070
@test occursin('[' * colorize(true, 'T') * "]yped", lines)
7171

72-
@test occursin('\n' * colorize("Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color = :blue), lines) # beginning of the line
72+
@test occursin('\n' * colorize("Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color = :green), lines) # beginning of the line
7373
@test occursin('', lines)
7474
write(in, 'o') # switch to unoptimized
7575
lines = cread(out)
7676
@test occursin("invoke simplef(::Float32,::Int32)::Float32", lines)
7777
@test occursin(r"\(z = a \* a\)\u001B\[\d\dm::Float32\u001B\[39m", lines)
7878
@test occursin('[' * colorize(false, 'o') * "]ptimize", lines)
79-
@test occursin('\n' * colorize("Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color = :blue), lines) # beginning of the line
79+
@test occursin('\n' * colorize("Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color = :green), lines) # beginning of the line
8080
@test occursin("• %1 = *(::Float32,::Float32)::Float32", lines)
8181
# Call selection
8282
write(in, keydict[:down])
@@ -108,7 +108,7 @@ const keydict = Dict(:up => "\e[A",
108108
@test occursin(r"z.*::Float32", lines)
109109
@test occursin(r"\nBody.*Float32", lines)
110110
@test occursin('[' * colorize(true, 'w') * "]arn", lines)
111-
@test occursin('\n' * colorize("Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color = :blue), lines) # beginning of the line
111+
@test occursin('\n' * colorize("Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark."; color = :green), lines) # beginning of the line
112112
@test occursin("• %1 = *(::Float32,::Float32)::Float32", lines)
113113
# Source view
114114
write(in, 'S')

0 commit comments

Comments
 (0)