forked from sahilrw/responsive-front
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (52 loc) · 1.5 KB
/
tailwind.config.js
File metadata and controls
52 lines (52 loc) · 1.5 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'libre-baskerville': ['Libre Baskerville', 'serif'],
},
colors: {
primary: '#dd71c6',
secondary: '#73c3f4',
tertiary: '#ffd900',
countdown: '#4D85B0',
customWhite: '#f9f5f6',
},
transitionDelay: {
custom: '120ms',
},
animation: {
slideInRightSM: 'slideInRightSM 1s ease-in-out',
slideInRight: 'slideInRight 1s ease-in-out',
slideOutRightSM: 'slideOutRightSM 1s ease-in-out',
slideOutRight: 'slideOutRight 1s ease-in-out',
customSpin: 'customSpin 1s linear infinite',
},
keyframes: {
slideInRightSM: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-64px)' },
},
slideInRight: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-16px)' },
},
slideOutRightSM: {
'100%': { transform: 'translateX(100%)' },
'0%': { transform: 'translateX(-64px)' },
},
slideOutRight: {
'100%': { transform: 'translateX(100%)' },
'0%': { transform: 'translateX(-16px)' },
},
customSpin: {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
},
},
},
plugins: [],
};