-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
61 lines (55 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
colors: {
blackPrimary: '#02000E',
blackSecondary: '#181D26',
blackHover: '#1f2937',
yellowPrimary: '#D2C030',
grayLight: '#A3A5A8',
grayMedium: '#828282',
grayDark: '#67666E',
grayBlue: '#8C92AB',
grayBlack: '#1B1B1BCC',
whitePrimary: '#FFF',
whiteSecondary: '#F7F7F8',
whiteGray: '#F1EEF9CC',
pointBlue: '#14C3FE',
pointOrange: '#F96D69',
pointPink: '#FE5493',
pointOrangePink: '#F96868',
},
fontFamily: {
sans: ['Pretendard'],
dosGothic: ['DOSGothic']
},
screens: {
mobile: { min: "375px", max: "767px" },
tablet: { min: "768px", max: "1279px" },
desktop: { min: "1280px" },
},
backgroundSize: {
'size-200': '200% 200%',
},
backgroundPosition: {
'pos-0': '0% 0%',
'pos-100': '100% 100%',
},
keyframes: {
vibration: {
from: { transform: 'rotate(0.5deg)' },
to: { transform: 'rotate(-0.5deg)' },
},
},
animation: {
vibration: 'vibration .1s ease-in-out 3'
}
},
},
plugins: [],
};