@sereintech/tokens 0.0.1

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 +6 -0
  2. package/index.js +24 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # @sereintech/tokens
2
+
3
+ Design tokens for [Serein](https://sereintech.com): colours, semantic states
4
+ and type families.
5
+
6
+ Part of the Serein agent platform. Pre-alpha.
package/index.js ADDED
@@ -0,0 +1,24 @@
1
+ export const colors = {
2
+ onyx: "#14131A",
3
+ slick: "#1D1B26",
4
+ chalk: "#F4F1F6",
5
+ haze: "#A49FB0",
6
+ mint: "#7FE0B0",
7
+ lilac: "#B79CF0",
8
+ blush: "#F4A8C0",
9
+ rose: "#F0587E",
10
+ };
11
+
12
+ export const state = {
13
+ verified: colors.mint,
14
+ needsApproval: colors.rose,
15
+ failed: colors.rose,
16
+ running: colors.lilac,
17
+ queued: colors.haze,
18
+ };
19
+
20
+ export const fonts = {
21
+ display: "Newsreader, serif",
22
+ ui: "Archivo, system-ui, sans-serif",
23
+ mono: "'JetBrains Mono', monospace",
24
+ };
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@sereintech/tokens",
3
+ "version": "0.0.1",
4
+ "description": "Design tokens for Serein",
5
+ "license": "MIT",
6
+ "main": "index.js",
7
+ "files": ["index.js", "README.md"],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/sereintech/serein.git"
11
+ },
12
+ "homepage": "https://sereintech.com",
13
+ "publishConfig": { "access": "public" }
14
+ }