-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy paththemes.js
121 lines (118 loc) · 2.26 KB
/
themes.js
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
import { grey, indigo, red } from "@material-ui/core/colors";
import { createTheme } from "@material-ui/core/styles";
export const darkTheme = createTheme({
palette: {
type: "dark",
primary: {
light: "#c5cae9",
main: "#8c9eff",
dark: "#536dfe",
},
secondary: {
light: "#ff80ac",
main: "#ff4284",
dark: "#c51162",
},
action: {
hover: "#363636",
},
success: {
light: "#81c784",
main: "#a5d6a7",
dark: "#82c483",
},
background: {
panel: "#303030",
paper: "#262626",
default: "#161616",
},
},
input: {
textColor: "#fff",
caretColor: "#fff",
background: "#262626",
},
mentioned: {
background: "#383838",
border: "#ffd700",
},
pie: {
noGames: "#rgba(0, 0, 0, 0.12)",
},
setCard: {
purple: "#ff47ff",
green: "#00b803",
red: "#ffb047",
orange: "#47b0ff",
background: "#262626",
hinted: "rgba(41, 182, 246, 0.25)",
highlight: "#404040",
backColors: [
grey[900],
grey[800],
grey[700],
grey[600],
grey[500],
"#262626",
],
},
alarm: red[700],
profileTable: {
row: "#282828",
},
setFoundEntry: "rgba(130, 170, 100, 0.15)",
});
export const lightTheme = createTheme({
palette: {
type: "light",
background: {
panel: "#fafafa",
paper: "#fff",
default: "#fafafa",
},
success: {
light: "#81c784",
main: "#4caf50",
dark: "#388e3c",
},
},
input: {
textColor: "black",
caretColor: "black",
background: "#fff",
},
mentioned: {
background: "#fffedc",
border: "#ffd700",
},
pie: {
noGames: "rgba(0, 0, 0, 0.12)",
},
setCard: {
purple: "#800080",
green: "#008002",
red: "#ff0101",
orange: "#fb8c00",
background: "#fff",
hinted: "rgba(3, 169, 244, 0.2)",
highlight: "#fffedc",
backColors: [
indigo[600],
indigo[300],
indigo[200],
indigo[200],
indigo[50],
"#fff",
],
},
alarm: red[700],
profileTable: {
row: "#fff",
},
setFoundEntry: "rgba(130, 170, 100, 0.15)",
});
export function withCardColors(theme, colors) {
return colors
? { ...theme, setCard: { ...theme.setCard, ...colors } }
: theme;
}