diff options
-rw-r--r-- | .Xresources | 38 | ||||
-rw-r--r-- | .config/kitty/kitty.conf | 54 | ||||
-rw-r--r-- | .tmux.conf | 30 |
3 files changed, 83 insertions, 39 deletions
diff --git a/.Xresources b/.Xresources index 601d835..4607b1c 100644 --- a/.Xresources +++ b/.Xresources @@ -1,22 +1,24 @@ ! Colors -*.foreground: #e6e6f1 -*.background: #1a1b26 -*.color0: #44495e -*.color8: #3b3b4d -*.color1: #EBB9B9 -*.color9: #cc9b9d -*.color2: #B1DBA4 -*.color10: #A3CCAD -*.color3: #E6DFB8 -*.color11: #d1ba97 -*.color4: #CDDBF9 -*.color12: #B8C9EA -*.color5: #F6BBE7 -*.color13: #b294bb -*.color6: #CDDBF9 -*.color14: #95C2D1 -*.color7: #C6D0E9 -*.color15: #63718B +*background: #1a1b26 +*foreground: #c0caf5 + +*color0: #15161E +*color1: #f7768e +*color2: #9ece6a +*color3: #e0af68 +*color4: #7aa2f7 +*color5: #bb9af7 +*color6: #7dcfff +*color7: #a9b1d6 + +*color8: #414868 +*color9: #f7768e +*color10: #9ece6a +*color11: #e0af68 +*color12: #7aa2f7 +*color13: #bb9af7 +*color14: #7dcfff +*color15: #c0caf5 ! XTerm config XTerm.vt100.locale: false diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index fc0782d..03c9730 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -18,22 +18,40 @@ cursor_blink_interval 0 shell_integration no-cursor -cursor #b8dceb -foreground #e6e6f1 background #1a1b26 -color0 #44495e -color8 #3b3b4d -color1 #EBB9B9 -color9 #cc9b9d -color2 #B1DBA4 -color10 #A3CCAD -color3 #E6DFB8 -color11 #d1ba97 -color4 #CDDBF9 -color12 #B8C9EA -color5 #F6BBE7 -color13 #b294bb -color6 #CDDBF9 -color14 #95C2D1 -color7 #C6D0E9 -color15 #63718B +foreground #c0caf5 +selection_background #33467C +selection_foreground #c0caf5 +url_color #73daca +cursor #c0caf5 + +# Tabs +active_tab_background #7aa2f7 +active_tab_foreground #1f2335 +inactive_tab_background #292e42 +inactive_tab_foreground #545c7e +#tab_bar_background #15161E + +# normal +color0 #15161E +color1 #f7768e +color2 #9ece6a +color3 #e0af68 +color4 #7aa2f7 +color5 #bb9af7 +color6 #7dcfff +color7 #a9b1d6 + +# bright +color8 #414868 +color9 #f7768e +color10 #9ece6a +color11 #e0af68 +color12 #7aa2f7 +color13 #bb9af7 +color14 #7dcfff +color15 #c0caf5 + +# extended colors +color16 #ff9e64 +color17 #db4b4b @@ -66,6 +66,30 @@ bind -r K resize-pane -U 5 bind -r L resize-pane -R 5 # styling -set -g status-style "fg=#e6e6f1 bg=#1a1a24" -set -g pane-active-border-style "fg=#e6e6f1" -set -g pane-border-style "fg=#e6e6f1" +set -g mode-style "fg=#7aa2f7,bg=#3b4261" + +set -g message-style "fg=#7aa2f7,bg=#3b4261" +set -g message-command-style "fg=#7aa2f7,bg=#3b4261" + +set -g pane-border-style "fg=#3b4261" +set -g pane-active-border-style "fg=#7aa2f7" + +set -g status "on" +set -g status-justify "left" + +set -g status-style "fg=#7aa2f7,bg=#1f2335" + +set -g status-left-length "100" +set -g status-right-length "100" + +set -g status-left-style NONE +set -g status-right-style NONE + +set -g status-left "#[fg=#15161E,bg=#7aa2f7,bold] #S #[fg=#7aa2f7,bg=#1f2335,nobold,nounderscore,noitalics]" +set -g status-right "#[fg=#1f2335,bg=#1f2335,nobold,nounderscore,noitalics] #[fg=#7aa2f7,bg=#1f2335] #{prefix_highlight} #[fg=#3b4261,bg=#1f2335,nobold,nounderscore,noitalics] #[fg=#7aa2f7,bg=#3b4261] %Y-%m-%d %I:%M %p #[fg=#7aa2f7,bg=#3b4261,nobold,nounderscore,noitalics] #[fg=#15161E,bg=#7aa2f7,bold] #h " + +setw -g window-status-activity-style "underscore,fg=#a9b1d6,bg=#1f2335" +setw -g window-status-separator "" +setw -g window-status-style "NONE,fg=#a9b1d6,bg=#1f2335" +setw -g window-status-format "#[fg=#1f2335,bg=#1f2335,nobold,nounderscore,noitalics] #[default] #I #W #F #[fg=#1f2335,bg=#1f2335,nobold,nounderscore,noitalics] " +setw -g window-status-current-format "#[fg=#1f2335,bg=#3b4261,nobold,nounderscore,noitalics] #[fg=#7aa2f7,bg=#3b4261,bold] #I #W #F #[fg=#3b4261,bg=#1f2335,nobold,nounderscore,noitalics] " |