@nanobpm/nano-ide-theme-nord 1.0.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 ADDED
@@ -0,0 +1,15 @@
1
+ # @nanobpm/nano-ide-theme-nord
2
+
3
+ Nord theme pack for the Nano RAD console — an arctic, north-bluish colour
4
+ palette (https://www.nordtheme.com), as two themes:
5
+
6
+ - **Nord Dark** — Polar Night surfaces with Frost accents.
7
+ - **Nord Light** — Snow Storm surfaces with the same Frost accents.
8
+
9
+ Install from the console's **Extensions** marketplace (or
10
+ `npm install` it into `<workspace>/extensions/`), then pick the theme under
11
+ **Config → Appearance** or apply it straight from the Extensions view.
12
+
13
+ A theme pack is pure data: the `nano-ide.ext.json` manifest maps the console's
14
+ design-token vocabulary (`app`, `panel`, `accent`, …) to CSS colours. No code
15
+ runs, no toolchain is required, and no trust approval is needed.
@@ -0,0 +1,57 @@
1
+ {
2
+ "id": "theme-nord",
3
+ "kind": "theme",
4
+ "displayName": "Nord",
5
+ "themes": [
6
+ {
7
+ "id": "nord-dark",
8
+ "label": "Nord Dark",
9
+ "appearance": "dark",
10
+ "tokens": {
11
+ "app": "#2e3440",
12
+ "panel": "#2b303b",
13
+ "raised": "#3b4252",
14
+ "inset": "#272c36",
15
+ "hover": "#434c5e",
16
+ "edge": "#434c5e",
17
+ "edgeStrong": "#4c566a",
18
+ "text": "#eceff4",
19
+ "textMuted": "#d8dee9",
20
+ "textFaint": "#7b88a1",
21
+ "accent": "#88c0d0",
22
+ "accentStrong": "#8fbcbb",
23
+ "accent2": "#b48ead",
24
+ "onAccent": "#2e3440",
25
+ "ok": "#a3be8c",
26
+ "warn": "#ebcb8b",
27
+ "danger": "#bf616a",
28
+ "info": "#81a1c1"
29
+ }
30
+ },
31
+ {
32
+ "id": "nord-light",
33
+ "label": "Nord Light",
34
+ "appearance": "light",
35
+ "tokens": {
36
+ "app": "#eceff4",
37
+ "panel": "#e5e9f0",
38
+ "raised": "#ffffff",
39
+ "inset": "#e5e9f0",
40
+ "hover": "#d8dee9",
41
+ "edge": "#d8dee9",
42
+ "edgeStrong": "#aeb8c9",
43
+ "text": "#2e3440",
44
+ "textMuted": "#4c566a",
45
+ "textFaint": "#7b88a1",
46
+ "accent": "#5e81ac",
47
+ "accentStrong": "#4f6f96",
48
+ "accent2": "#b48ead",
49
+ "onAccent": "#ffffff",
50
+ "ok": "#6a8f52",
51
+ "warn": "#b08b2e",
52
+ "danger": "#bf616a",
53
+ "info": "#5e81ac"
54
+ }
55
+ }
56
+ ]
57
+ }
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@nanobpm/nano-ide-theme-nord",
3
+ "version": "1.0.0",
4
+ "description": "Nord theme pack for the Nano RAD console: arctic, north-bluish dark and light themes built on the Nord palette.",
5
+ "license": "Apache-2.0",
6
+ "keywords": ["nano-ide-ext", "nano-ide-theme", "nanobpm"],
7
+ "publishConfig": { "access": "public" },
8
+ "repository": { "type": "git", "url": "https://github.com/jwulf/nano-ide.git", "directory": "packages/theme-nord" },
9
+ "files": ["nano-ide.ext.json"]
10
+ }