-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
64 lines (63 loc) · 1.36 KB
/
tailwind.config.ts
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
import { type Config } from "tailwindcss";
export default {
content: [
"{routes,islands,components}/**/*.{ts,tsx}",
],
theme: {
fontFamily: {
"sans": [
'"Pretendard Variable"',
"Pretendard",
"-apple-system",
"BlinkMacSystemFont",
"system-ui",
"Roboto",
'"Helvetica Neue"',
'"Segoe UI"',
'"Apple SD Gothic Neo"',
'"Noto Sans KR"',
'"Malgun Gothic"',
"sans-serif",
],
"display": [
"Onest",
"-apple-system",
"BlinkMacSystemFont",
"system-ui",
"Roboto",
'"Helvetica Neue"',
'"Segoe UI"',
'"Apple SD Gothic Neo"',
'"Noto Sans KR"',
'"Malgun Gothic"',
"sans-serif",
],
},
extend: {
colors: {
"brand": {
50: "#EBEEFF",
100: "#DBE1FF",
200: "#B3BFFF",
300: "#8FA2FF",
400: "#6B84FF",
500: "#4262FF",
600: "#1F44FF",
700: "#0024D6",
800: "#00188F",
900: "#000C47",
950: "#000624",
},
"brand-dark": {
50: "#1B255B",
100: "#1D296B",
200: "#213495",
300: "#243CBA",
400: "#2746DF",
500: "#2B4FFF",
600: "#2E59FF",
},
},
},
},
} satisfies Config;