From 6aaea9cf4b283d41016e60735f52c8feb3cd0c9e Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 22 Aug 2023 19:46:15 +0100 Subject: Initial commit --- .config/qtile/colors.py | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .config/qtile/colors.py (limited to '.config/qtile/colors.py') diff --git a/.config/qtile/colors.py b/.config/qtile/colors.py new file mode 100644 index 0000000..749b12f --- /dev/null +++ b/.config/qtile/colors.py @@ -0,0 +1,51 @@ +# Justine Smithies +# https://github.com/justinesmithies/qtile-wayland-dotfiles + +# gruvbox color configuration +# https://github.com/morhetz/gruvbox/blob/master/colors/gruvbox.vim +colors = { + 'dark0_hard': '#1d2021', + 'dark0': '#282828', + 'dark0_soft': '#32302f', + 'dark1': '#3c3836', + 'dark2': '#504945', + 'dark3': '#665c54', + 'dark4': '#7c6f64', + 'dark4_256': '#7c6f64', + + 'gray_245': '#928374', + 'gray_244': '#928374', + + 'light0_hard': '#f9f5d7', + 'light0': '#fbf1c7', + 'light0_soft': '#f2e5bc', + 'light1': '#ebdbb2', + 'light2': '#d5c4a1', + 'light3': '#bdae93', + 'light4': '#a89984', + 'light4_256': '#a89984', + + 'bright_red': '#fb4934', + 'bright_green': '#b8bb26', + 'bright_yellow': '#fabd2f', + 'bright_blue': '#83a598', + 'bright_purple': '#d3869b', + 'bright_aqua': '#8ec07c', + 'bright_orange': '#fe8019', + + 'neutral_red': '#cc241d', + 'neutral_green': '#98971a', + 'neutral_yellow': '#d79921', + 'neutral_blue': '#458588', + 'neutral_purple': '#b16286', + 'neutral_aqua': '#689d6a', + 'neutral_orange': '#d65d0e', + + 'faded_red': '#9d0006', + 'faded_green': '#79740e', + 'faded_yellow': '#b57614', + 'faded_blue': '#076678', + 'faded_purple': '#8f3f71', + 'faded_aqua': '#427b58', + 'faded_orange': '#af3a03', +} -- cgit v1.2.3