-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 939 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 939 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all of your component files.
content: ["./app/**/*.{js,ts,tsx,jsx}", "./components/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
main: "#6C4DFF",
sub: "#DFD8FD",
gray50: "#FAFAFA",
gray100: "#F5F5F5",
gray200: "#EEEEEE",
gray300: "#E0E0E0",
gray400: "#BDBDBD",
gray500: "#9E9E9E",
gray600: "#707070",
gray700: "#424242",
gray800: "#212121",
black: "#111111",
},
fontFamily: {
pretendard: ["Pretendard"],
"pretendard-bold": ["Pretendard-Bold"],
"pretendard-semibold": ["Pretendard-SemiBold"],
"pretendard-medium": ["Pretendard-Medium"],
"pretendard-light": ["Pretendard-Light"],
},
},
},
plugins: [],
};