-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
63 lines (63 loc) · 1.44 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module.exports = {
mode: 'jit',
content: [
"./src/components/**/*.{ts,tsx,js,jsx}",
"./src/pages/**/*.{ts,tsx,js,jsx}",
],
theme: {
extend: {
backgroundImage: {
'header': "url('/_next/image?url=/bg.jpg&w=480&q=75')",
'grid': "url('/_next/image?url=/background.png&w=720&q=75')"
},
colors: {
primary: "#1A1A1A",
nav: "#202224",
link: "#248FFF",
"link-hover": "#085ED7",
chapter: "rgb(17 46 64)",
root: '#2D2D2E',
main: 'rgb(239 68 68)',
'main-hover': 'rgba(239,68,68,0.4)',
logo: '#D04A32',
accent: '#2c2c2c',
'accent-lighten': '#3d3d3d',
'shade-mid': '#b4b9be',
'logo-darken': '#e6613e'
},
backgroundSize: {
'auto': 'auto',
'cover': 'cover',
'contain': 'contain',
'90%': '90%',
'16': '4rem',
},
transitionProperty: {
'width': 'width',
'height': 'height'
},
screens: {
'xs': '480px'
},
padding: {
'x': "var(--padding-x)"
},
inset: {
'x': "var(--padding-x)"
},
gridTemplateColumns: {
chapter: "repeat(auto-fill, minmax(60px, 1fr))",
comic: 'repeat(auto-fill, minmax(135px, 1fr));'
},
borderRadius: {
'4': '4px'
},
flex: {
'0': '0 0 0%'
}
}
},
plugins: [
require('@tailwindcss/line-clamp')
]
};