Make all bg colours the same, add transparent tmux.

This commit is contained in:
Michael Welford 2024-08-10 15:35:17 +09:30
parent af447f2fc8
commit 8aa9bc238d
3 changed files with 40 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# vim:ft=kitty
## name: Falcon
foreground #B5B5BA
background #020222
background #020221
selection_foreground #E0E0E6
selection_background #321282
# Cursor colors
@ -16,7 +16,7 @@ url_color #BDD8FF
# The basic 16 colors
# black
color0 #000005
color8 #020222
color8 #020221
# red
color1 #FF3700
color9 #FF917A

View File

@ -1,7 +1,7 @@
# vim:ft=kitty
## name: Falcon
foreground #A1A1A9
background #020222
background #020221
selection_foreground #E0E0E6
selection_background #321282
# Cursor colors
@ -15,7 +15,7 @@ url_color #BDD8FF
# Colors for marks (marked text in the terminal)
# The basic 16 colors
# black
color0 #020222
color0 #020221
color8 #878791
# red
color1 #FF3700

View File

@ -0,0 +1,36 @@
# status
set -g status "on"
set -g status-style "bg=#020221,none,align=left"
# messages
set -g message-style "fg=#b4b4b9,bg=#020221"
set -g message-command-style "fg=#99a4bc,bg=#020221"
# panes
set -g pane-border-style "fg=#57575e,bg=#151521"
set -g pane-active-border-style "fg=#57575e,bg=#020221"
# put a line above the status
set -g pane-border-status bottom
set -g pane-border-format '─'
# selection
set -g mode-style "fg=#dfdfe5,bg=#2f0e82"
# active / inactive pane bg
set -g window-style "bg=#020221"
set -g window-active-style "bg=#020221"
# window status
setw -g window-status-style "fg=#b4b4b9,bg=black,none"
setw -g window-status-activity-style "fg=magenta,bg=#36363a,none"
setw -g window-status-separator ""
setw -g window-status-format "#[fg=#787882,bg=#020221] #I:#W "
setw -g window-status-current-format "#[fg=white,bg=#020221] #I#[fg=#787882]:#[fg=yellow]#{?window_zoomed_flag,#[fg=#c8d0e3](,}#W#{?window_zoomed_flag,#[fg=#c8d0e3]),} "
set -g status-left-style "none"
set -g status-right-style "none"
set -g status-left-length "100"
set -g status-right-length "100"
set -g status-left "#[fg=white] #S #[fg=#57575e]│ "
set -g status-right "#[fg=yellow,bg=#36363a]$USER@#h #[fg=#787882]│ #[fg=white]%d/%m/%Y %H:%M "