forked from PhantomOfLINUX/POL_Front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
157 lines (156 loc) · 3.96 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
blue: {
300: "#7ca6f3",
400: "#5089ef",
500: "#246beb", // normal
600: "#1d56bc", // hover
700: "#16408d", // pressed
},
gray: {
0: "#ffffff",
50: "#f8f8f8",
100: "#f0f0f0",
200: "#e4e4e4", // disabled
300: "#dbdbdb", // 콘텐츠 테두리
400: "#c6c6c6",
500: "#8e8e8e", // 텍스트-disabled
600: "#717171", // 입력창 기본
700: "#555555", // body
800: "#2d2d2d",
900: "#1d1d1d", // title
1000: "#000000",
},
danger: {
// 900
50: "#FDF2F3",
100: "#FBD6D8",
200: "#F5A3A8",
300: "#F1747C",
400: "#EC4651",
500: "#EB003B", // base
600: "#D50136", //text
700: "#8B0E16",
800: "#5C0A0F",
},
info: {
50: "#e9f0ff",
100: "#d4e1ff",
500: "#2768ff",
600: "#1f54cc",
},
success: {
5: "#EEF7F0",
10: "#CEE9D4",
20: "#B2DCBB",
30: "#8CCA99",
40: "#33A14B",
50: "#008A1E",
70: "#005312",
80: "#00370C",
90: "#002207",
},
"thema-color": "#2D347F",
"inputBorder-color": "#90929E",
"vaild-color": "#E7322D",
"description-color": "#21214C",
"socialBorder-color": "#4E5968",
red: "#D1180B",
"SelectBorder-color": "#90929E",
"problemStageLi-color": "#D1D5DB",
"disabled-color": "#D9D9D9",
"OpaqueBackground-color": "rgba(0, 0, 0, 0.3)",
},
keyframes: {
shake: {
"0%, 100%": { transform: "translateX(0px)" },
"50%": { transform: "translateX(-4px)" },
},
},
animation: {
shake: "shake 150ms 4 linear",
},
fontWeight: {
thin: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
extrabold: "800",
black: "900",
},
fontFamily: {
default: ["SCoreDream", "sans-serif"],
SCoreDream: ["SCoreDream", "sans-serif"],
},
minHeight: {
"min-height": "25rem",
},
minWidth: {
"XtermQuestion-width": "450px",
},
height: {
"1/12": "8.33%",
"2/12": "16.66%",
"3/12": "25%",
"4/12": "33.33%",
"5/12": "41.66%",
"6/12": "50%",
"7/12": "58.33%",
"8/12": "66.66%",
"9/12": "75%",
"10/12": "83.33%",
"11/12": "91.66%",
"social-height": "6.125rem",
"problemStage-height": "50rem",
},
width: {
"1/12": "8.33%",
"2/12": "16.66%",
"3/12": "25%",
"4/12": "33.33%",
"5/12": "41.66%",
"6/12": "50%",
"7/12": "58.33%",
"8/12": "66.66%",
"9/12": "75%",
"10/12": "83.33%",
"11/12": "91.66%",
"problemStage-width": "5.75rem",
"problemStage-isCompleted": "5.5rem",
"problemStage-title": "11.75rem",
"problemStage-info": "21.25rem",
},
borderRadius: {
"rounded-1": "1px",
"rounded-2": "2px",
"rounded-3": "3px",
"rounded-4": "4px",
"rounded-5": "5px",
"rounded-6": "6px",
"rounded-7": "7px",
"rounded-8": "8px",
"rounded-9": "9px",
"rounded-10": "10px",
"problemStage-selected-radius": "4px",
},
borderWidth: {
"problemStageLi-borderWidth": "1px",
2: "2px",
3: "3px",
},
},
},
plugins: [],
};