-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 960 Bytes
/
tailwind.config.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
module.exports = {
purge: {
enabled: false,
content: [
'./resources/views/**/*.php',
'./app/View/Components/**/*.php'
],
},
theme: {
extend: {
fontFamily: {
"moonshiner": ["Montserrat", "sans-serif"]
},
colors: {
blue: {
100: '#7FF7FD',
200: '#00DFEA',
300: '#04AFB7',
},
melanzani: {
100: "#690956",
200: "#4A073D",
300: "#290321"
},
coral: {
100: "#EF7C7E",
200: "#DD5255",
300: "#A7393B"
},
cheddar: {
100: "#FFD162",
200: "#FFB400",
300: "#D98E00"
},
grey: {
100: "#060B10",
200: "#CCCCCC",
300 : "#edf2f7"
}
}
},
},
variants: {
borderColor: ['responsive', 'hover', 'focus', 'focus-within'],
},
plugins: [
require('@tailwindcss/ui'),
],
}