mol_plot_all 1.2.1263 → 1.2.1265
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/node.deps.json +1 -1
- package/node.js +13 -21
- package/node.js.map +1 -1
- package/node.mjs +13 -21
- package/node.test.js +13 -21
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/test.html +1 -1
- package/web.deps.json +1 -1
- package/web.js +9 -19
- package/web.js.map +1 -1
- package/web.mjs +9 -19
package/node.mjs
CHANGED
|
@@ -311,9 +311,8 @@ var $;
|
|
|
311
311
|
if (sub_pos !== end) {
|
|
312
312
|
this.peer_move(end, sub_pos);
|
|
313
313
|
}
|
|
314
|
-
this.data.
|
|
315
|
-
this.
|
|
316
|
-
if (this.data.length === this.sub_from)
|
|
314
|
+
this.data.length = end;
|
|
315
|
+
if (end === this.sub_from)
|
|
317
316
|
this.reap();
|
|
318
317
|
}
|
|
319
318
|
reap() { }
|
|
@@ -545,9 +544,8 @@ var $;
|
|
|
545
544
|
const sub = this.data[cursor];
|
|
546
545
|
const pos = this.data[cursor + 1];
|
|
547
546
|
sub.pub_off(pos);
|
|
548
|
-
this.data.pop();
|
|
549
|
-
this.data.pop();
|
|
550
547
|
}
|
|
548
|
+
this.data.length = this.sub_from;
|
|
551
549
|
this.cursor = this.pub_from;
|
|
552
550
|
this.track_cut();
|
|
553
551
|
this.cursor = $mol_wire_cursor.final;
|
|
@@ -556,23 +554,15 @@ var $;
|
|
|
556
554
|
if (this.cursor < this.pub_from) {
|
|
557
555
|
$mol_fail(new Error('Cut of non begun sub'));
|
|
558
556
|
}
|
|
559
|
-
let
|
|
557
|
+
let end = this.data.length;
|
|
560
558
|
for (let cursor = this.cursor; cursor < this.sub_from; cursor += 2) {
|
|
561
559
|
const pub = this.data[cursor];
|
|
562
560
|
pub?.sub_off(this.data[cursor + 1]);
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
this.
|
|
566
|
-
this.data.pop();
|
|
567
|
-
}
|
|
568
|
-
else {
|
|
569
|
-
++tail;
|
|
570
|
-
}
|
|
571
|
-
}
|
|
572
|
-
for (; tail; --tail) {
|
|
573
|
-
this.data.pop();
|
|
574
|
-
this.data.pop();
|
|
561
|
+
end -= 2;
|
|
562
|
+
if (this.sub_from <= end)
|
|
563
|
+
this.peer_move(end, cursor);
|
|
575
564
|
}
|
|
565
|
+
this.data.length = end;
|
|
576
566
|
this.sub_from = this.cursor;
|
|
577
567
|
}
|
|
578
568
|
complete() { }
|
|
@@ -2011,11 +2001,13 @@ var $node = new Proxy({ require }, {
|
|
|
2011
2001
|
get(target, name, wrapper) {
|
|
2012
2002
|
if (target[name])
|
|
2013
2003
|
return target[name];
|
|
2014
|
-
|
|
2015
|
-
if (mod.builtinModules.indexOf(name) >= 0)
|
|
2004
|
+
if (name.startsWith('node:'))
|
|
2016
2005
|
return target.require(name);
|
|
2017
2006
|
if (name[0] === '.')
|
|
2018
2007
|
return target.require(name);
|
|
2008
|
+
const mod = target.require('module');
|
|
2009
|
+
if (mod.builtinModules.indexOf(name) >= 0)
|
|
2010
|
+
return target.require(name);
|
|
2019
2011
|
try {
|
|
2020
2012
|
target.require.resolve(name);
|
|
2021
2013
|
}
|
|
@@ -2835,7 +2827,7 @@ var $;
|
|
|
2835
2827
|
"use strict";
|
|
2836
2828
|
var $;
|
|
2837
2829
|
(function ($) {
|
|
2838
|
-
$mol_style_attach("mol/theme/theme.css", ":root {\n\t--mol_theme_hue:
|
|
2830
|
+
$mol_style_attach("mol/theme/theme.css", ":root {\n\t--mol_theme_hue: 240deg;\n\t--mol_theme_hue_spread: 90deg;\n}\n\n:where([mol_theme]) {\n\tcolor: var(--mol_theme_text);\n\tfill: var(--mol_theme_text);\n\tbackground-color: var(--mol_theme_back);\n}\n\t\n:root, [mol_theme=\"$mol_theme_dark\"], :where([mol_theme=\"$mol_theme_dark\"]) [mol_theme] {\n\n\t--mol_theme_luma: -1;\n\t--mol_theme_image: invert(1) hue-rotate( 180deg );\n\n\t--mol_theme_back: hsl( var(--mol_theme_hue), 20%, 10% );\n\t--mol_theme_card: hsl( var(--mol_theme_hue), 50%, 20%, .25 );\n\t--mol_theme_field: hsl( var(--mol_theme_hue), 50%, 8%, .25 );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 0%, 50%, .1 );\n\t\n\t--mol_theme_text: hsl( var(--mol_theme_hue), 0%, 80% );\n\t--mol_theme_shade: hsl( var(--mol_theme_hue), 0%, 60%, 1 );\n\t--mol_theme_line: hsl( var(--mol_theme_hue), 0%, 50%, .25 );\n\t--mol_theme_focus: hsl( calc( var(--mol_theme_hue) + 180deg ), 100%, 65% );\n\t\n\t--mol_theme_control: hsl( var(--mol_theme_hue), 60%, 65% );\n\t--mol_theme_current: hsl( calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ), 60%, 65% );\n\t--mol_theme_special: hsl( calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ), 60%, 65% );\n\n\t--mol_theme_back: oklch( 20% .03 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 30% .05 var(--mol_theme_hue) / .25 );\n\t--mol_theme_field: oklch( 10% 0 var(--mol_theme_hue) / .25 );\n\t--mol_theme_hover: oklch( 70% 0 var(--mol_theme_hue) / .1 );\n\t\n\t--mol_theme_text: oklch( 80% 0 var(--mol_theme_hue) );\n\t--mol_theme_shade: oklch( 60% 0 var(--mol_theme_hue) );\n\t--mol_theme_line: oklch( 60% 0 var(--mol_theme_hue) / .25 );\n\t--mol_theme_focus: oklch( 80% .2 calc( var(--mol_theme_hue) + 180deg ) );\n\t\n\t--mol_theme_control: oklch( 70% .1 var(--mol_theme_hue) );\n\t--mol_theme_current: oklch( 80% .2 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_special: oklch( 80% .3 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\n}\n\n[mol_theme=\"$mol_theme_light\"], :where([mol_theme=\"$mol_theme_light\"]) [mol_theme] {\n\t\n\t--mol_theme_luma: 1;\n\t--mol_theme_image: none;\n\t\n\t--mol_theme_back: hsl( var(--mol_theme_hue), 20%, 92% );\n\t--mol_theme_card: hsl( var(--mol_theme_hue), 50%, 100%, .5 );\n\t--mol_theme_field: hsl( var(--mol_theme_hue), 50%, 100%, .75 );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 0%, 50%, .1 );\n\t\n\t--mol_theme_text: hsl( var(--mol_theme_hue), 0%, 0% );\n\t--mol_theme_shade: hsl( var(--mol_theme_hue), 0%, 40%, 1 );\n\t--mol_theme_line: hsl( var(--mol_theme_hue), 0%, 50%, .25 );\n\t--mol_theme_focus: hsl( calc( var(--mol_theme_hue) + 180deg ), 100%, 40% );\n\t\n\t--mol_theme_control: hsl( var(--mol_theme_hue), 80%, 30% );\n\t--mol_theme_current: hsl( calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ), 80%, 30% );\n\t--mol_theme_special: hsl( calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ), 80%, 30% );\n\t\n\t--mol_theme_back: oklch( 92% .01 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 99% .01 var(--mol_theme_hue) / .5 );\n\t--mol_theme_field: oklch( 100% 0 var(--mol_theme_hue) / .5 );\n\t--mol_theme_hover: oklch( 70% 0 var(--mol_theme_hue) / .1 );\n\t\n\t--mol_theme_text: oklch( 20% 0 var(--mol_theme_hue) );\n\t--mol_theme_shade: oklch( 60% 0 var(--mol_theme_hue) );\n\t--mol_theme_line: oklch( 50% 0 var(--mol_theme_hue) / .25 );\n\t--mol_theme_focus: oklch( 20% .8 calc( var(--mol_theme_hue) + 180deg ) );\n\t\n\t--mol_theme_control: oklch( 35% .2 var(--mol_theme_hue) );\n\t--mol_theme_current: oklch( 45% .3 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_special: oklch( 45% .3 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_base\"] {\n\t--mol_theme_back: oklch( 25% .05 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 35% .1 var(--mol_theme_hue) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_base\"] {\n\t--mol_theme_back: oklch( 85% .05 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 98% .03 var(--mol_theme_hue) / .25 );\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_current\"] {\n\t--mol_theme_back: oklch( 25% .05 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 35% .1 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_current\"] {\n\t--mol_theme_back: oklch( 85% .05 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 98% .03 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) / .25 );\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_special\"] {\n\t--mol_theme_back: oklch( 25% .05 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 35% .1 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_special\"] {\n\t--mol_theme_back: oklch( 85% .05 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 98% .03 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) / .25 );\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_accent\"] {\n\t--mol_theme_back: oklch( 35% .1 calc( var(--mol_theme_hue) + 180deg ) );\n\t--mol_theme_card: oklch( 45% .15 calc( var(--mol_theme_hue) + 180deg ) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_accent\"] {\n\t--mol_theme_back: oklch( 83% .1 calc( var(--mol_theme_hue) + 180deg ) );\n\t--mol_theme_card: oklch( 98% .03 calc( var(--mol_theme_hue) + 180deg ) / .25 );\n}\n\n");
|
|
2839
2831
|
})($ || ($ = {}));
|
|
2840
2832
|
|
|
2841
2833
|
;
|
package/node.test.js
CHANGED
|
@@ -302,9 +302,8 @@ var $;
|
|
|
302
302
|
if (sub_pos !== end) {
|
|
303
303
|
this.peer_move(end, sub_pos);
|
|
304
304
|
}
|
|
305
|
-
this.data.
|
|
306
|
-
this.
|
|
307
|
-
if (this.data.length === this.sub_from)
|
|
305
|
+
this.data.length = end;
|
|
306
|
+
if (end === this.sub_from)
|
|
308
307
|
this.reap();
|
|
309
308
|
}
|
|
310
309
|
reap() { }
|
|
@@ -536,9 +535,8 @@ var $;
|
|
|
536
535
|
const sub = this.data[cursor];
|
|
537
536
|
const pos = this.data[cursor + 1];
|
|
538
537
|
sub.pub_off(pos);
|
|
539
|
-
this.data.pop();
|
|
540
|
-
this.data.pop();
|
|
541
538
|
}
|
|
539
|
+
this.data.length = this.sub_from;
|
|
542
540
|
this.cursor = this.pub_from;
|
|
543
541
|
this.track_cut();
|
|
544
542
|
this.cursor = $mol_wire_cursor.final;
|
|
@@ -547,23 +545,15 @@ var $;
|
|
|
547
545
|
if (this.cursor < this.pub_from) {
|
|
548
546
|
$mol_fail(new Error('Cut of non begun sub'));
|
|
549
547
|
}
|
|
550
|
-
let
|
|
548
|
+
let end = this.data.length;
|
|
551
549
|
for (let cursor = this.cursor; cursor < this.sub_from; cursor += 2) {
|
|
552
550
|
const pub = this.data[cursor];
|
|
553
551
|
pub?.sub_off(this.data[cursor + 1]);
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
this.
|
|
557
|
-
this.data.pop();
|
|
558
|
-
}
|
|
559
|
-
else {
|
|
560
|
-
++tail;
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
for (; tail; --tail) {
|
|
564
|
-
this.data.pop();
|
|
565
|
-
this.data.pop();
|
|
552
|
+
end -= 2;
|
|
553
|
+
if (this.sub_from <= end)
|
|
554
|
+
this.peer_move(end, cursor);
|
|
566
555
|
}
|
|
556
|
+
this.data.length = end;
|
|
567
557
|
this.sub_from = this.cursor;
|
|
568
558
|
}
|
|
569
559
|
complete() { }
|
|
@@ -2002,11 +1992,13 @@ var $node = new Proxy({ require }, {
|
|
|
2002
1992
|
get(target, name, wrapper) {
|
|
2003
1993
|
if (target[name])
|
|
2004
1994
|
return target[name];
|
|
2005
|
-
|
|
2006
|
-
if (mod.builtinModules.indexOf(name) >= 0)
|
|
1995
|
+
if (name.startsWith('node:'))
|
|
2007
1996
|
return target.require(name);
|
|
2008
1997
|
if (name[0] === '.')
|
|
2009
1998
|
return target.require(name);
|
|
1999
|
+
const mod = target.require('module');
|
|
2000
|
+
if (mod.builtinModules.indexOf(name) >= 0)
|
|
2001
|
+
return target.require(name);
|
|
2010
2002
|
try {
|
|
2011
2003
|
target.require.resolve(name);
|
|
2012
2004
|
}
|
|
@@ -2826,7 +2818,7 @@ var $;
|
|
|
2826
2818
|
"use strict";
|
|
2827
2819
|
var $;
|
|
2828
2820
|
(function ($) {
|
|
2829
|
-
$mol_style_attach("mol/theme/theme.css", ":root {\n\t--mol_theme_hue:
|
|
2821
|
+
$mol_style_attach("mol/theme/theme.css", ":root {\n\t--mol_theme_hue: 240deg;\n\t--mol_theme_hue_spread: 90deg;\n}\n\n:where([mol_theme]) {\n\tcolor: var(--mol_theme_text);\n\tfill: var(--mol_theme_text);\n\tbackground-color: var(--mol_theme_back);\n}\n\t\n:root, [mol_theme=\"$mol_theme_dark\"], :where([mol_theme=\"$mol_theme_dark\"]) [mol_theme] {\n\n\t--mol_theme_luma: -1;\n\t--mol_theme_image: invert(1) hue-rotate( 180deg );\n\n\t--mol_theme_back: hsl( var(--mol_theme_hue), 20%, 10% );\n\t--mol_theme_card: hsl( var(--mol_theme_hue), 50%, 20%, .25 );\n\t--mol_theme_field: hsl( var(--mol_theme_hue), 50%, 8%, .25 );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 0%, 50%, .1 );\n\t\n\t--mol_theme_text: hsl( var(--mol_theme_hue), 0%, 80% );\n\t--mol_theme_shade: hsl( var(--mol_theme_hue), 0%, 60%, 1 );\n\t--mol_theme_line: hsl( var(--mol_theme_hue), 0%, 50%, .25 );\n\t--mol_theme_focus: hsl( calc( var(--mol_theme_hue) + 180deg ), 100%, 65% );\n\t\n\t--mol_theme_control: hsl( var(--mol_theme_hue), 60%, 65% );\n\t--mol_theme_current: hsl( calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ), 60%, 65% );\n\t--mol_theme_special: hsl( calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ), 60%, 65% );\n\n\t--mol_theme_back: oklch( 20% .03 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 30% .05 var(--mol_theme_hue) / .25 );\n\t--mol_theme_field: oklch( 10% 0 var(--mol_theme_hue) / .25 );\n\t--mol_theme_hover: oklch( 70% 0 var(--mol_theme_hue) / .1 );\n\t\n\t--mol_theme_text: oklch( 80% 0 var(--mol_theme_hue) );\n\t--mol_theme_shade: oklch( 60% 0 var(--mol_theme_hue) );\n\t--mol_theme_line: oklch( 60% 0 var(--mol_theme_hue) / .25 );\n\t--mol_theme_focus: oklch( 80% .2 calc( var(--mol_theme_hue) + 180deg ) );\n\t\n\t--mol_theme_control: oklch( 70% .1 var(--mol_theme_hue) );\n\t--mol_theme_current: oklch( 80% .2 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_special: oklch( 80% .3 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\n}\n\n[mol_theme=\"$mol_theme_light\"], :where([mol_theme=\"$mol_theme_light\"]) [mol_theme] {\n\t\n\t--mol_theme_luma: 1;\n\t--mol_theme_image: none;\n\t\n\t--mol_theme_back: hsl( var(--mol_theme_hue), 20%, 92% );\n\t--mol_theme_card: hsl( var(--mol_theme_hue), 50%, 100%, .5 );\n\t--mol_theme_field: hsl( var(--mol_theme_hue), 50%, 100%, .75 );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 0%, 50%, .1 );\n\t\n\t--mol_theme_text: hsl( var(--mol_theme_hue), 0%, 0% );\n\t--mol_theme_shade: hsl( var(--mol_theme_hue), 0%, 40%, 1 );\n\t--mol_theme_line: hsl( var(--mol_theme_hue), 0%, 50%, .25 );\n\t--mol_theme_focus: hsl( calc( var(--mol_theme_hue) + 180deg ), 100%, 40% );\n\t\n\t--mol_theme_control: hsl( var(--mol_theme_hue), 80%, 30% );\n\t--mol_theme_current: hsl( calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ), 80%, 30% );\n\t--mol_theme_special: hsl( calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ), 80%, 30% );\n\t\n\t--mol_theme_back: oklch( 92% .01 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 99% .01 var(--mol_theme_hue) / .5 );\n\t--mol_theme_field: oklch( 100% 0 var(--mol_theme_hue) / .5 );\n\t--mol_theme_hover: oklch( 70% 0 var(--mol_theme_hue) / .1 );\n\t\n\t--mol_theme_text: oklch( 20% 0 var(--mol_theme_hue) );\n\t--mol_theme_shade: oklch( 60% 0 var(--mol_theme_hue) );\n\t--mol_theme_line: oklch( 50% 0 var(--mol_theme_hue) / .25 );\n\t--mol_theme_focus: oklch( 20% .8 calc( var(--mol_theme_hue) + 180deg ) );\n\t\n\t--mol_theme_control: oklch( 35% .2 var(--mol_theme_hue) );\n\t--mol_theme_current: oklch( 45% .3 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_special: oklch( 45% .3 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_base\"] {\n\t--mol_theme_back: oklch( 25% .05 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 35% .1 var(--mol_theme_hue) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_base\"] {\n\t--mol_theme_back: oklch( 85% .05 var(--mol_theme_hue) );\n\t--mol_theme_card: oklch( 98% .03 var(--mol_theme_hue) / .25 );\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_current\"] {\n\t--mol_theme_back: oklch( 25% .05 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 35% .1 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_current\"] {\n\t--mol_theme_back: oklch( 85% .05 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 98% .03 calc( var(--mol_theme_hue) - var(--mol_theme_hue_spread) ) / .25 );\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_special\"] {\n\t--mol_theme_back: oklch( 25% .05 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 35% .1 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_special\"] {\n\t--mol_theme_back: oklch( 85% .05 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) );\n\t--mol_theme_card: oklch( 98% .03 calc( var(--mol_theme_hue) + var(--mol_theme_hue_spread) ) / .25 );\n}\n\n:where( :root, [mol_theme=\"$mol_theme_dark\"] ) [mol_theme=\"$mol_theme_accent\"] {\n\t--mol_theme_back: oklch( 35% .1 calc( var(--mol_theme_hue) + 180deg ) );\n\t--mol_theme_card: oklch( 45% .15 calc( var(--mol_theme_hue) + 180deg ) / .25 );\n}\n:where( [mol_theme=\"$mol_theme_light\"] ) [mol_theme=\"$mol_theme_accent\"] {\n\t--mol_theme_back: oklch( 83% .1 calc( var(--mol_theme_hue) + 180deg ) );\n\t--mol_theme_card: oklch( 98% .03 calc( var(--mol_theme_hue) + 180deg ) / .25 );\n}\n\n");
|
|
2830
2822
|
})($ || ($ = {}));
|
|
2831
2823
|
|
|
2832
2824
|
;
|