-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
68 lines (66 loc) · 2.07 KB
/
tailwind.config.js
File metadata and controls
68 lines (66 loc) · 2.07 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
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
},
animation: {
'up-down': 'float 1.5s ease-in-out infinite',
},
fontFamily: {
gmarket: ['var(--font-gmarket)'],
},
colors: {
primary: {
DEFAULT: '#FF6B6B',
SECOND: '#00648a',
THIRD: '#008f9d',
FORTH: '#00b997',
YELLOW: '#f9f871',
ORANGE: '#FF6F3C',
TEST: '#FFF7ED',
GRAY: '#E5E7EB',
},
text: {
DEFAULT: '#1F2937',
WHITE: '#FFFFFF',
},
light: {
text: {
DEFAULT: '#1F2937',
LIGHT: '#6B7280',
},
dark: {
text: {
DEFAULT: '#ECECEC',
1: '#D9D9D9',
2: '#ACACAC',
3: '#595959',
},
},
},
keyframes: {
loadingAnimation: {
'0%, 100%': { transform: 'rotate(-12deg)' },
'50%': { transform: 'rotate(3deg)' },
},
},
animation: {
'up-down': 'loadingAnimation 1s linear infinite',
},
},
},
plugins: [],
},
}