summaryrefslogtreecommitdiff
path: root/skel/.config/qtile/colors.py
blob: 4a255e210d86c21c0ad4bfa3a371d1decb94150c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#Dracula
def dracula():
	colors = [["#282a36", "#282a36"],  #background (dark grey) [0]
			   ["#44475a", "#44475a"],  #light grey [1]
			   ["#f8f8f2", "#f8f8f2"],  #foreground (white) [2]
			   ["#6272a4", "#6272a4"],  #blue/grey) [3]
			   ["#8be9fd", "#8be9fd"],  #cyan [4]
			   ["#50fa7b", "#50fa7b"],  #green [5]
			   ["#ffb86c", "#ffb86c"],  #orange [6]
			   ["#ff79c6", "#ff79c6"],  #pink [7]
			   ["#bd93f9", "#bd93f9"],  #purple [8]
			   ['#ff5555', '#ff5555'],  #red [9]
			   ["#f1fa8c", "#f1fa8c"]]  #yellow [10]
			   
	backgroundColor = "#282a36"
	foregroundColor = "#f8f8f2"
	workspaceColor = "#bd93f9"
	foregroundColorTwo = "#44475a"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#Everforest
def everforest():
	colors = [["#2B3339", "#2B3339"],  #background (dark grey) [0]
			  ["#7C8377", "#7C8377"],  #light grey [1]
			  ["#D5C9AB", "#D5C9AB"],  #foreground (beige) [2]
			  ["#6272a4", "#6272a4"],  #blue/grey) [3]
			  ["#7FBBB3", "#7FBBB3"],  #blue [4]
			  ["#A7C080", "#A7C080"],  #green [5]
			  ["#E69875", "#E69875"],  #orange [6]
			  ["#D196B3", "#D196B3"],  #pink [7]
			  ["#A7C080", "#A7C080"],  #green [8]
			  ['#ED8082', '#ED8080'],  #red [9]
			  ["#D5C9AB", "#D5C9AB"]]  #beige [10]
			  
	backgroundColor = "#2B3339"
	foregroundColor = "#D5C9AB"
	workspaceColor = "#A7C080"
	foregroundColorTwo = "#7c8377"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#Doom-One
def doomone():
	colors = [["#282c34", "#282c34"],  #background (dark grey) [0]
			   ["#44475a", "#44475a"],  #light grey [1]
			   ["#bbc2cf", "#bbc2cf"],  #foreground (white) [2]
			   ["#3071db", "#3071db"],  #dark blue) [3]
			   ["#51afef", "#51afef"],  #blue [4]
			   ["#98be65", "#98be65"],  #green [5]
			   ["#da8548", "#da8548"],  #orange [6]
			   ["#a9a1e1", "#a9a1e1"],  #pink [7]
			   ["#c678dd", "#c678dd"],  #purple [8]
			   ['#ff6c6b', '#ff6c6b'],  #red [9]
			   ["#ecbe7b", "#ecbe7b"]]  #yellow [10]
			   
	backgroundColor = "#282a36"
	foregroundColor = "#bbc2cf"
	workspaceColor = "#51afef"
	foregroundColorTwo = "#44475a"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#Nord
def nord():
	colors = [["#2e3440", "#2e3440"],  #background (dark grey) [0]
			  ["#4c556a", "#4c566a"],  #grey [1]
			  ["#d8dee9", "#d8dee9"],  #foreground (beige) [2]
			  ["#81a1c1", "#81a1c1"],  #blue/grey) [3]
			  ["#88c0d0", "#88c0d0"],  #blue [4]
			  ["#a3be8c", "#a3be8c"],  #green [5]
			  ["#e69875", "#e69875"],  #orange [6]
			  ["#D196B3", "#D196B3"],  #pink [7]
			  ["#a3be8c", "#a3be8c"],  #green [8]
			  ['#bf616a', '#bf616a'],  #red [9]
			  ["#ebcb8b", "#ebcb8b"]]  #yellow [10]
			   
	backgroundColor = "#2e3440"
	foregroundColor = "#d8dee9"
	workspaceColor = "#a3be8c"
	foregroundColorTwo = "#4c566a"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#Gruvbox
def gruvbox():
	colors = [["#282828", "#282828"],  #background (dark grey) [0]
			   ["#928374", "#928374"],  #light grey [1]
			   ["#ebdbb2", "#ebddb2"],  #foreground (white) [2]
			   ["#458588", "#458588"],  #blue) [3]
			   ["#83a598", "#83a598"],  #light blue [4]
			   ["#b8bb26", "#b8bb26"],  #green [5]
			   ["#d79921", "#d79921"],  #orange [6]
			   ["#d3869b", "#d3869b"],  #pink [7]
			   ["#b16286", "#b16286"],  #purple [8]
			   ['#cc241d', '#cc241d'],  #red [9]
			   ["#fabd2f", "#fabd2f"]]  #yellow [10]
			   
	backgroundColor = "#282828"
	foregroundColor = "#ebddb2"
	workspaceColor = "#b8bb26"
	foregroundColorTwo = "#928375"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#catppuccin
