-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcolors.go
128 lines (126 loc) · 3.27 KB
/
colors.go
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
package faithdroid
//color platte see "https://www.materialpalette.com/colors"
type ColorsCollection struct {
Red string
RedLight string
RedDark string
Pink string
PinkLight string
PinkDark string
Purple string
PurpleLight string
PurpleDark string
DeepPurple string
DeepPurpleLight string
DeepPurpleDark string
Indigo string
IndigoLight string
IndigoDark string
Blue string
BlueLight string
BlueDark string
LightBlue string
LightBlueLight string
LightBlueDark string
Cyan string
CyanLight string
CyanDark string
Teal string
TealLight string
TealDark string
Green string
GreenLight string
GreenDark string
LightGreen string
LightGreenLight string
LightGreenDark string
Lime string
LimeLight string
LimeDark string
Yellow string
YellowLight string
YellowDark string
Amber string
AmberLight string
AmberDark string
Orange string
OrangeLight string
OrangeDark string
DeepOrange string
DeepOrangeLight string
DeepOrangeDark string
Brown string
BrownLight string
BrownDark string
Grey string
GreyLight string
GreyDark string
BlueGrey string
BlueGreyLight string
BlueGreyDark string
Black, White string
Transparent string
RippleEffect string
}
var Colors = ColorsCollection{
Red: "#f44336",
RedLight: "#e57373",
RedDark: "#d32f2f",
Pink: "#e91e63",
PinkLight: "#f06292",
PinkDark: "#c2185b",
Purple: "#9c27b0",
PurpleLight: "#ba68c8",
PurpleDark: "#7b1fa2",
DeepPurple: "#673ab7",
DeepPurpleLight: "#9575cd",
DeepPurpleDark: "#512da8",
Indigo: "#3f51b5",
IndigoLight: "#7986cb",
IndigoDark: "#303f9f",
Blue: "#2196f3",
BlueLight: "#64b5f6",
BlueDark: "#1976d2",
LightBlue: "#03a9f4",
LightBlueLight: "#4fc3f7",
LightBlueDark: "#0288d1",
Cyan: "#00bcd4",
CyanLight: "#4dd0e1",
CyanDark: "#0097a7",
Teal: "#009688",
TealLight: "#4db6ac",
TealDark: "#00796b",
Green: "#4caf50",
GreenLight: "#81c784",
GreenDark: "#388e3c",
LightGreen: "#8bc34a",
LightGreenLight: "#aed581",
LightGreenDark: "#689f38",
Lime: "#cddc39",
LimeLight: "#dce775",
LimeDark: "#afb42b",
Yellow: "#ffeb3b",
YellowLight: "#fff176",
YellowDark: "#fbc02d",
Amber: "#ffc107",
AmberLight: "#ffd54f",
AmberDark: "#ffa000",
Orange: "#ff9800",
OrangeLight: "#ffb74d",
OrangeDark: "#f57c00",
DeepOrange: "#ff5722",
DeepOrangeLight: "#ff8a65",
DeepOrangeDark: "#e64a19",
Brown: "#795548",
BrownLight: "#a1887f",
BrownDark: "#5d4037",
Grey: "#9e9e9e",
GreyLight: "#e0e0e0",
GreyDark: "#616161",
BlueGrey: "#607d8b",
BlueGreyLight: "#90a4ae",
BlueGreyDark: "#455a64",
Black: "#000000", White: "#ffffff",
Transparent: "#0000000",
RippleEffect: "RippleEffect",
}