-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpalette_dark.py
92 lines (91 loc) · 3.43 KB
/
palette_dark.py
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
# material-linux - Auto-generated set of consistent themes for a Linux
# desktop based on the Android Material color palette.
#
# Copyright (C) 2014 Andrzej Pronobis
# Author: Andrzej Pronobis <a.pronobis@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
palette = {
# Background
"bg-strong": "#212121",
"bg-normal": "#121212",
"bg-weak": "#000000",
# Foreground
"fg-strong": "#ffffff",
"fg-normal": "#dadada",
"fg-weak": "#868686",
# Borders
"border": "#414141",
# Primary, secondary and accent colors
"primary-strong": "indigo-300",
"primary-normal": "indigo-500",
"primary-weak": "indigo-700",
"secondary-strong": "blue-grey-300",
"secondary-normal": "blue-grey-500",
"secondary-weak": "blue-grey-900",
"accent1-strong": "red-A100",
"accent1-normal": "red-A400",
"accent1-weak": "red-A700",
"accent2-strong": "amber-A100",
"accent2-normal": "amber-A400",
"accent2-weak": "amber-A700",
# Semantic colors
"semantic1": "teal-400",
"semantic2": "brown-400",
"semantic3": "lime-400",
"semantic4": "light-green-400",
"semantic5": "grey-600",
"semantic6": "grey-800",
"semantic7": "purple-300", # 400 is too dark
"semantic8": "blue-400",
"semantic9": "green-400",
"semantic10": "pink-400",
"semantic11": "cyan-400",
"semantic12": "indigo-400",
# State colors
"success-strong": "green-200",
"success-normal": "green-400",
"success-weak": "#144517",
"warning-strong": "orange-200",
"warning-normal": "orange-400",
"warning-weak": "#994300",
"error-strong": "red-200",
"error-normal": "red-400",
"error-weak": "#851414",
# ANSI colors
"black": "#121212",
"red": "red-400",
"green": "green-400",
"yellow": "lime-400",
"blue": "blue-400",
"magenta": "pink-400",
"cyan": "cyan-400",
"white": "#dadada",
"dark-black": "#000000",
"dark-red": "red-600",
"dark-green": "green-600",
"dark-yellow": "lime-700",
"dark-blue": "blue-600",
"dark-magenta": "pink-600",
"dark-cyan": "cyan-600",
"dark-white": "#868686",
"bright-black": "#212121",
"bright-red": "red-200",
"bright-green": "green-200",
"bright-yellow": "lime-200",
"bright-blue": "blue-200",
"bright-magenta": "pink-200",
"bright-cyan": "cyan-200",
"bright-white": "#ffffff",
}