-
Notifications
You must be signed in to change notification settings - Fork 34
/
tailwind.config.js
46 lines (46 loc) · 1.05 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
module.exports = {
variants: {
animation: ['motion-safe'],
},
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./node_modules/tw-elements/dist/js/**/*.js',
],
theme: {
screens: {
'2xs': '280px',
xs: '320px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
animation: {
fadeIn: 'fadeIn 2s ease-in forwards',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
},
colors: {
brand: {
orange: '#FF5E18',
black: '#141414',
},
},
fontFamily: {
'vinila-extended': ['Vinila Extended', 'sans-serif'],
'vinila-extended-bold': ['Vinila Extended Bold', 'sans-serif'],
'vinila-extended-light': ['Vinila Extended Light', 'sans-serif'],
roboto: ['Roboto', 'sans-serif'],
},
},
},
plugins: [require('tw-elements/dist/plugin')],
};