summaryrefslogtreecommitdiff
path: root/.config/qtile
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-09-14 19:30:16 +0300
committerThanosApollo <[email protected]>2022-09-14 19:30:16 +0300
commitfda8020329ea38536d7e2c0aa1dc90972e494b5a (patch)
treea2cd32c02b3ddee7a5695c866de68db184a25596 /.config/qtile
parent423acab4c9af87a4411b3607325c5b0c8794c0fa (diff)
Add colors.py
Diffstat (limited to '.config/qtile')
-rw-r--r--.config/qtile/colors.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/.config/qtile/colors.py b/.config/qtile/colors.py
new file mode 100644
index 0000000..7faa17b
--- /dev/null
+++ b/.config/qtile/colors.py
@@ -0,0 +1,58 @@
+#!/usr/bin/env python3
+
+
+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",
+}
+
+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'
+}
+
+my_colors = {
+ "black" : "#000000",
+ "black2": "#2F343F",
+ "blue" : "#3384d0",
+ "red" : "#ff0000",
+ "grey" : "#a9a9a9",
+ "grey2" : "#C0C5CE",
+ "cyan" : "#6790EB",
+ "green" : "#62FF00",
+ "white" : "#F3F4F5",
+ "orange": "#FBA922",
+}