Skip to content

Commit c2b7053

Browse files
author
Sebastian Tramp
committed
first version of solarized tmux color theme
--HG-- branch : feature/tmux-colors
1 parent 1e1c5f6 commit c2b7053

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
solarize color theme tmux configuration
2+
====
3+
4+
This config snippet for the terminal multiplexer tmux should be added to your
5+
~/.tmux.conf configuration file.
6+

tmuxcolors.conf

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#### COLOUR
2+
3+
# default statusbar colors
4+
set-option -g status-bg colour235 #base02
5+
set-option -g status-fg colour136 #yellow
6+
set-option -g status-attr default
7+
8+
# default window title colors
9+
set-window-option -g window-status-fg colour244
10+
set-window-option -g window-status-bg default
11+
#set-window-option -g window-status-attr dim
12+
13+
# active window title colors
14+
set-window-option -g window-status-current-fg colour166 #orange
15+
set-window-option -g window-status-current-bg default
16+
#set-window-option -g window-status-current-attr bright
17+
18+
# pane border
19+
set-option -g pane-border-fg colour235 #base02
20+
set-option -g pane-active-border-fg colour240 #base01
21+
22+
# message text
23+
set-option -g message-bg colour235 #base02
24+
set-option -g message-fg colour166 #orange
25+
26+
# pane number display
27+
set-option -g display-panes-active-colour colour33 #blue
28+
set-option -g display-panes-colour colour166 #orange
29+
30+
# clock
31+
set-window-option -g clock-mode-colour colour64 #green

0 commit comments

Comments
 (0)