-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (47 loc) · 1.04 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.html', './src/**/*.md'],
theme: {
screens: {
xs: '375px',
mob: '450px',
sm: '640px',
md: '768px',
tab: '860px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
hd: '1920px',
},
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
celandine: ['Celandine', ...defaultTheme.fontFamily.sans],
},
width: {
icon: '48px',
},
height: {
icon: '48px',
},
maxWidth: {
icon: '48px',
icon_padding: '72px',
},
animation: {
write: 'write 3s linear forwards',
},
keyframes: {
write: {
'90%': { 'stroke-dashoffset': '0', fill: 'rgba(255,255,255,0)' },
'100%': { fill: 'rgba(255,255,255,255)' },
},
},
scale: {
105: '105%',
},
},
},
variants: {},
plugins: [require('@tailwindcss/typography')],
};