This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
82 lines (82 loc) · 1.85 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
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
74
75
76
77
78
79
80
81
82
/* eslint-disable */
/** @type {import('tailwindcss').Config} */
import konstaConfig from "konsta/config";
export default konstaConfig({
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
konsta: {
colors: {
green: "#4CD963",
},
},
daisyui: {
themes: ['light'],
},
theme: {
extend: {
colors: {
menuBackground: "#E0E0E0",
accentBlue: "#007AFF",
accentBlueHover: "#005CC1",
blankAlert: "rgba(0,0,0,0.015)",
emptyBackground: "#F2F2F7",
tabUnselected: "#999999",
tabHovered: "#7B7B7B",
border: "rgba(198,198,200,0.6)",
red: "#FF3B30",
redHover: "#FF0E00",
green: "#4CD963",
charMsgBubble: "#E6E5EB",
separator: "#C6C6C8",
},
fontSize: {
"10p": "10px",
"11p": "11px",
"12p": "12px",
"13p": "13px",
"14p": "14px",
"15p": "15px",
"16p": "16px",
"17p": "17px",
"18p": "18px",
"20p": "20px",
"24p": "24px",
"25p": "25px",
"34p": "34px",
"heading-1": ["36px", "41px"],
"heading-4": "18px",
lg: ["18px", "22px"],
body: ["16px", "22px"],
sm: "14px",
},
screens: {
phone: "500px",
tablet: "926px",
cardSplit: "1100px",
desktop: "1276px",
},
zIndex: {
999: 999,
},
fontFamily: {
sans: [
"Pretendard",
"-apple-system",
"BlinkMacSystemFont",
"Apple SD Gothic Neo",
"Roboto",
"Noto Sans KR",
"Segoe UI",
"Malgun Gothic",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"sans",
],
},
},
},
plugins: [
require('daisyui'),
require('@tailwindcss/typography'),
],
});