-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
56 lines (56 loc) · 1.44 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
// 폰트
fontFamily: {
pretendard: ['Pretendard', 'san-serif'],
rubik: ['"Rubik Bubbles"', 'cursive'],
},
fontWeight: {
regular: 400,
medium: 500,
semiBold: 600,
bold: 700,
extraBold: 800,
},
// 커스텀 컬러
colors: {
primary: {
50: '#E8F0FA',
100: '#d8e7f9',
200: '#B1D0F4',
300: '#8AB8EE',
400: '#63A1E8',
500: '#3B89E2',
600: '#306EB5',
700: '#245288',
800: '#18375b',
900: '#0c1b2d',
},
custom: {
gray: '#7d848d',
black: '#2e2e2e',
graylight: '#D7D7D7',
input: '#FEFEFE',
icon: '#6E6776',
}
},
// 커스텀 그림자
boxShadow: {
'default': '0px 8px 18px 0px rgba(168, 178, 198, 0.45)',
'backblue': '0px 4px 10px 0px rgba(49, 78, 141, 0.25);',
'blue': '0px 4px 10px 0px rgba(180, 184, 201, 0.40)',
'nav': '0px -6px 10px 0px rgba(168, 178, 198, 0.45);',
'strong': '0px 8px 20px 0px rgba(132, 150, 185, 0.45)',
'blurback': '0px 20px 10px 0px rgba(216, 231, 249, 0.25)',
},
},
},
plugins: [],
future: {
hoverOnlyWhenSupported: true,
},
mode: "jit",
};