@gjsify/adwaita-fonts 0.1.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/400-italic.css ADDED
@@ -0,0 +1,9 @@
1
+ /* Adwaita Sans — Italic 400 */
2
+ /* Source: refs/adwaita-fonts (SIL OFL 1.1, GNOME contributors) */
3
+ @font-face {
4
+ font-family: 'Adwaita Sans';
5
+ font-style: italic;
6
+ font-display: swap;
7
+ font-weight: 400;
8
+ src: url('./files/adwaita-sans-400-italic.ttf') format('truetype');
9
+ }
package/400.css ADDED
@@ -0,0 +1,9 @@
1
+ /* Adwaita Sans — Regular 400 */
2
+ /* Source: refs/adwaita-fonts (SIL OFL 1.1, GNOME contributors) */
3
+ @font-face {
4
+ font-family: 'Adwaita Sans';
5
+ font-style: normal;
6
+ font-display: swap;
7
+ font-weight: 400;
8
+ src: url('./files/adwaita-sans-400.ttf') format('truetype');
9
+ }
Binary file
package/index.css ADDED
@@ -0,0 +1 @@
1
+ @import './400.css';
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@gjsify/adwaita-fonts",
3
+ "version": "0.1.3",
4
+ "description": "Adwaita Sans font package for browser targets (fontsource-style)",
5
+ "type": "module",
6
+ "main": "index.css",
7
+ "types": "index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.ts",
11
+ "default": "./index.css"
12
+ },
13
+ "./400.css": "./400.css",
14
+ "./400-italic.css": "./400-italic.css",
15
+ "./files/*": "./files/*"
16
+ },
17
+ "license": "OFL-1.1",
18
+ "files": [
19
+ "*.css",
20
+ "files"
21
+ ]
22
+ }