Created
August 23, 2024 20:22
-
-
Save gabrielbidula/46dd0327dc8594a3f4c9c93a3117f2d3 to your computer and use it in GitHub Desktop.
Eva01 Tmux conf - based on Neon Genesis Evangelion - Includes mute and bright version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Eva Unit 01 inspired color scheme (muted version) | |
# Main colors | |
set -g status-style 'bg=#2e2e2e fg=#7851a9' | |
# Window list colors | |
setw -g window-status-style 'fg=#7851a9 bg=#2e2e2e' | |
setw -g window-status-current-style 'fg=#2e2e2e bg=#7851a9 bold' | |
# Pane border colors | |
set -g pane-border-style 'fg=#7851a9' | |
set -g pane-active-border-style 'fg=#4a9f66' | |
# Message colors | |
set -g message-style 'fg=#4a9f66 bg=#2e2e2e bold' | |
# Status right | |
set -g status-right '#[fg=#2e2e2e,bg=#7851a9,bold] %d/%m #[fg=#2e2e2e,bg=#4a9f66,bold] %H:%M:%S ' | |
---------------------------------------- | |
# Eva Unit 01 inspired color scheme (bright version) | |
# Main colors | |
set -g status-style 'bg=#2e2e2e fg=#a020f0' | |
# Window list colors | |
setw -g window-status-style 'fg=#a020f0 bg=#2e2e2e' | |
setw -g window-status-current-style 'fg=#2e2e2e bg=#a020f0 bold' | |
# Pane border colors | |
set -g pane-border-style 'fg=#a020f0' | |
set -g pane-active-border-style 'fg=#50c878' | |
# Message colors | |
set -g message-style 'fg=#50c878 bg=#2e2e2e bold' | |
# Status right | |
set -g status-right '#[fg=#2e2e2e,bg=#a020f0,bold] %d/%m #[fg=#2e2e2e,bg=#50c878,bold] %H:%M:%S ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment