-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 861 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 861 Bytes
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
// tailwind.config.js
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
zIndex: {
60: '60',
'-60': '-60',
'-50': '-50',
'-40': '-40',
'-30': '-30',
'-20': '-20',
'-10': '-10'
},
fontFamily: {
sora: ['Sora', 'sans-serif']
},
colors: {
jams_red: '#FF5E55',
jams_blue: '#3B7DED',
jams_dark_blue: '#1e1e38',
discord_violet: '#4362cc',
discord_white: '#f4f8fc',
jams_green: '#39AA68',
jams_yellow: '#F9C531'
},
width: {
120: '40rem'
},
minWidth: {
80: '320px'
}
}
},
variants: {
width: ['responsive', 'hover', 'focus'],
extend: {}
},
plugins: []
}