-
Notifications
You must be signed in to change notification settings - Fork 92
/
tailwind.theme.config.cjs
164 lines (163 loc) · 4.15 KB
/
tailwind.theme.config.cjs
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
const colors = require('tailwindcss/colors')
module.exports = {
/**
* Color Palette - Purple Heart
*/
purpleheart: {
colors: {
primary: colors.purple[700],
secondary: colors.purple[800],
dark: {
primary: colors.purple[300],
secondary: colors.purple[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Pink Town
*/
pinktown: {
colors: {
primary: colors.pink[700],
secondary: colors.pink[800],
dark: {
primary: colors.pink[300],
secondary: colors.pink[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Orange City
*/
orangecity: {
colors: {
primary: colors.orange[700],
secondary: colors.orange[800],
dark: {
primary: colors.orange[300],
secondary: colors.orange[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Amber Sky
*/
ambersky: {
colors: {
primary: colors.amber[700],
secondary: colors.amber[800],
dark: {
primary: colors.amber[300],
secondary: colors.amber[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Lime Route
*/
limeroute: {
colors: {
primary: colors.lime[700],
secondary: colors.lime[800],
dark: {
primary: colors.lime[300],
secondary: colors.lime[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Indigone
*/
indigone: {
colors: {
primary: colors.indigo[700],
secondary: colors.indigo[800],
dark: {
primary: colors.indigo[300],
secondary: colors.indigo[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Rose Garden
*/
rosegarden: {
colors: {
primary: colors.rose[700],
secondary: colors.rose[800],
dark: {
primary: colors.rose[300],
secondary: colors.rose[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
},
/**
* Color Palette - Default/Duplicate of Purple Heart (Never remove this)
*/
default: {
colors: {
primary: colors.purple[700],
secondary: colors.purple[800],
dark: {
primary: colors.purple[300],
secondary: colors.purple[500]
},
accent: {
gray: {
light: colors.gray[300],
dark: colors.gray[500]
},
default: colors.blue[700]
}
}
}
}