This repository was archived by the owner on Apr 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathfonts.py
More file actions
94 lines (82 loc) · 1.97 KB
/
fonts.py
File metadata and controls
94 lines (82 loc) · 1.97 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
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
83
84
85
86
87
88
89
90
91
92
93
94
# FONT STYLES
font_family = "Instrument Sans"
small = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "500",
"font-size": "14px",
"line-height": "20px",
"letter-spacing": "-0.0125em",
}
small_semibold = {
"font-family": font_family,
"font-size": "14px",
"font-style": "normal",
"font-weight": "600",
"line-height": "20px",
"letter-spacing": "-0.0125em",
}
base = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "500",
"font-size": ["14px", "16px"],
"line-height": ["20px", "24px"],
"letter-spacing": "-0.015em",
}
base_semibold = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "600",
"font-size": "16px",
"line-height": "24px",
"letter-spacing": "-0.015em",
}
medium = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "500",
"font-size": "18px",
"line-height": "26px",
"letter-spacing": "-0.015em",
}
medium_leading_5 = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "500",
"font-size": "18px",
"line-height": "20px",
"letter-spacing": "-0.015em",
}
large = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "600",
"font-size": "24px",
"line-height": "32px",
"letter-spacing": "-0.015em",
}
x_large = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "600",
"font-size": ["24px", "32px"],
"line-height": ["32px", "40px"],
"letter-spacing": ["-0.02em", "-0.03em"],
}
xx_large = {
"font-family": font_family,
"font-style": "normal",
"font-weight": "600",
"font-size": ["32px", "56px"],
"line-height": ["40px", "64px"],
"letter-spacing": ["-0.03em", "-0.05em"],
}
code = {
"font-family": "JetBrains Mono",
"font-size": "14px",
"font-style": "normal",
"font-weight": "400",
"line-height": "24px",
"letter-spacing": "-0.015em",
}