Skip to content

Commit 6e91f75

Browse files
committed
Nicer whitespace alignment
1 parent 55ad912 commit 6e91f75

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/legacy.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ A mapping from old named colours to the new names, specifically from `light_*`
5656
to `bright_*`.
5757
"""
5858
const RENAMED_COLORS = Dict{Symbol, Symbol}(
59-
:light_black => :bright_black,
60-
:light_red => :bright_red,
61-
:light_green => :bright_green,
62-
:light_yellow => :bright_yellow,
63-
:light_blue => :bright_blue,
59+
:light_black => :bright_black,
60+
:light_red => :bright_red,
61+
:light_green => :bright_green,
62+
:light_yellow => :bright_yellow,
63+
:light_blue => :bright_blue,
6464
:light_magenta => :bright_magenta,
65-
:light_cyan => :bright_cyan,
66-
:light_white => :bright_white)
65+
:light_cyan => :bright_cyan,
66+
:light_white => :bright_white)
6767

6868
legacy_color(color::Symbol) = SimpleColor(get(RENAMED_COLORS, color, color))
6969
legacy_color(color256::Int) = get(ANSI_256_COLORS, color256+1, nothing)

0 commit comments

Comments
 (0)