diff options
author | Thanos Apollo <[email protected]> | 2023-10-26 06:06:01 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-26 06:06:01 +0300 |
commit | faa28f3eb59a681a17b067319d46141e3d5d809e (patch) | |
tree | 45383e9dd5ba4b9673744959d236805ce8ccbc1f /.config/qtile/colors.py | |
parent | 4f80a3473e6316b4fa2f4890e8aa5f54b5c1e8a8 (diff) |
Revert "Remove qtile"
This reverts commit 1b061efdbb3fca2bd02a634cfce89673965e7fa9.
Diffstat (limited to '.config/qtile/colors.py')
-rwxr-xr-x | .config/qtile/colors.py | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/.config/qtile/colors.py b/.config/qtile/colors.py new file mode 100755 index 0000000..9b691b5 --- /dev/null +++ b/.config/qtile/colors.py @@ -0,0 +1,59 @@ +""" +My Favorite Color Themes For Qtile | + +Feel free to change them as you like +""" + +# Dracula theme +dracula = { + "bg": "#282a36", + "fg": "#f8f8f2", + "curr": "#44475a", + "cyan": "#8be9fd", + "green": "#50fa7b", + "orange": "#ffb86c", + "purple": "#bd93f9", + "red": "#ff5555", +} + +# Gruvbox theme +gruvbox = { + 'bg': '#282828', + 'fg': '#d4be98', + 'dark-red': '#ea6962', + 'red': '#ea6962', + 'dark-green': '#a9b665', + 'green': '#a9b665', + 'dark-yellow': '#e78a4e', + 'yellow': '#d8a657', + 'dark-blue': '#7daea3', + 'blue': '#7daea3', + 'dark-magenta': '#d3869b', + 'magenta': '#d3869b', + 'dark-cyan': '#89b482', + 'cyan': '#89b482', + 'dark-gray': '#665c54', + 'gray': '#928374', + + 'fg4': '#766f64', + 'fg3': '#665c54', + 'fg2': '#504945', + 'fg1': '#3c3836', + 'bg0': '#32302f', + 'fg0': '#1d2021', + 'fg9': '#ebdbb2' +} + +# Custom version of arcolinux theme +my_colors = { + "black": "#000000", + "black2": "#2F343F", + "blue": "#3384d0", + "red": "#ff0000", + "grey": "#a9a9a9", + "grey2": "#C0C5CE", + "cyan": "#6790EB", + "green": "#62FF00", + "white": "#F3F4F5", + "orange": "#FBA922", +} |