Updated colors for gruvbox theme
This commit is contained in:
parent
a98d8d50f3
commit
0265d2e1cd
39
.tmux.conf
39
.tmux.conf
@ -113,22 +113,23 @@ bind s choose-tree -sZ -O name
|
||||
# This tmux statusbar config was created by tmuxline.vim
|
||||
# # on Sun, 20 Oct 2019
|
||||
#
|
||||
set -g status-justify "left"
|
||||
set -g status "on"
|
||||
set -g status-left-style "none"
|
||||
set -g message-command-style "fg=colour231,bg=colour31"
|
||||
set -g status-right-style "none"
|
||||
set -g pane-active-border-style "fg=colour254"
|
||||
set -g status-style "none,bg=colour234"
|
||||
set -g message-style "fg=colour231,bg=colour31"
|
||||
set -g pane-border-style "fg=colour240"
|
||||
set -g status-right-length "100"
|
||||
set -g status-left-length "100"
|
||||
setw -g window-status-activity-style "none"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "none,fg=colour250,bg=colour234"
|
||||
set -g status-left "#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "$wg_is_keys_off #[fg=colour236,bg=colour234,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour236] %Y-%m-%d %H:%M #[fg=colour252,bg=colour236,nobold,nounderscore,noitalics]#[fg=colour235,bg=colour252] #h "
|
||||
setw -g window-status-format "#[fg=colour244,bg=colour234] #I #[fg=colour250,bg=colour234] #W "
|
||||
setw -g window-status-current-format "#[fg=colour234,bg=colour31,nobold,nounderscore,noitalics]#[fg=colour117,bg=colour31] #I #[fg=colour231,bg=colour31,bold] #W #[fg=colour31,bg=colour234,nobold,nounderscore,noitalics]"
|
||||
|
||||
source-file ~/.tmux_colors.conf
|
||||
#set -g status-justify "left"
|
||||
#set -g status "on"
|
||||
#set -g status-left-style "none"
|
||||
#set -g message-command-style "fg=colour231,bg=colour31"
|
||||
#set -g status-right-style "none"
|
||||
#set -g pane-active-border-style "fg=colour254"
|
||||
#set -g status-style "none,bg=colour234"
|
||||
#set -g message-style "fg=colour231,bg=colour31"
|
||||
#set -g pane-border-style "fg=colour240"
|
||||
#set -g status-right-length "100"
|
||||
#set -g status-left-length "100"
|
||||
#setw -g window-status-activity-style "none"
|
||||
#setw -g window-status-separator ""
|
||||
#setw -g window-status-style "none,fg=colour250,bg=colour234"
|
||||
#set -g status-left "#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold,nounderscore,noitalics]"
|
||||
#set -g status-right "$wg_is_keys_off #[fg=colour236,bg=colour234,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour236] %Y-%m-%d %H:%M #[fg=colour252,bg=colour236,nobold,nounderscore,noitalics]#[fg=colour235,bg=colour252] #h "
|
||||
#setw -g window-status-format "#[fg=colour244,bg=colour234] #I #[fg=colour250,bg=colour234] #W "
|
||||
#setw -g window-status-current-format "#[fg=colour234,bg=colour31,nobold,nounderscore,noitalics]#[fg=colour117,bg=colour31] #I #[fg=colour231,bg=colour31,bold] #W #[fg=colour31,bg=colour234,nobold,nounderscore,noitalics]"
|
||||
#
|
||||
|
123
alacritty.yml
123
alacritty.yml
@ -172,39 +172,99 @@ font:
|
||||
draw_bold_text_with_bright_colors: true
|
||||
|
||||
# Colors (Solarized Dark)
|
||||
#colors:
|
||||
# # Default colors
|
||||
# primary:
|
||||
# background: '0x002b36' # base03
|
||||
# foreground: '0x839496' # base0
|
||||
#
|
||||
# # Cursor colors
|
||||
# cursor:
|
||||
# text: '0x002b36' # base03
|
||||
# cursor: '0x839496' # base0
|
||||
#
|
||||
# # Normal colors
|
||||
# normal:
|
||||
# black: '0x073642' # base02
|
||||
# red: '0xdc322f' # red
|
||||
# green: '0x859900' # green
|
||||
# yellow: '0xb58900' # yellow
|
||||
# blue: '0x268bd2' # blue
|
||||
# magenta: '0xd33682' # magenta
|
||||
# cyan: '0x2aa198' # cyan
|
||||
# white: '0xeee8d5' # base2
|
||||
#
|
||||
# # Bright colors
|
||||
# bright:
|
||||
# black: '0x002b36' # base03
|
||||
# red: '0xcb4b16' # orange
|
||||
# green: '0x586e75' # base01
|
||||
# yellow: '0x657b83' # base00
|
||||
# blue: '0x839496' # base0
|
||||
# magenta: '0x6c71c4' # violet
|
||||
# cyan: '0x93a1a1' # base1
|
||||
# white: '0xfdf6e3' # base3
|
||||
|
||||
|
||||
# Colors (Gruvbox dark)
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x002b36' # base03
|
||||
foreground: '0x839496' # base0
|
||||
|
||||
# Cursor colors
|
||||
# hard contrast background - '#1d2021'
|
||||
background: &gruvbox_dark_bg '#282828'
|
||||
# soft contrast background - '#32302f'
|
||||
foreground: '#ffd7af'
|
||||
bright_foreground: '#ebdbb2'
|
||||
dim_foreground: '#a89984'
|
||||
cursor:
|
||||
text: '0x002b36' # base03
|
||||
cursor: '0x839496' # base0
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x073642' # base02
|
||||
red: '0xdc322f' # red
|
||||
green: '0x859900' # green
|
||||
yellow: '0xb58900' # yellow
|
||||
blue: '0x268bd2' # blue
|
||||
magenta: '0xd33682' # magenta
|
||||
cyan: '0x2aa198' # cyan
|
||||
white: '0xeee8d5' # base2
|
||||
|
||||
# Bright colors
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
# search:
|
||||
# matches:
|
||||
# foreground: '#000000'
|
||||
# background: '#ffffff'
|
||||
# focused_match:
|
||||
# foreground: CellBackground
|
||||
# background: CellForeground
|
||||
# bar:
|
||||
# background: ''
|
||||
# foreground: ''
|
||||
# line_indicator:
|
||||
# foreground: None
|
||||
# background: None
|
||||
selection:
|
||||
text: CellBackground
|
||||
background: CellForeground
|
||||
bright:
|
||||
black: '0x002b36' # base03
|
||||
red: '0xcb4b16' # orange
|
||||
green: '0x586e75' # base01
|
||||
yellow: '0x657b83' # base00
|
||||
blue: '0x839496' # base0
|
||||
magenta: '0x6c71c4' # violet
|
||||
cyan: '0x93a1a1' # base1
|
||||
white: '0xfdf6e3' # base3
|
||||
|
||||
black: '#928374'
|
||||
red: '#fb4934'
|
||||
green: '#b8bb26'
|
||||
yellow: '#fabd2f'
|
||||
blue: '#83a598'
|
||||
magenta: '#d3869b'
|
||||
cyan: '#8ec07c'
|
||||
white: '#ebdbb2'
|
||||
normal:
|
||||
black: *gruvbox_dark_bg
|
||||
red: '#cc241d'
|
||||
green: '#98971a'
|
||||
yellow: '#d79921'
|
||||
blue: '#458588'
|
||||
magenta: '#b16286'
|
||||
cyan: '#689d6a'
|
||||
white: '#a89984'
|
||||
dim:
|
||||
black: '#32302f'
|
||||
red: '#9d0006'
|
||||
green: '#79740e'
|
||||
yellow: '#b57614'
|
||||
blue: '#076678'
|
||||
magenta: '#8f3f71'
|
||||
cyan: '#427b58'
|
||||
white: '#928374'
|
||||
# indexed_colors: []
|
||||
# Colors (Tomorrow Night Bright)
|
||||
#colors:
|
||||
# Default colors
|
||||
@ -382,7 +442,10 @@ cursor:
|
||||
# - ▇ Block
|
||||
# - _ Underline
|
||||
# - | Beam
|
||||
style: Block
|
||||
style:
|
||||
shape: Block
|
||||
blinking: Always
|
||||
blink_interval: 500
|
||||
|
||||
# If this is `true`, the cursor will be rendered as a hollow box when the
|
||||
# window is not focused.
|
||||
|
Loading…
Reference in New Issue
Block a user