forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typography.scss
119 lines (119 loc) · 1.86 KB
/
typography.scss
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
$font-families: (
sans: (
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Helvetica Neue',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Meiryo UI',
Arial,
sans-serif,
),
mono: (
Menlo,
Monaco,
Consolas,
'Liberation Mono',
'Courier New',
monospace,
),
);
$font-scales: (
hero: (
font-size: 48,
font-weight: 800,
letter-spacing: 0,
line-height: 64,
),
h1: (
font-size: 32,
font-weight: 700,
letter-spacing: 0,
line-height: 40,
),
h2: (
font-size: 24,
font-weight: 700,
letter-spacing: 0,
line-height: 32,
),
h3: (
font-size: 20,
font-weight: 700,
letter-spacing: 0,
line-height: 28,
),
h4: (
font-size: 16,
font-weight: 700,
letter-spacing: 0,
line-height: 24,
),
h5: (
font-size: 14,
font-weight: 700,
letter-spacing: 0,
line-height: 20,
),
p1: (
font-size: 16,
font-weight: 400,
letter-spacing: 0,
line-height: 24,
),
p1m: (
font-size: 16,
font-weight: 500,
letter-spacing: 0,
line-height: 24,
),
p1b: (
font-size: 16,
font-weight: 700,
letter-spacing: 0,
line-height: 24,
),
p2: (
font-size: 14,
font-weight: 400,
letter-spacing: 0,
line-height: 20,
),
p2m: (
font-size: 14,
font-weight: 500,
letter-spacing: 0,
line-height: 20,
),
p2b: (
font-size: 14,
font-weight: 700,
letter-spacing: 0,
line-height: 20,
),
c1: (
font-size: 12,
font-weight: 400,
letter-spacing: 0,
line-height: 16,
),
c2: (
font-size: 12,
font-weight: 700,
letter-spacing: 0,
line-height: 16,
),
micro: (
font-size: 10,
font-weight: 700,
letter-spacing: 0,
line-height: 12,
),
);