-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathtailwind.config.js
File metadata and controls
56 lines (56 loc) · 1.39 KB
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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
filter: {
// defaults to {}
none: 'none',
'grayscale-0': 'grayscale(0)',
'grayscale-1': 'grayscale(1)',
invert: 'invert(1)',
sepia: 'sepia(1)'
},
backdropFilter: {
// defaults to {}
none: 'none',
blur: 'blur(20px)'
},
scale: {
'20': '.20',
'50': '.5',
'73': '.73',
'75': '.75',
'78': '.78',
'190': '8',
'200': '10'
},
extend: {
textColor: {
twitter: '#1DA1F2',
linkedin: '#0e76a8',
github: '#181717',
'text-text-color': 'var(--text-color)',
'text-text-cc': 'var(--text-cc)'
},
colors: {
'background-primary': 'var(--bg-background-primary)',
'background-secondary': 'var(--bg-background-secondary)'
},
fontSize: {
'7xl': '5rem',
'8xl': '8rem',
'9xl': '9rem',
'10xl': '10rem'
},
}
},
variants: {
filter: ['responsive'], // defaults to ['responsive']
backdropFilter: ['responsive'] // defaults to ['responsive']
},
plugins: [require('tailwindcss-filters'), require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')]
}