forked from hecthorl/devtter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 867 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
/* eslint-disable */
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
mode: 'jit',
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: '#15202b',
secondary: '#38444d',
tertiary: '#192734',
brand: '#1a91da'
},
boxShadow: {
float: 'rgb(136 153 166 / 20%) 0px 0px 15px, rgb(136 153 166 / 15%) 0px 0px 3px 1px'
}
},
screens: {
sm: '500px',
md: '987px',
xl: '1004px',
'2xl': '1282px'
}
},
variants: {
extend: { opacity: ['disabled'] }
},
plugins: [],
corePlugins: {
ringWidth: false,
ringColor: false,
ringOpacity: false,
ringOffsetColor: false,
ringOffsetWidth: false
}
}