-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtypography.scss
75 lines (71 loc) · 1.54 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
// Modified Carbon type system tokens
@import 'carbon-components/scss/globals/scss/vendor/@carbon/elements/scss/type/_styles.scss';
// Body
.body-compact-01 {
@include type-style('body-short-01');
}
.body-compact-02 {
@include type-style('body-short-02');
}
.body-01 {
@include type-style('body-long-01');
}
.body-02 {
@include type-style('body-long-02');
}
// Utility
.label-01 {
@include type-style('label-01');
}
.label-02 {
@include type-style('label-02');
}
.helper-text-01 {
@include type-style('helper-text-01');
}
.helper-text-02 {
@include type-style('helper-text-02');
}
// Fixed heading
.heading-compact-01 {
@include type-style('productive-heading-01');
}
.heading-compact-02 {
@include type-style('productive-heading-02');
}
.heading-01 {
@include type-style('expressive-heading-01');
}
.heading-02 {
@include type-style('expressive-heading-02');
}
.heading-03 {
@include type-style('expressive-heading-03');
@apply font-semibold;
}
// Fluid
.fluid-heading-03 {
@include type-style('expressive-heading-03', true);
@apply font-serif;
font-weight: 700 !important;
}
.fluid-heading-04 {
@include type-style('expressive-heading-04', true);
@apply font-serif;
font-weight: 700 !important;
}
.fluid-heading-05 {
@include type-style('expressive-heading-05', true);
@apply font-serif;
font-weight: 700 !important;
}
.fluid-display-01 {
@include type-style('display-01', true);
@apply font-serif;
font-weight: 700 !important;
}
.fluid-display-03 {
@include type-style('display-03', true);
@apply font-serif;
font-weight: 700 !important;
}