diff options
author | ThanosApollo <[email protected]> | 2022-11-21 22:20:08 +0200 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-11-21 22:20:08 +0200 |
commit | 3f4e9355cc6efdbe453cbec11f02edb322393d39 (patch) | |
tree | 6a6bb301f3193202b5968cce8af81874d546086f /.config/qtile | |
parent | fcd1dc50007d286ed479b3267080a33fd60ab555 (diff) |
Update color themes
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/colors.py | 58 |
1 files changed, 26 insertions, 32 deletions
diff --git a/.config/qtile/colors.py b/.config/qtile/colors.py index fab5908..9b691b5 100644 --- a/.config/qtile/colors.py +++ b/.config/qtile/colors.py @@ -1,19 +1,22 @@ -nord_fox = { - 'bg': "#2e3440", - 'fg': "#b9bfca", - 'fg_gutter': "#4b5668", - 'black': "#3b4252", - 'red': "#bf616a", - 'green': "#a3be8c", - 'yellow': "#ebcb8b", - 'blue': "#81a1c1", - 'magenta': "#b48ead", - 'cyan': "#88c0d0", - 'white': "#e5e9f0", - 'orange': "#c9826b", - 'pink': "#bf88bc", +""" +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', @@ -41,25 +44,16 @@ gruvbox = { 'fg9': '#ebdbb2' } +# Custom version of arcolinux theme my_colors = { - "black" : "#000000", + "black": "#000000", "black2": "#2F343F", - "blue" : "#3384d0", - "red" : "#ff0000", - "grey" : "#a9a9a9", - "grey2" : "#C0C5CE", - "cyan" : "#6790EB", - "green" : "#62FF00", - "white" : "#F3F4F5", + "blue": "#3384d0", + "red": "#ff0000", + "grey": "#a9a9a9", + "grey2": "#C0C5CE", + "cyan": "#6790EB", + "green": "#62FF00", + "white": "#F3F4F5", "orange": "#FBA922", } -dracula = { - "bg" : "#282a36" , - "fg" : "#f8f8f2", - "curr": "#44475a", - "cyan": "#8be9fd", - "green": "#50fa7b", - "orange": "#ffb86c", - "purple": "#bd93f9", - "red" : "#ff5555", -} |