-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 972 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
module.exports = {
purge: {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
options: {
safelist: ["active"],
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"omdb-gray-dark": "#333333",
"omdb-gray-dark-2": "#4F4F4F",
"omdb-gray-medium": "#828282",
"omdb-gray-light": "silver",
"omdb-gray-light-2": "#F2F2F2",
},
gridTemplateColumns: {
"2-1fr": "1fr 1fr",
},
width: {
"fit-content": "fit-content",
},
height: {
"fit-content": "fit-content",
},
},
fontFamily: {
body: ["Roboto", "sans-serif"],
},
},
variants: {
extend: {
backgroundColor: ["checked", "disabled", "even", "odd"],
borderColor: ["checked", "hover"],
textColor: ["checked", "disabled"],
cursor: ["disabled"],
},
},
plugins: [],
};