generated from Medici-Mansion/basic-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
75 lines (73 loc) · 1.17 KB
/
theme.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
/** @type */
const theme = {
fontFamily: {
pretendard: "Pretendard-Regular",
},
fontSize: {
// HEAD
"head1-sb48": 48,
"head-sb24": 24,
"head-sb21": 21,
"head-sb16": 16,
"head5-sb16": 16,
"head-sb14": 14,
"head-sb12": 12,
// // BODY
"body-b12": [
12,
{
fontWeight: 700,
},
],
"body-b14": [
14,
{
fontWeight: 700,
},
],
"body4-m16": [
16,
{
fontWeight: 500,
},
],
"body-m14": [
14,
{
fontWeight: 500,
},
],
"body-m12": [
12,
{
fontWeight: 500,
},
],
},
colors: {
gray: {
600: "#121212",
500: "#1C1C1C",
400: "#353434",
300: "#595959",
200: "#959595",
100: "#D5D5D5",
},
system: {
red: "#FF4C4C",
orange: "#FF743E",
yellow: "#FFED4E",
green: "#00C27C",
blue: "#397DFF",
indigo: "#142759",
purple: "#8940FF",
},
transparent: {
80: "rgba(18,18,18,0.8)",
60: "rgba(0,0,0,0.6)",
0: "rgba(0,0,0,0)",
},
black: "#000000",
},
};
module.exports = { theme };