diff options
author | Thanos Apollo <[email protected]> | 2023-04-13 08:30:53 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-04-13 08:30:53 +0300 |
commit | 1b061efdbb3fca2bd02a634cfce89673965e7fa9 (patch) | |
tree | 9bfda14a42a57498711ba174060ddd59c44ffefb /.config/qtile/colors.py | |
parent | 1e6e6b8d7d1eb66bfb979ebba6e1f3a9435c4a2b (diff) |
Remove qtile
Diffstat (limited to '.config/qtile/colors.py')
-rwxr-xr-x | .config/qtile/colors.py | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/.config/qtile/colors.py b/.config/qtile/colors.py deleted file mode 100755 index 9b691b5..0000000 --- a/.config/qtile/colors.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -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", -} |