Skip to content

Commit

Permalink
alacritty: Change solarized bright black color to be different from b…
Browse files Browse the repository at this point in the history
  • Loading branch information
juanibiapina committed Jan 31, 2023
1 parent 132c0c4 commit 00e0605
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ draw_bold_text_with_bright_colors: false

# Colors (Solarized Dark)
colors:
# Default colors
primary:
background: '0x002b36' # base03
foreground: '0x839496' # base0
Expand All @@ -207,7 +206,11 @@ colors:

# Bright colors
bright:
black: '0x002b36' # base03
# I changed bright black not to be the same as background color, otherwise
# it doesn't show up in the terminal (:facepalm:)
# I've only ever seen this color being used by Javascript things, though.
# copied from https://github.com/jan-warchol/selenized/blob/master/terminals/alacritty/selenized-dark.yml#L16
black: '0x184956'
red: '0xcb4b16' # orange
green: '0x586e75' # base01
yellow: '0x657b83' # base00
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ colors:

# Bright colors
bright:
black: '0x002b36' # base03
# I changed bright black not to be the same as background color, otherwise
# it doesn't show up in the terminal (:facepalm:)
# I've only ever seen this color being used by Javascript things, though.
# copied from https://github.com/jan-warchol/selenized/blob/master/terminals/alacritty/selenized-dark.yml#L16
black: '0x184956'
red: '0xcb4b16' # orange
green: '0x586e75' # base01
yellow: '0x657b83' # base00
Expand Down

0 comments on commit 00e0605

Please sign in to comment.