forked from Alpha-Labs-Global/blockalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (39 loc) · 938 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
screens: {
'sm': '0px',
// => @media (min-width: 576px) { ... }
'midSm' : '450px',
'md': '750px',
// => @media (min-width: 960px) { ... }
'lg': '968px',
// => @media (min-width: 1440px) { ... }
'xl': '1800px',
'xxl': '2350px'
},
colors: {
transparent: 'transparent',
current: 'currentColor',
special: {
light: '#85d7ff',
DEFAULT: '#121212',
dark: '#009eeb',
},
button: '#464646',
buttonText: '#BDBDBD',
buttonActiveText: '#121212',
teal: "#ADFFD8",
green: "#228B22"
},
}
},
plugins: [require('tailwind-scrollbar')],
variants: {
scrollbar: ['rounded']
}
}