-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 1.17 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
//custom utiity 정의
const colors = require("./src/utils/colors.js");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./src/index.css"],
theme: {
extend: {
fontSize: {
"vw-1": "1vw",
"vw-2": "2vw",
},
colors: {
primary: {
default: colors.PRIMARY.DEFAULT,
light: colors.PRIMARY.LiGHT,
},
customColor: "#C5B5F7",
customColor2: "#F3F5FF",
customColor3: "#2519B2",
submitColor: "#2519B2",
black1: "#343849",
purple: "#ddd6fe",
btncolor: "#4D39E9",
customGradient: {
start: "#918FFF", // 0% 위치의 색상
midStart: "#5956FF", // 45% 위치의 색상
midEnd: "#3F3CFF", // 55% 위치의 색상
endStart: "#3431FF", // 79% 위치의 색상
end: "#0011FF", // 100% 위치의 색상
},
customGradient2: "linear-gradient(to right, #86fde8, #acb6e5)",
purple2: "#C5B5F7",
},
opacity: {
20: "0.2",
},
gridTemplateColumns: {
"3by5": "3fr 5fr",
},
},
},
variants: {},
plugins: [require("@tailwindcss/aspect-ratio")],
};