diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2019-10-06 23:05:44 -0400 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2019-10-06 23:05:44 -0400 |
| commit | 71688839f0c3fb8107bbea27eb6cb1b4d8277e4a (patch) | |
| tree | c4fabc1bfdda72b65d4a62e36cbf891d9fed44ef /themes/slate | |
| parent | 602c70c5174b2c73600aa06fce915eaf8a1d8a26 (diff) | |
Add theme manager
Diffstat (limited to 'themes/slate')
| -rw-r--r-- | themes/slate | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/themes/slate b/themes/slate new file mode 100644 index 0000000..7db43ce --- /dev/null +++ b/themes/slate @@ -0,0 +1,62 @@ +# vim: filetype=yaml +--- +meta: + description: 'Slate theme by Jody Ribton <jody@ribton.me>' +colors: + # focused + slate: '#586e75' # main color + cream: '#fdf6e3' # focused text color + sky_blue: '#268bd2' # focused indicator color + + # inactive and unfocused + dark_teal: '#073642' # inactive windoww border + darker_teal: '#002b36' # unfocused window border + white_teal: '#93a1a1' # inactive text + grey: '#aea79f' # statusline + + # urgent + red: '#dc322f' # urgent window border + white: '#ffffff' # workspace text + purple: '#77216f' # urgent workspace color + +window_colors: + focused: + border: 'slate' + background: 'slate' + text: 'cream' + indicator: 'sky_blue' + focused_inactive: + border: 'dark_teal' + background: 'dark_teal' + text: 'white_teal' + indicator: 'darker_teal' + unfocused: + border: 'darker_teal' + background: 'darker_teal' + text: 'slate' + indicator: 'darker_teal' + urgent: + border: 'red' + background: 'red' + text: 'cream' + indicator: 'red' +bar_colors: + separator: 'slate' + background: 'darker_teal' + statusline: 'grey' + focused_workspace: + border: 'slate' + background: 'slate' + text: 'white' + active_workspace: + border: 'dark_teal' + background: 'dark_teal' + text: 'white' + inactive_workspace: + border: 'darker_teal' + background: 'darker_teal' + text: 'grey' + urgent_workspace: + border: 'purple' + background: 'purple' + text: 'white' |