def catppuccin():
	colors = [["#232634", "#232634"],  #background (dark grey) [0]
			   ["#51576d", "#51576d"],  #light grey [1]
			   ["#f2d5cf", "#f2d5cf"],  #foreground (white) [2]
			   ["#8caaee", "#8caaee"],  #blue) [3]
			   ["#b5bfe2", "#b5bfe2"],  #light blue [4]
			   ["#a6d189", "#a6d189"],  #green [5]
			   ["#ef9f76", "#ef9f76"],  #orange [6]
			   ["#f4b8e4", "#f4b8e4"],  #pink [7]
			   ["#ca9ee6", "#ca9ee6"],  #purple [8]
			   ['#e78284', '#e78284'],  #red [9]
			   ["#e5c890", "#e5c890"]]  #yellow [10]
			   
	backgroundColor = "#232634"
	foregroundColor = "#c6d0f5"
	workspaceColor = "#e5c890"
	foregroundColorTwo = "#babbf1"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#moonfly
def moonfly():
	colors = [["#323437", "#323437"],  #background (dark grey) [0]
			   ["#9e9e9e", "#9e9e9e"],  #light grey [1]
			   ["#b2b2b2", "#b2b2b2"],  #foreground (white) [2]
			   ["#80a0ff", "#80a0ff"],  #blue) [3]
			   ["#b2ceee", "#b2ceee"],  #light blue [4]
			   ["#8cc85f", "#8cc85f"],  #green [5]
			   ["#ef9f76", "#ef9f76"],  #orange [6]
			   ["#ff5189", "#ff5189"],  #pink [7]
			   ["#d183e8", "#d183e8"],  #purple [8]
			   ['#ff5454', '#ff5454'],  #red [9]
			   ["#e3c78a", "#e3c78a"]]  #yellow [10]
			   
	backgroundColor = "#080808"
	foregroundColor = "#b2b2b2"
	workspaceColor = "#e3c78a"
	foregroundColorTwo = "#9e9e9e"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#retro
def retro():
	colors = [["#160B00", "#160B00"],  #background (dark grey) [0]
			   ["#663300", "#663300"],  #darkorange [1]
			   ["#8B4500", "#8B4500"],  #less dark orange (white) [2]
			   ["#A35100", "#A35100"],  #less less dark orange [3]
			   ["#C26100", "#C26100"],  #light orange [4]
			   ["#E07000", "#E07000"],  #green [5]
			   ["#FF7F00", "#FF7F00"],  #orange [6]
			   ["#FF8E1F", "#FF8E1F"],  #pink [7]
			   ["#FF8E1F", "#FF8E1F"],  #purple [8]
			   ['#FF8E1F', '#FF8E1F'],  #red [9]
			   ["#FF8E1F", "#FF8E1F"]]  #yellow [10]
			   
	backgroundColor = "#160B00"
	foregroundColor = "#DE7B1B"
	workspaceColor = "#DE7B1B"
	foregroundColorTwo = "#DE7B1B"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#whitey
def whitey():
	colors = [["#2a2a2a", "#2a2a2a"],   # black [0]
			   ["#A73D47", "#A73D47"],  # red [1]
			   ["#87A357", "#87A357"],  # green [2]
			   ["#EB973D", "#EB973D"],  # yellow [3]
			   ["#2FA7B8", "#2FA7B8"],  # cyan [4]
			   ["#A03946", "#A03946"],  # magenta [5]
			   ["#1D345E", "#1D345E"],  # blue [6]
			   ["#DBE3EC", "#DBE3EC"],  # white [7]
			   ["#E5953E", "#E5953E"],  # orange  [8]
			   ['#A73D47', '#A73D47'],  #red [9]
			   ["#FF8E1F", "#FF8E1F"]]  #yellow [10]
			   
	backgroundColor = "#FCFCFA"
	foregroundColor = "#2a2a2a"
	workspaceColor = "#66688F"
	foregroundColorTwo = "#2a2a2a"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo

#redcore
def redcore():
	colors = [["#31363b", "#31363b"], #breeze blue [0]  
			   ["#7f8c8d", "#7f8c8d"], #light grey [1] 
			   ["#3daee9", "#3daee9"], #blue [2]  
			   ["#804453", "#804453"], #Maroon [3] 
			   ["#2FA7B8", "#2FA7B8"],  
			   ["#27ae60", "#27ae60"], #green [5]
			   ["#1D345E", "#1D345E"],  
			   ["#bfc3c7", "#bfc3c7"], #gray [7] 
			   ["#fdbc4b", "#fdbc4b"], #orange [8] 
			   ['#520a0a', '#520a0a'], #red [9] 
			   ["#eff0f1", "#eff0f1"]] #white [10]  
			   
	backgroundColor = "#31363b"
	foregroundColor = "#eff0f1"
	workspaceColor = "#27ae60"
	foregroundColorTwo = "#2a2a2a"
	return colors, backgroundColor, foregroundColor, workspaceColor, foregroundColorTwo