-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
73 lines (71 loc) · 2.02 KB
/
Copy pathtailwind.config.js
File metadata and controls
73 lines (71 loc) · 2.02 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
"main-bg": "url('/assets/img/mainBackground.png')",
},
colors: {
mainText: "#333333",
subText: "#666666",
// login
loginBtnBg: "#c3c3c3",
loginBtnText: "#ffffff",
kakao: "#FEE500", //카카오 배경색
rankText: "#00738C",
board: "#FFFFFF", //보드 배경색(화이트)
subBoard: "whitesmoke", //보드 위의 서브 보드(회색)
//사이드바
notActiveText: "#00738C",
activeText: "#FFB800", //사이드바 테두리도 동일(주황)
// 방 컨테이너
roomContainer: " ",
roomBoxshadow: "",
roomTitle: "",
roomContent: "",
// 인게임
userContainer: "#E2F2FD",
timerContainer: "#E2F2FD",
timerText: "black",
timerEmergency: "red",
inGame: "#ff5454",
waitingGame: "#91f74f",
},
fontFamily: {
titleFont: ["Schoolbell", "sans-serif"],
mainFont: ["Montserrat", "sans-serif"],
},
fontWeight: {
thinW: 300,
mainW: 400,
titleW: 700,
},
screens: {
max_950px: { max: "1020px" }, // Custom breakpoint
},
keyframes: {
underline: {
"0%": { width: "0%" },
"100%": { width: "100%" },
},
"circle-draw": {
"0%": { transform: "scale(0)" },
"50%": { transform: "scale(1.1)" },
"100%": { transform: "scale(1)" },
},
"text-grow": {
"0%": { transform: "scale(1)" },
"50%": { transform: "scale(1.5)" },
"100%": { transform: "scale(1)" },
},
},
animation: {
underline: "underline 3s forwards", // Adjust duration as necessary
"circle-draw": "circle-draw 3s ease",
"text-grow": "text-grow 3s ease",
},
},
},
plugins: [],
};