-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
101 lines (101 loc) · 2.28 KB
/
tailwind.config.js
File metadata and controls
101 lines (101 loc) · 2.28 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/** @type {import('tailwindcss').Config} */
module.exports = {
// Tailwind의 class이름이 포함된 파일에 대한 경로를 구성하는 부분을 추가합니다.
// src경로 내부에 자바스크립트, 타입스크립트, jsx를 리턴하는 파일들을 모두 작성 해줍니다.
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
teal: {
0: "#f3fffb",
1: "#c3fae8",
2: "#96f2d7",
3: "#63e6be",
4: "#38d9a9",
5: "#20c997",
6: "#12b886",
7: "#0ca678",
8: "#099268",
9: "#087f5b",
},
gray: {
0: "#f8f9fa",
1: "#f1f3f5",
2: "#e9ecef",
3: "#dee2e6",
4: "#ced4da",
5: "#adb5bd",
6: "#868e96",
7: "#495057",
8: "#343a40",
9: "#212529",
},
red: {
0: "#fff5f5",
1: "#ffe3e3",
2: "#ffc9c9",
3: "#ffa8a8",
4: "#ff8787",
5: "#ff6b6b",
6: "#fa5252",
7: "#f03e3e",
8: "#e03131",
9: "#c92a2a",
},
primary: {
1: "#12b886",
2: "#20c997",
},
accent: {
1: "#121212",
2: "#4a4a4a",
3: "#898989",
4: "silver",
},
destructive: {
1: "#ff6b6b",
2: "#ff8787",
},
border: {
1: "#343a40",
2: "#adb5bd",
3: "#dee2e6",
4: "#f1f3f5",
},
text: {
1: "#212529",
2: "#495057",
3: "#868e96",
4: "#ced4da",
},
bg: {
page: {
1: "#f8f9fa",
2: "#fff",
},
element: {
1: "#fff",
2: "#f8f9fa",
3: "#e9ecef",
4: "#dee2e6",
5: "#212529",
6: "#343a40",
7: "#fafafa",
8: "#fbfdfc",
},
invert: "#1e1e1e",
tag: "#f8f9fa",
},
background: {
1: "#fff",
2: "#f5f5f5",
3: "#ebebeb",
4: "#e0e0e0",
invert: "#212121",
altbase: "#f5f5f5",
},
},
},
},
plugins: [],
};