@monospaced/set-assets 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,17 +6,13 @@ Runtime assets for Set. Fonts and favicons consumed by sites and apps building o
6
6
 
7
7
  Bundled `.woff2` files in `src/fonts/`:
8
8
 
9
- - `InterVariable.subset.woff2`
10
- - `InterVariable-Italic.subset.woff2`
11
- - `RobotoMono-VariableFont_wght.subset.woff2`
12
- - `RobotoMono-Italic-VariableFont_wght.subset.woff2`
9
+ - `Berkeley Mono Variable.woff2`
13
10
  - `PlaypenSans[wght].subset.woff2`
14
11
  - `FantasqueSansMono-Regular.subset.woff2`
15
12
 
16
13
  Family names exposed by `fonts.css`:
17
14
 
18
- - `InterVariable`
19
- - `Roboto Mono`
15
+ - `Berkeley Mono`
20
16
  - `Playpen Sans`
21
17
  - `Fantasque Sans Mono`
22
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monospaced/set-assets",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "description": "Runtime assets for Set. Fonts and favicons consumed by sites and apps building on the system.",
5
5
  "repository": {
6
6
  "type": "git",
package/src/fonts.css CHANGED
@@ -1,14 +1,5 @@
1
1
  /* stylelint-disable scale-unlimited/declaration-strict-value -- @font-face font-weight is a font-file descriptor not a typographic styling */
2
2
 
3
- @font-face {
4
- font-display: swap;
5
- font-family: "Berkeley Mono";
6
- font-stretch: 60% 100%;
7
- font-style: normal;
8
- font-weight: 100 900;
9
- src: url("./fonts/Berkeley Mono Variable.woff2") format("woff2");
10
- }
11
-
12
3
  @font-face {
13
4
  font-display: swap;
14
5
  font-family: "Berkeley Mono";
@@ -20,19 +11,9 @@
20
11
 
21
12
  @font-face {
22
13
  font-display: swap;
23
- font-family: "Fantasque Sans Mono";
24
- font-style: normal;
25
- font-weight: 400;
26
- size-adjust: 116%;
27
- src: url("./fonts/FantasqueSansMono-Regular.subset.woff2") format("woff2");
28
- }
29
-
30
- @font-face {
31
- descent-override: 42%;
32
- font-display: swap;
33
- font-family: "Playpen Sans";
34
- font-style: normal;
35
- font-weight: 100 800;
36
- size-adjust: 94%;
37
- src: url("./fonts/PlaypenSans[wght].subset.woff2") format("woff2");
14
+ font-family: Recursive;
15
+ font-style: oblique 0deg 15deg;
16
+ font-weight: 300 1000;
17
+ src: url("./fonts/Recursive_VF_1.085--subset-GF_latin_basic.woff2")
18
+ format("woff2");
38
19
  }