-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
79 lines (78 loc) · 1.73 KB
/
tailwind.config.ts
File metadata and controls
79 lines (78 loc) · 1.73 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
69
70
71
72
73
74
75
76
77
78
79
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/shared/**/*.{js,ts,jsx,tsx,mdx}',
'./src/features/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-red-to-blue':
'linear-gradient(to bottom, rgba(48, 97, 140, 0.5) 50%, rgba(191, 94, 112, 0.7) 70%)',
},
colors: {
black: {
'333': '#333',
'444': '#444',
'555': '#555',
'666': '#666',
'777': '#777',
'888': '#888',
'999': '#999',
AAA: '#aaa',
BBB: '#bbb',
CCC: '#ccc',
DDD: '#ddd',
EEE: '#eee',
FFF: '#fff',
'10': '#f1f1f1',
'20': '#e3e3e3',
'30': '#d9d9d9',
'40': '#9C9C9C',
'50': '#353F40',
'60': '#343631',
},
purple: {
'10': '#BABCD9',
},
pink: {
'10': '#F2A7A0',
'20': '#BF5E70',
},
yellow: {
'10': '#F2BE22',
},
blue: {
'10': '#30618C',
'20': '#3450C2',
},
green: {
'10': '#3F7E8C',
},
red: {
'10': '#BF0426',
},
},
boxShadow: {
header: '0 1px 4px rgba(0, 0, 0, 0.2)',
dialog: '2px 2px 4px rgba(0, 0, 0, 0.25)',
},
},
fontFamily: {
Pretendard: ['Pretendard', 'sans-serif'],
},
fontWeight: {
thin: '100',
extralight: '200',
light: '300',
regular: '400',
medium: '500',
semibold: '600',
bold: '700',
extrabold: '800',
black: '900',
},
},
};
export default config;