Make lightbg lighter

The three-digit color codes in xtermcontrol work differently than in
CSS. #EEE is equivalent to #E0E0E0, not #EEEEEE.
This commit is contained in:
Peter J. Holzer 2020-03-26 12:09:42 +01:00
parent 74b669b47a
commit c20b8fce3c
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -28,7 +28,7 @@ then
alias ack=$ack
fi
alias darkbg='xtermcontrol --bg "#000" --fg "#FFF" --highlight="#00F"; export BG=dark'
alias lightbg='xtermcontrol --bg "#EEE" --fg "#000" --highlight="#0FF"; export BG=light'
alias lightbg='xtermcontrol --bg "#F0F0F0" --fg "#000" --highlight="#0FF"; export BG=light'
alias defaultbg='. ~/.zxtermcolors'
alias ag='ag --color-path "34;47"'