-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 1.35 KB
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 1.35 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {
backgroundImage: {
"custom-gradation":
"linear-gradient(91deg, #FF0068 0%, #FF4D27 51%, #FF7A01 73%, #FFD600 100%)",
"custom-gradation-180":
"linear-gradient(180deg, #FF0068 0%, #FF4D27 71%, #FF7A01 100%)",
"custom-gradation-180-2":
"linear-gradient(180deg, #EF366A 0%, #FFE76C 113.16%)",
},
colors: {
"custom-pink": "#FF0069",
"custom-orange": "#FF7A00",
"custom-yellow": "#FFD600",
"custom-gray-100": "#545454",
"custom-gray-200": "#898989",
"custom-gray-300": "#C1C1C1",
"custom-gray-400": "#D9D9D9",
},
fontFamily: {
inter: ["Noto Sans KR", "sans-serif"],
},
boxShadow: {
"custom-box-shadow": "0px 0px 10px 0px rgba(0, 0, 0, 0.25)",
"custom-box-shadow-pink": "0px 0px 10px 0px #FF0069",
"custom-button-shadow": "0px 0px 4px 0px rgba(0, 0, 0, 0.25)",
},
screens: {
tablet: "480px",
desktop: "1280px",
},
},
},
plugins: ["./src/styles/index.css", require("tailwind-scrollbar-hide")], // 'index.css'에 @layer utilities로 선언된 클래스를 사용할 수 있도록 설정
// 스크롤바 숨기는 tailwind plugins 설치
};