From faa28f3eb59a681a17b067319d46141e3d5d809e Mon Sep 17 00:00:00 2001 From: Thanos Apollo <public@thanosapollo.com> Date: Thu, 26 Oct 2023 06:06:01 +0300 Subject: Revert "Remove qtile" This reverts commit 1b061efdbb3fca2bd02a634cfce89673965e7fa9. --- .config/qtile/colors.py | 59 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100755 .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 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", +} -- cgit v1.2.3