-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (38 loc) · 923 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
const plugin = require('tailwindcss/plugin')
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx}",
"./components/**/*.{js,ts,jsx}",
],
theme: {
extend: {
colors: {
'dark-black': '#121315', //
'dark-transparent-black': '#1e1f20b7',
'dark-soft-black': '#292B2F',
'dark-light-gray': '#36393F',
'dark-gradient-right': '#04043e',
'dark-gradient-middle' : '#3e13398f',
'dark-gradient-left' : '#58121d',
'dark-white' : '#F1F0F4'
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
'.scrollbar-hide': {
/* IE and Edge */
'-ms-overflow-style': 'none',
/* Firefox */
'scrollbar-width': 'none',
/* Safari and Chrome */
'&::-webkit-scrollbar': {
display: 'none'
}
}
}
)
})
],
}