Skip to content

Instantly share code, notes, and snippets.

@select
Last active December 17, 2017 21:03
Show Gist options
  • Save select/5ba2f8052ef34a4bcd4848330bdadbc3 to your computer and use it in GitHub Desktop.
Save select/5ba2f8052ef34a4bcd4848330bdadbc3 to your computer and use it in GitHub Desktop.
Tmux theme: cynan white background
# Powerline Cyan Light - Tmux Theme
# github @select
# based on
# Powerline Cyan - Tmux Theme
# Created by Jim Myhrberg <contact@jimeh.me>.
#
# Inspired by vim-powerline: https://github.com/Lokaltog/powerline
#
# Requires terminal to be using a powerline compatible font, find one here:
# https://github.com/Lokaltog/powerline-fonts
#
# Status update interval
set -g status-interval 1
# Basic status bar colors
set -g status-fg colour240
set -g status-bg "#ffffff"
# Left side of status bar
set -g status-left-bg "#eeeeee"
set -g status-left-fg colour243
set -g status-left-length 40
set -g status-left "#[fg=colour232,bg=colour39,bold] #S #[fg=colour39,bg=#dddddd,nobold]#[fg=#eeeeee,bg=#dddddd] #(whoami) #[fg=#dddddd,bg=#eeeeee]#[fg=colour240,bg=#eeeeee] #I:#P #[fg=#eeeeee,bg=#ffffff,nobold]"
# Right side of status bar
set -g status-right-bg "#ffffff"
set -g status-right-fg colour243
set -g status-right-length 150
set -g status-right "#[fg=#eeeeee,bg=#ffffff]#[fg=colour240,bg=#eeeeee] %H:%M:%S #[fg=#dddddd,bg=#eeeeee]#[fg=#ffffff,bg=#dddddd] %d-%b-%y #[fg=colour245,bg=#dddddd]#[fg=colour232,bg=colour245,bold] #H "
# Window status
set -g window-status-format "#[fg=#eeeeee,bg=#ffffff] #I:#W#F "
set -g window-status-current-format "#[fg=#eeeeee,bg=#ffffff]#[fg=colour81,nobold] #I:#W#F #[fg=#eeeeee,bg=#ffffff,nobold]"
# Current window status
set -g window-status-current-bg colour39
set -g window-status-current-fg colour235
# Window with activity status
set -g window-status-activity-bg colour245 # fg and bg are flipped here due to
set -g window-status-activity-fg colour233 # a bug in tmux
# Window separator
set -g window-status-separator ""
# Window status alignment
set -g status-justify centre
# Pane border
set -g pane-border-bg default
set -g pane-border-fg colour238
# Active pane border
set -g pane-active-border-bg default
set -g pane-active-border-fg colour39
# Pane number indicator
set -g display-panes-colour colour233
set -g display-panes-active-colour colour245
# Clock mode
set -g clock-mode-colour colour39
set -g clock-mode-style 24
# Message
set -g message-bg colour39
set -g message-fg black
# Command message
set -g message-command-bg colour233
set -g message-command-fg black
# Mode
set -g mode-bg colour39
set -g mode-fg colour232
@select
Copy link
Author

select commented Dec 17, 2017

this is what it looks like
tmux-cyan-light

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment