-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 933 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 933 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bgPurple: '#F0E3FF',
mainPurple: '#8152F1',
loadingFont: '#5B3037',
},
keyframes: {
typing: {
from: {
width: '0px',
},
to: {
width: '18px',
},
},
motion: {
'0%': {
transform: 'translateY(15px)',
},
'50%': {
transform: 'translateY(0px)',
},
'100%': {
transform: 'translateY(-15px)',
},
},
},
animation: {
typing: 'typing 1.5s steps(20) infinite',
motion: 'motion 0.8s linear infinite alternate',
},
boxShadow: {
'3xl': '2px 2px 0px rgba(128, 89, 230, 0.2)',
},
},
},
plugins: [],
};