diff options
Diffstat (limited to '.tmux/themes/cyberpunk.theme')
-rwxr-xr-x | .tmux/themes/cyberpunk.theme | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.tmux/themes/cyberpunk.theme b/.tmux/themes/cyberpunk.theme new file mode 100755 index 0000000..2f1c322 --- /dev/null +++ b/.tmux/themes/cyberpunk.theme @@ -0,0 +1,36 @@ +# Cyberpunk neon style + +# Background and foreground for status bar +# set -g status-bg "#0f0f1a" # Very dark blue-black background +set -g status-bg "#000000" # Very dark blue-black background +set -g status-fg "#ff6fff" # Neon pink foreground + +# Status left (session name) +# set -g status-left "#[bold]#[fg=#ff6fff,bg=#0f0f1a] ⧉ #S #[default]" +set -g status-left "#[bold]#[fg=#ff6fff,bg=#000000] ⧉ #S #[default]" + +# Status right (clock, date, host) +#set -g status-right "#[bold]#[fg=#00d7ff,bg=#0f0f1a] %H:%M #[fg=#ff6fff,bg=#0f0f1a]| %d %b %Y #[fg=#ff6fff,bg=#0f0f1a]| #[fg=#00d7ff,bg=#0f0f1a]#H #[default]" +set -g status-right "#[bold]#[fg=#00d7ff,bg=#000000] %H:%M #[fg=#ff6fff,bg=#000000]| %d %b %Y #[fg=#ff6fff,bg=#000000]| #[fg=#00d7ff,bg=#000000]#H #[default]" + +# Window status inactive +setw -g window-status-format "#[fg=#ff6fff,bg=#0f0f1a] #I:#W #[default]" + +# Window status active (inverse colors) +setw -g window-status-current-format "#[fg=#0f0f1a,bg=#00d7ff] #I:#W #[default]" + +# Window styles +setw -g window-status-style fg=#ff6fff,bg=#0f0f1a +setw -g window-status-current-style fg=#0f0f1a,bg=#00d7ff + +# Pane borders +set -g pane-border-style fg=#ff00ff +set -g pane-active-border-style fg=#00d7ff + +# Message style (prompts, commands) +set -g message-style fg=#ff6fff,bg=#0f0f1a + +# Clock colors +set -g clock-mode-color "#00d7ff" +set -g clock-mode-style 24 + |