@rhavenside/baseline 2.0.4 → 2.0.6

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.
Files changed (3) hide show
  1. package/README.md +5 -9
  2. package/logo.svg +36 -0
  3. package/package.json +4 -2
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Base-Line Design System
2
2
 
3
+ <div align="center">
4
+ <img src="data:image/svg+xml;base64,PHN2ZwogIHdpZHRoPSIzMiIKICBoZWlnaHQ9IjMyIgogIHZpZXdCb3g9IjAgMCAzMiAzMiIKICBmaWxsPSJub25lIgogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKPgogIDxyZWN0IHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgcng9IjQiIGZpbGw9IiMwMjlhZGIiLz4KICA8cGF0aAogICAgZD0iTTggMTJMMTYgOEwyNCAxMlYyMEwxNiAyNEw4IDIwVjEyWiIKICAgIHN0cm9rZT0id2hpdGUiCiAgICBzdHJva2Utd2lkdGg9IjEuNSIKICAgIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIKICAgIHN0cm9rZS1saW5lam9pbj0icm91bmQiCiAgICBmaWxsPSJub25lIgogIC8+CiAgPGxpbmUKICAgIHgxPSIxNiIKICAgIHkxPSI4IgogICAgeDI9IjE2IgogICAgeTI9IjI0IgogICAgc3Ryb2tlPSJ3aGl0ZSIKICAgIHN0cm9rZS13aWR0aD0iMS41IgogICAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIC8+CiAgPGxpbmUKICAgIHgxPSI4IgogICAgeTE9IjEyIgogICAgeDI9IjI0IgogICAgeTI9IjEyIgogICAgc3Ryb2tlPSJ3aGl0ZSIKICAgIHN0cm9rZS13aWR0aD0iMS41IgogICAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIC8+Cjwvc3ZnPgoK" alt="Base-Line Logo" width="64" height="64">
5
+ </div>
6
+
3
7
  A strict, layer-based design system with semantic tokens. Features a custom naming convention and token-based theming system.
4
8
 
5
9
  [![npm version](https://img.shields.io/npm/v/@rhavenside/baseline.svg)](https://www.npmjs.com/package/@rhavenside/baseline)
@@ -457,16 +461,8 @@ Base-Line supports all modern browsers:
457
461
 
458
462
  MIT License - see [LICENSE](LICENSE) file for details.
459
463
 
460
- ## Links
461
-
462
- - [Documentation](https://github.com/rhavenside/base-line)
463
- - [Issues](https://github.com/rhavenside/base-line/issues)
464
464
  - [npm Package](https://www.npmjs.com/package/@rhavenside/baseline)
465
465
 
466
- ## Contributing
467
-
468
- See [CONTRIBUTING.md](CONTRIBUTING.md) for the strict contribution rules.
469
466
 
470
- ---
471
467
 
472
- Built with ❤️ using RFS for responsive typography.
468
+ Built with ❤️
package/logo.svg ADDED
@@ -0,0 +1,36 @@
1
+ <svg
2
+ width="32"
3
+ height="32"
4
+ viewBox="0 0 32 32"
5
+ fill="none"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ >
8
+ <rect width="32" height="32" rx="4" fill="#029adb"/>
9
+ <path
10
+ d="M8 12L16 8L24 12V20L16 24L8 20V12Z"
11
+ stroke="white"
12
+ stroke-width="1.5"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ fill="none"
16
+ />
17
+ <line
18
+ x1="16"
19
+ y1="8"
20
+ x2="16"
21
+ y2="24"
22
+ stroke="white"
23
+ stroke-width="1.5"
24
+ stroke-linecap="round"
25
+ />
26
+ <line
27
+ x1="8"
28
+ y1="12"
29
+ x2="24"
30
+ y2="12"
31
+ stroke="white"
32
+ stroke-width="1.5"
33
+ stroke-linecap="round"
34
+ />
35
+ </svg>
36
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rhavenside/baseline",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "A strict, layer-based design system with semantic tokens",
5
5
  "main": "dist/base-line.css",
6
6
  "module": "dist/js/index.js",
@@ -15,7 +15,9 @@
15
15
  "./fonts/*": "./dist/fonts/*"
16
16
  },
17
17
  "files": [
18
- "dist"
18
+ "dist",
19
+ "logo.svg",
20
+ "README.md"
19
21
  ],
20
22
  "scripts": {
21
23
  "build": "npm run build:css && npm run build:js && npm run copy:fonts",