Skip to content

Commit b74be1f

Browse files
authored
Merge pull request #18 from mshkrebtan/base16
Base16
2 parents c84905c + 1dfad54 commit b74be1f

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ Add plugin to the list of TPM plugins in `.tmux.conf`:
2525

2626
Hit `prefix + I` to fetch the plugin and source it. The plugin should now be working.
2727

28-
3 themes are provided so you can pick and choose via `.tmux.conf` option:
28+
4 themes are provided so you can pick and choose via `.tmux.conf` option:
2929

3030
- `set -g @colors-solarized '256'` (the default)
3131
- `set -g @colors-solarized 'dark'`
3232
- `set -g @colors-solarized 'light'`
33+
- `set -g @colors-solarized 'base16'`
3334

3435
## Screenshot
3536
Here is a screenshot of a tmux session captured from a gnome-terminal using the [dz-version of the awesome Inconsolata font](http://nodnod.net/2009/feb/12/adding-straight-single-and-double-quotes-inconsola/).

tmuxcolors-base16.conf

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#### COLOUR (base16-solarized)
2+
3+
# This theme is a 256 color variant and it uses the color codes of the
4+
# base16-solarized (256 color) terminal/shell theme:
5+
# https://github.com/chriskempson/base16
6+
# https://github.com/chriskempson/base16-shell
7+
8+
# It is based on the original tmux-colors-solarized light theme with some color
9+
# codes changed (to map solarized base2, base00, orange, base1).
10+
11+
# In fact, this theme may be used in combination with any base16 256 color
12+
# terminal/shell theme. But it will probably look a bit 'burnt' (i.e.
13+
# solarized). It better matches the base16-solarized-light and
14+
# base16-solarized-dark terminal/shell color themes.
15+
16+
# default statusbar colors
17+
set-option -g status-bg colour18 #base2
18+
set-option -g status-fg yellow #yellow
19+
set-option -g status-attr default
20+
21+
# default window title colors
22+
set-window-option -g window-status-fg colour20 #base00
23+
set-window-option -g window-status-bg default
24+
#set-window-option -g window-status-attr dim
25+
26+
# active window title colors
27+
set-window-option -g window-status-current-fg colour16 #orange
28+
set-window-option -g window-status-current-bg default
29+
#set-window-option -g window-status-current-attr bright
30+
31+
# pane border
32+
set-option -g pane-border-fg colour18 #base2
33+
set-option -g pane-active-border-fg colour19 #base1
34+
35+
# message text
36+
set-option -g message-bg colour18 #base2
37+
set-option -g message-fg colour16 #orange
38+
39+
# pane number display
40+
set-option -g display-panes-active-colour blue #blue
41+
set-option -g display-panes-colour colour16 #orange
42+
43+
# clock
44+
set-window-option -g clock-mode-colour green #green
45+
46+
# bell
47+
set-window-option -g window-status-bell-style fg=colour18,bg=red #base2, red

0 commit comments

Comments
 (0)