forked from Aditya664/commclassroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 1010 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
redHatDisplay: ['Red Hat Display', 'sans-serif']
},
boxShadow: {
secondary:
' 0 4px 4px 0 rgba(128, 183, 200, 0.4), 0 6px 10px 0 rgba(128, 183, 200, 0.4)'
},
backgroundColor: (theme) => ({
primary: '#0F273E',
secondary: '#80B7C8',
third: '#C4CBCA',
fourth: '#FFFFFF',
fifth: '#0A0F0D'
}),
borderColor: (theme) => ({
...theme('colors'),
custom: '#80B7C8'
}),
textColor: {
primary: '#0F273E',
secondary: '#80B7C8',
third: '#C4CBCA',
fourth: '#FFFFFF',
fifth: '#0A0F0D'
},
extend: {}
},
variants: {
extend: {
border: ['hover', 'focus'],
cursor: ['hover', 'focus'],
borderWidth: ['hover', 'focus'],
borderColor: ['active']
}
},
plugins: []
};