elbe-ui 0.4.21 → 0.4.23
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/ui/theme/colors.js +4 -3
- package/package.json +1 -1
package/dist/ui/theme/colors.js
CHANGED
|
@@ -245,9 +245,10 @@ export class SchemeColor extends KindColor {
|
|
|
245
245
|
}
|
|
246
246
|
asCss() {
|
|
247
247
|
return (`${this.primary.asCss()}\n` +
|
|
248
|
-
`.primary
|
|
249
|
-
`.secondary
|
|
250
|
-
`.inverse
|
|
248
|
+
`.primary { ${this.primary.asCss()}} \n` +
|
|
249
|
+
`.secondary { ${this.secondary.asCss()} }\n` +
|
|
250
|
+
`.inverse { ${this.inverse.asCss()} }\n` +
|
|
251
|
+
`.primary-hotfix { ${this.inverse.asCss()} }`);
|
|
251
252
|
}
|
|
252
253
|
static generate(path, seed, base) {
|
|
253
254
|
const m = seed.scheme;
|