@quiple/aster 1.0.2 → 1.0.3
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 +4 -4
- package/fonts/webfonts/Astr-ExtraLight.woff2 +0 -0
- package/fonts/webfonts/Astr-Light.woff2 +0 -0
- package/fonts/webfonts/Astr-Medium.woff2 +0 -0
- package/fonts/webfonts/Astr-Regular.woff2 +0 -0
- package/fonts/webfonts/Astr-SemiBold.woff2 +0 -0
- package/fonts/webfonts/AstrDisplay-ExtraLight.woff2 +0 -0
- package/fonts/webfonts/AstrDisplay-Light.woff2 +0 -0
- package/fonts/webfonts/AstrDisplay-Medium.woff2 +0 -0
- package/fonts/webfonts/AstrDisplay-Regular.woff2 +0 -0
- package/fonts/webfonts/AstrDisplay-SemiBold.woff2 +0 -0
- package/fonts/webfonts/{Aster[opsz,wght].woff2 → Astr[opsz,wght].woff2} +0 -0
- package/fonts/webfonts/astr.css +7 -0
- package/fonts/webfonts/static.css +20 -20
- package/package.json +8 -8
- package/fonts/webfonts/Aster-ExtraLight.woff2 +0 -0
- package/fonts/webfonts/Aster-Light.woff2 +0 -0
- package/fonts/webfonts/Aster-Medium.woff2 +0 -0
- package/fonts/webfonts/Aster-Regular.woff2 +0 -0
- package/fonts/webfonts/Aster-SemiBold.woff2 +0 -0
- package/fonts/webfonts/AsterDisplay-ExtraLight.woff2 +0 -0
- package/fonts/webfonts/AsterDisplay-Light.woff2 +0 -0
- package/fonts/webfonts/AsterDisplay-Medium.woff2 +0 -0
- package/fonts/webfonts/AsterDisplay-Regular.woff2 +0 -0
- package/fonts/webfonts/AsterDisplay-SemiBold.woff2 +0 -0
- package/fonts/webfonts/aster.css +0 -7
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# Astr
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Astr is a combined typeface built from [Asta Sans](https://github.com/42dot/Asta-Sans)
|
|
6
6
|
and [Inter](https://github.com/rsms/inter). Asta Sans provides the base font,
|
|
7
7
|
while Inter is overlaid at matching weight and optical-size coordinates.
|
|
8
8
|
|
|
9
|
-
Where both projects contain the same glyph or OpenType functionality,
|
|
9
|
+
Where both projects contain the same glyph or OpenType functionality, Astr
|
|
10
10
|
uses Inter's outlines, kerning, classes, and feature definitions. Glyphs and
|
|
11
11
|
OpenType features that exist only in Asta Sans are retained.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,79 +1,79 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: "
|
|
2
|
+
font-family: "Astr";
|
|
3
3
|
font-style: normal;
|
|
4
4
|
font-weight: 200;
|
|
5
5
|
font-display: swap;
|
|
6
|
-
src: url("./
|
|
6
|
+
src: url("./Astr-ExtraLight.woff2") format("woff2");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
@font-face {
|
|
10
|
-
font-family: "
|
|
10
|
+
font-family: "Astr";
|
|
11
11
|
font-style: normal;
|
|
12
12
|
font-weight: 300;
|
|
13
13
|
font-display: swap;
|
|
14
|
-
src: url("./
|
|
14
|
+
src: url("./Astr-Light.woff2") format("woff2");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
@font-face {
|
|
18
|
-
font-family: "
|
|
18
|
+
font-family: "Astr";
|
|
19
19
|
font-style: normal;
|
|
20
20
|
font-weight: 400;
|
|
21
21
|
font-display: swap;
|
|
22
|
-
src: url("./
|
|
22
|
+
src: url("./Astr-Regular.woff2") format("woff2");
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
@font-face {
|
|
26
|
-
font-family: "
|
|
26
|
+
font-family: "Astr";
|
|
27
27
|
font-style: normal;
|
|
28
28
|
font-weight: 500;
|
|
29
29
|
font-display: swap;
|
|
30
|
-
src: url("./
|
|
30
|
+
src: url("./Astr-Medium.woff2") format("woff2");
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
@font-face {
|
|
34
|
-
font-family: "
|
|
34
|
+
font-family: "Astr";
|
|
35
35
|
font-style: normal;
|
|
36
36
|
font-weight: 600;
|
|
37
37
|
font-display: swap;
|
|
38
|
-
src: url("./
|
|
38
|
+
src: url("./Astr-SemiBold.woff2") format("woff2");
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
@font-face {
|
|
42
|
-
font-family: "
|
|
42
|
+
font-family: "Astr Display";
|
|
43
43
|
font-style: normal;
|
|
44
44
|
font-weight: 200;
|
|
45
45
|
font-display: swap;
|
|
46
|
-
src: url("./
|
|
46
|
+
src: url("./AstrDisplay-ExtraLight.woff2") format("woff2");
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
@font-face {
|
|
50
|
-
font-family: "
|
|
50
|
+
font-family: "Astr Display";
|
|
51
51
|
font-style: normal;
|
|
52
52
|
font-weight: 300;
|
|
53
53
|
font-display: swap;
|
|
54
|
-
src: url("./
|
|
54
|
+
src: url("./AstrDisplay-Light.woff2") format("woff2");
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
@font-face {
|
|
58
|
-
font-family: "
|
|
58
|
+
font-family: "Astr Display";
|
|
59
59
|
font-style: normal;
|
|
60
60
|
font-weight: 400;
|
|
61
61
|
font-display: swap;
|
|
62
|
-
src: url("./
|
|
62
|
+
src: url("./AstrDisplay-Regular.woff2") format("woff2");
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
@font-face {
|
|
66
|
-
font-family: "
|
|
66
|
+
font-family: "Astr Display";
|
|
67
67
|
font-style: normal;
|
|
68
68
|
font-weight: 500;
|
|
69
69
|
font-display: swap;
|
|
70
|
-
src: url("./
|
|
70
|
+
src: url("./AstrDisplay-Medium.woff2") format("woff2");
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
@font-face {
|
|
74
|
-
font-family: "
|
|
74
|
+
font-family: "Astr Display";
|
|
75
75
|
font-style: normal;
|
|
76
76
|
font-weight: 600;
|
|
77
77
|
font-display: swap;
|
|
78
|
-
src: url("./
|
|
78
|
+
src: url("./AstrDisplay-SemiBold.woff2") format("woff2");
|
|
79
79
|
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quiple/aster",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Astr webfonts, combining Asta Sans and Inter",
|
|
5
5
|
"license": "OFL-1.1",
|
|
6
6
|
"author": "quiple",
|
|
7
|
-
"homepage": "https://github.com/quiple/
|
|
7
|
+
"homepage": "https://github.com/quiple/astr#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/quiple/
|
|
10
|
+
"url": "git+https://github.com/quiple/astr.git"
|
|
11
11
|
},
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/quiple/
|
|
13
|
+
"url": "https://github.com/quiple/astr/issues"
|
|
14
14
|
},
|
|
15
|
-
"style": "./fonts/webfonts/
|
|
15
|
+
"style": "./fonts/webfonts/astr.css",
|
|
16
16
|
"exports": {
|
|
17
|
-
".": "./fonts/webfonts/
|
|
18
|
-
"./
|
|
17
|
+
".": "./fonts/webfonts/astr.css",
|
|
18
|
+
"./astr.css": "./fonts/webfonts/astr.css",
|
|
19
19
|
"./static.css": "./fonts/webfonts/static.css",
|
|
20
20
|
"./fonts/*": "./fonts/webfonts/*"
|
|
21
21
|
},
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|