@refrakt-md/lumina 0.24.6 → 0.25.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.
- package/package.json +7 -5
- package/presets.json +15 -0
- package/styles/runes/steps.css +2 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refrakt-md/lumina",
|
|
3
3
|
"description": "Lumina theme for refrakt.md — design tokens, CSS, identity transform, and layout configs",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.25.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"default": "./dist/transform.js"
|
|
23
23
|
},
|
|
24
24
|
"./manifest": "./manifest.json",
|
|
25
|
+
"./presets.json": "./presets.json",
|
|
25
26
|
"./contracts": "./contracts/structures.json",
|
|
26
27
|
"./layouts": {
|
|
27
28
|
"types": "./dist/layouts.d.ts",
|
|
@@ -75,6 +76,7 @@
|
|
|
75
76
|
"styles",
|
|
76
77
|
"contracts",
|
|
77
78
|
"manifest.json",
|
|
79
|
+
"presets.json",
|
|
78
80
|
"layouts",
|
|
79
81
|
"svelte",
|
|
80
82
|
"assets"
|
|
@@ -84,10 +86,10 @@
|
|
|
84
86
|
"generate-tokens": "node scripts/generate-tokens.mjs"
|
|
85
87
|
},
|
|
86
88
|
"dependencies": {
|
|
87
|
-
"@refrakt-md/runes": "0.
|
|
88
|
-
"@refrakt-md/skeleton": "0.
|
|
89
|
-
"@refrakt-md/transform": "0.
|
|
90
|
-
"@refrakt-md/types": "0.
|
|
89
|
+
"@refrakt-md/runes": "0.25.1",
|
|
90
|
+
"@refrakt-md/skeleton": "0.25.1",
|
|
91
|
+
"@refrakt-md/transform": "0.25.1",
|
|
92
|
+
"@refrakt-md/types": "0.25.1"
|
|
91
93
|
},
|
|
92
94
|
"devDependencies": {
|
|
93
95
|
"postcss": "^8.4.0"
|
package/presets.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@refrakt-md/lumina",
|
|
3
|
+
"refrakt": ">=0.24 <0.26",
|
|
4
|
+
"presets": [
|
|
5
|
+
{ "id": "niwaki", "title": "Niwaki", "scope": "syntax", "module": "./dist/presets/niwaki.js" },
|
|
6
|
+
{ "id": "tideline", "title": "Tideline", "scope": "palette", "module": "./dist/presets/tideline.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
7
|
+
{ "id": "nord", "title": "Nord", "scope": "palette", "module": "./dist/presets/nord.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
8
|
+
{ "id": "dracula", "title": "Dracula", "scope": "palette", "module": "./dist/presets/dracula.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
9
|
+
{ "id": "solarized", "title": "Solarized", "scope": "palette", "module": "./dist/presets/solarized.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
10
|
+
{ "id": "catppuccin", "title": "Catppuccin", "scope": "palette", "module": "./dist/presets/catppuccin.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
11
|
+
{ "id": "gruvbox", "title": "Gruvbox", "scope": "palette", "module": "./dist/presets/gruvbox.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
12
|
+
{ "id": "one-dark", "title": "One Dark", "scope": "palette", "module": "./dist/presets/one-dark.js", "tunedFor": ["@refrakt-md/lumina"] },
|
|
13
|
+
{ "id": "tokyo-night", "title": "Tokyo Night", "scope": "palette", "module": "./dist/presets/tokyo-night.js", "tunedFor": ["@refrakt-md/lumina"] }
|
|
14
|
+
]
|
|
15
|
+
}
|
package/styles/runes/steps.css
CHANGED
|
@@ -62,7 +62,8 @@
|
|
|
62
62
|
.rf-step h4,
|
|
63
63
|
.rf-step h5,
|
|
64
64
|
.rf-step h6,
|
|
65
|
-
.
|
|
65
|
+
/* Mirror the structure rule: only the leading title bold gets title spacing. */
|
|
66
|
+
.rf-step__content > p:first-child > strong:first-child {
|
|
66
67
|
margin-top: 0;
|
|
67
68
|
margin-bottom: 0.375rem;
|
|
68
69
|
}
|