Skip to content

Commit 00b3dd4

Browse files
author
Felix Hennig
committed
WIP
1 parent 4185d81 commit 00b3dd4

20 files changed

+43
-1
lines changed

package-lock.json

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,8 @@
6161
"typeface-titillium-web": "1.1.13",
6262
"vinyl-buffer": "^1.0",
6363
"vinyl-fs": "^3.0"
64+
},
65+
"dependencies": {
66+
"@ibm/plex": "^6.4.1"
6467
}
6568
}

src/css/doc.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
.doc h6 {
3434
color: var(--heading-font-color);
3535
font-weight: var(--heading-font-weight);
36+
font-family: 'IBM Plex Mono', sans-serif;
3637
hyphens: none;
3738
line-height: 1.3;
3839
margin: 1rem 0 0;

src/css/site.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import "typeface-roboto-mono.css";
22
@import "typeface-titillium-web.css";
3+
/** @import "typeface-ibm-plex-mono.css"; **/
34
@import "vars.css";
45
@import "base.css";
56
@import "body.css";

src/css/typeface-ibm-plex-mono.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@font-face {
2+
font-family: "IBM Plex Mono";
3+
font-style: normal;
4+
font-weight: 400;
5+
src:
6+
url(~@ibm/plex/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Regular.woff2) format("woff2"),
7+
url(~@ibm/plex/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Regular.woff) format("woff");
8+
}
9+
10+
@font-face {
11+
font-family: "IBM Plex Mono";
12+
font-style: normal;
13+
font-weight: 600;
14+
src:
15+
url(~@ibm/plex/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-SemiBold.woff2) format("woff2"),
16+
url(~@ibm/plex/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-SemiBold.woff) format("woff");
17+
}

src/css/vars.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
--doc-margin: 0 auto;
8080
--doc-margin--desktop: 0 1rem;
8181
--heading-font-color: var(--color-jet-80);
82-
--heading-font-weight: normal;
82+
--heading-font-weight: 600;
8383
--alt-heading-font-weight: var(--body-font-weight-bold);
8484
--section-divider-color: var(--panel-border-color);
8585
--link-font-color: #1880bd;

src/webfonts/IBMPlexMono-Bold.ttf

-133 KB
Binary file not shown.
-139 KB
Binary file not shown.
-131 KB
Binary file not shown.
-139 KB
Binary file not shown.

src/webfonts/IBMPlexMono-Italic.ttf

-139 KB
Binary file not shown.

src/webfonts/IBMPlexMono-Light.ttf

-130 KB
Binary file not shown.
-138 KB
Binary file not shown.

src/webfonts/IBMPlexMono-Medium.ttf

-132 KB
Binary file not shown.
-139 KB
Binary file not shown.

src/webfonts/IBMPlexMono-Regular.ttf

-131 KB
Binary file not shown.

src/webfonts/IBMPlexMono-SemiBold.ttf

-135 KB
Binary file not shown.
-142 KB
Binary file not shown.

src/webfonts/IBMPlexMono-Thin.ttf

-133 KB
Binary file not shown.
-141 KB
Binary file not shown.

0 commit comments

Comments
 (0)