@ndla/preset-panda 0.0.28 → 0.0.29
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/dist/styles.css +3 -0
- package/es/semanticTokens.js +11 -0
- package/lib/semanticTokens.d.ts +11 -0
- package/lib/semanticTokens.js +11 -0
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -560,6 +560,9 @@
|
|
|
560
560
|
--colors-surface-action-hover: var(--colors-purple-900);
|
|
561
561
|
--colors-surface-action-active: var(--colors-purple-950);
|
|
562
562
|
--colors-surface-action-selected: var(--colors-purple-800);
|
|
563
|
+
--colors-surface-action-my-ndla: var(--colors-yellow-50);
|
|
564
|
+
--colors-surface-action-my-ndla-hover: var(--colors-yellow-500);
|
|
565
|
+
--colors-surface-action-my-ndla-current: var(--colors-yellow-700);
|
|
563
566
|
--colors-surface-action-subtle: var(--colors-purple-50);
|
|
564
567
|
--colors-surface-action-subtle-hover: var(--colors-purple-100);
|
|
565
568
|
--colors-surface-action-subtle-hover-strong: var(--colors-purple-400);
|
package/es/semanticTokens.js
CHANGED
|
@@ -343,6 +343,17 @@ export const semanticTokens = defineSemanticTokens({
|
|
|
343
343
|
},
|
|
344
344
|
selected: {
|
|
345
345
|
value: "{colors.purple.800}"
|
|
346
|
+
},
|
|
347
|
+
myNdla: {
|
|
348
|
+
DEFAULT: {
|
|
349
|
+
value: "{colors.yellow.50}"
|
|
350
|
+
},
|
|
351
|
+
hover: {
|
|
352
|
+
value: "{colors.yellow.500}"
|
|
353
|
+
},
|
|
354
|
+
current: {
|
|
355
|
+
value: "{colors.yellow.700}"
|
|
356
|
+
}
|
|
346
357
|
}
|
|
347
358
|
},
|
|
348
359
|
actionSubtle: {
|
package/lib/semanticTokens.d.ts
CHANGED
|
@@ -342,6 +342,17 @@ export declare const semanticTokens: {
|
|
|
342
342
|
selected: {
|
|
343
343
|
value: string;
|
|
344
344
|
};
|
|
345
|
+
myNdla: {
|
|
346
|
+
DEFAULT: {
|
|
347
|
+
value: string;
|
|
348
|
+
};
|
|
349
|
+
hover: {
|
|
350
|
+
value: string;
|
|
351
|
+
};
|
|
352
|
+
current: {
|
|
353
|
+
value: string;
|
|
354
|
+
};
|
|
355
|
+
};
|
|
345
356
|
};
|
|
346
357
|
actionSubtle: {
|
|
347
358
|
DEFAULT: {
|
package/lib/semanticTokens.js
CHANGED
|
@@ -349,6 +349,17 @@ const semanticTokens = exports.semanticTokens = (0, _dev.defineSemanticTokens)({
|
|
|
349
349
|
},
|
|
350
350
|
selected: {
|
|
351
351
|
value: "{colors.purple.800}"
|
|
352
|
+
},
|
|
353
|
+
myNdla: {
|
|
354
|
+
DEFAULT: {
|
|
355
|
+
value: "{colors.yellow.50}"
|
|
356
|
+
},
|
|
357
|
+
hover: {
|
|
358
|
+
value: "{colors.yellow.500}"
|
|
359
|
+
},
|
|
360
|
+
current: {
|
|
361
|
+
value: "{colors.yellow.700}"
|
|
362
|
+
}
|
|
352
363
|
}
|
|
353
364
|
},
|
|
354
365
|
actionSubtle: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ndla/preset-panda",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.29",
|
|
4
4
|
"description": "Panda preset for NDLA.",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "d97a2f9c0e8bc60c499000bb27c8fe4441740381"
|
|
41
41
|
}
|