anentrypoint-design 0.0.405 → 0.0.407
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/colors_and_type.css +56 -2
- package/dist/247420.css +59 -5
- package/dist/247420.js +23 -23
- package/package.json +1 -1
- package/src/css/app-shell/catalog-theme.css +1 -1
- package/src/css/app-shell/files.css +1 -1
- package/src/css/app-shell/hero-content.css +1 -1
- package/src/theme.js +1 -1
package/colors_and_type.css
CHANGED
|
@@ -330,8 +330,15 @@
|
|
|
330
330
|
--measure-narrow: 760px;
|
|
331
331
|
/* Page-stage ceiling — independent of --measure-wide (which stays the
|
|
332
332
|
narrower editorial hero/prose measure). Fluid so ultra-wide viewports
|
|
333
|
-
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
334
|
-
|
|
333
|
+
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
334
|
+
Percentage, not vw: a stage nested in a sidebar shell or an embedded
|
|
335
|
+
window has no useful viewport of its own, and a vw term there resolves
|
|
336
|
+
against the browser instead of the container it actually sits in. */
|
|
337
|
+
--stage-wide: min(96%, 1600px);
|
|
338
|
+
/* Ultra-wide tier — past this the eye loses the line more than the layout
|
|
339
|
+
gains, so multi-column content takes the extra width instead of one
|
|
340
|
+
column growing without bound. */
|
|
341
|
+
--stage-ultra: min(96%, 2100px);
|
|
335
342
|
|
|
336
343
|
--sidebar-width: 220px;
|
|
337
344
|
--sidebar-width-collapsed: 64px;
|
|
@@ -605,6 +612,53 @@ select:focus-visible {
|
|
|
605
612
|
--accent: var(--green); --accent-fg: var(--paper); --accent-ink: var(--green);
|
|
606
613
|
}
|
|
607
614
|
|
|
615
|
+
/* github-dark — pi-web's GitHub-dark theme. Cool dark palette with blue accent,
|
|
616
|
+
ported from pi-web (https://github.com/jmfederico/pi-web). */
|
|
617
|
+
[data-theme="github-dark"] {
|
|
618
|
+
color-scheme: dark;
|
|
619
|
+
--bg: #0d1117;
|
|
620
|
+
--bg-2: #161b22;
|
|
621
|
+
--bg-3: #21262d;
|
|
622
|
+
--fg: #e6edf3;
|
|
623
|
+
--fg-2: #c9d1d9;
|
|
624
|
+
--fg-3: #8b949e;
|
|
625
|
+
--panel-bg: var(--bg);
|
|
626
|
+
--panel-bg-2: var(--bg-2);
|
|
627
|
+
--panel-0: var(--bg);
|
|
628
|
+
--panel-1: var(--bg-2);
|
|
629
|
+
--panel-2: var(--bg-3);
|
|
630
|
+
--panel-3: color-mix(in oklab, var(--fg) 20%, transparent);
|
|
631
|
+
--panel-text: var(--fg);
|
|
632
|
+
--panel-text-2: var(--fg-2);
|
|
633
|
+
--panel-text-3: var(--fg-3);
|
|
634
|
+
--accent: #58a6ff;
|
|
635
|
+
--accent-fg: #ffffff;
|
|
636
|
+
--accent-ink: #58a6ff;
|
|
637
|
+
--accent-bright: #79c0ff;
|
|
638
|
+
--accent-tint: color-mix(in oklab, var(--accent) 30%, var(--bg));
|
|
639
|
+
--danger: #ff7b72;
|
|
640
|
+
--flame: #ff7b72;
|
|
641
|
+
--amber: #d29922;
|
|
642
|
+
--warn: #ff7b72;
|
|
643
|
+
--sky: #58a6ff;
|
|
644
|
+
--mascot-deep: #ff7b72;
|
|
645
|
+
--purple-2: #d2a8ff;
|
|
646
|
+
--green: #3fb950;
|
|
647
|
+
--green-2: #3fb950;
|
|
648
|
+
--cat-green-ink: #3fb950;
|
|
649
|
+
--cat-purple-ink: #d2a8ff;
|
|
650
|
+
--code-string: var(--green-2);
|
|
651
|
+
--code-keyword: var(--sky);
|
|
652
|
+
--code-fn: var(--flame);
|
|
653
|
+
--code-str-alt: var(--mascot-deep);
|
|
654
|
+
--code-num: var(--amber);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
[data-theme="github-dark"] ::selection {
|
|
658
|
+
background: #0d2847;
|
|
659
|
+
color: var(--fg);
|
|
660
|
+
}
|
|
661
|
+
|
|
608
662
|
[data-density="compact"] { --density: 0.75; }
|
|
609
663
|
[data-density="comfortable"] { --density: 1; }
|
|
610
664
|
[data-density="spacious"] { --density: 1.35; }
|
package/dist/247420.css
CHANGED
|
@@ -332,8 +332,15 @@
|
|
|
332
332
|
--measure-narrow: 760px;
|
|
333
333
|
/* Page-stage ceiling — independent of --measure-wide (which stays the
|
|
334
334
|
narrower editorial hero/prose measure). Fluid so ultra-wide viewports
|
|
335
|
-
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
336
|
-
|
|
335
|
+
actually gain real estate instead of flat-lining at a fixed px cap.
|
|
336
|
+
Percentage, not vw: a stage nested in a sidebar shell or an embedded
|
|
337
|
+
window has no useful viewport of its own, and a vw term there resolves
|
|
338
|
+
against the browser instead of the container it actually sits in. */
|
|
339
|
+
--stage-wide: min(96%, 1600px);
|
|
340
|
+
/* Ultra-wide tier — past this the eye loses the line more than the layout
|
|
341
|
+
gains, so multi-column content takes the extra width instead of one
|
|
342
|
+
column growing without bound. */
|
|
343
|
+
--stage-ultra: min(96%, 2100px);
|
|
337
344
|
|
|
338
345
|
--sidebar-width: 220px;
|
|
339
346
|
--sidebar-width-collapsed: 64px;
|
|
@@ -607,6 +614,53 @@
|
|
|
607
614
|
--accent: var(--green); --accent-fg: var(--paper); --accent-ink: var(--green);
|
|
608
615
|
}
|
|
609
616
|
|
|
617
|
+
/* github-dark — pi-web's GitHub-dark theme. Cool dark palette with blue accent,
|
|
618
|
+
ported from pi-web (https://github.com/jmfederico/pi-web). */
|
|
619
|
+
.ds-247420[data-theme="github-dark"] {
|
|
620
|
+
color-scheme: dark;
|
|
621
|
+
--bg: #0d1117;
|
|
622
|
+
--bg-2: #161b22;
|
|
623
|
+
--bg-3: #21262d;
|
|
624
|
+
--fg: #e6edf3;
|
|
625
|
+
--fg-2: #c9d1d9;
|
|
626
|
+
--fg-3: #8b949e;
|
|
627
|
+
--panel-bg: var(--bg);
|
|
628
|
+
--panel-bg-2: var(--bg-2);
|
|
629
|
+
--panel-0: var(--bg);
|
|
630
|
+
--panel-1: var(--bg-2);
|
|
631
|
+
--panel-2: var(--bg-3);
|
|
632
|
+
--panel-3: color-mix(in oklab, var(--fg) 20%, transparent);
|
|
633
|
+
--panel-text: var(--fg);
|
|
634
|
+
--panel-text-2: var(--fg-2);
|
|
635
|
+
--panel-text-3: var(--fg-3);
|
|
636
|
+
--accent: #58a6ff;
|
|
637
|
+
--accent-fg: #ffffff;
|
|
638
|
+
--accent-ink: #58a6ff;
|
|
639
|
+
--accent-bright: #79c0ff;
|
|
640
|
+
--accent-tint: color-mix(in oklab, var(--accent) 30%, var(--bg));
|
|
641
|
+
--danger: #ff7b72;
|
|
642
|
+
--flame: #ff7b72;
|
|
643
|
+
--amber: #d29922;
|
|
644
|
+
--warn: #ff7b72;
|
|
645
|
+
--sky: #58a6ff;
|
|
646
|
+
--mascot-deep: #ff7b72;
|
|
647
|
+
--purple-2: #d2a8ff;
|
|
648
|
+
--green: #3fb950;
|
|
649
|
+
--green-2: #3fb950;
|
|
650
|
+
--cat-green-ink: #3fb950;
|
|
651
|
+
--cat-purple-ink: #d2a8ff;
|
|
652
|
+
--code-string: var(--green-2);
|
|
653
|
+
--code-keyword: var(--sky);
|
|
654
|
+
--code-fn: var(--flame);
|
|
655
|
+
--code-str-alt: var(--mascot-deep);
|
|
656
|
+
--code-num: var(--amber);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.ds-247420[data-theme="github-dark"] ::selection {
|
|
660
|
+
background: #0d2847;
|
|
661
|
+
color: var(--fg);
|
|
662
|
+
}
|
|
663
|
+
|
|
610
664
|
.ds-247420[data-density="compact"] { --density: 0.75; }
|
|
611
665
|
.ds-247420[data-density="comfortable"] { --density: 1; }
|
|
612
666
|
.ds-247420[data-density="spacious"] { --density: 1.35; }
|
|
@@ -1755,7 +1809,7 @@
|
|
|
1755
1809
|
grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
|
|
1756
1810
|
grid-template-areas: 'title title' 'body aside';
|
|
1757
1811
|
align-items: start;
|
|
1758
|
-
max-width: var(--
|
|
1812
|
+
max-width: var(--stage-wide);
|
|
1759
1813
|
position: relative; isolation: isolate;
|
|
1760
1814
|
}
|
|
1761
1815
|
.ds-247420 .ds-hero-head { grid-area: title; display: grid; gap: var(--space-3); }
|
|
@@ -2816,7 +2870,7 @@
|
|
|
2816
2870
|
/* Stage — the scrollable content column. */
|
|
2817
2871
|
.ds-247420 .ds-file-stage {
|
|
2818
2872
|
display: flex; flex-direction: column; gap: var(--space-3);
|
|
2819
|
-
width: 100%; max-width: var(--
|
|
2873
|
+
width: 100%; max-width: var(--stage-wide); margin: 0 auto;
|
|
2820
2874
|
padding: var(--space-2) var(--space-3) var(--space-4);
|
|
2821
2875
|
}
|
|
2822
2876
|
/* When the stage is the app-main child, the shell already supplies top
|
|
@@ -3265,7 +3319,7 @@
|
|
|
3265
3319
|
color: var(--fg-2); text-decoration: none;
|
|
3266
3320
|
}
|
|
3267
3321
|
.ds-247420 .ds-catalog-side nav a:hover { color: var(--accent-ink); }
|
|
3268
|
-
.ds-247420 .ds-catalog-main { flex: 1; padding: var(--space-5); max-width: var(--
|
|
3322
|
+
.ds-247420 .ds-catalog-main { flex: 1; padding: var(--space-5); max-width: var(--stage-wide); min-width: 0; }
|
|
3269
3323
|
.ds-247420 .ds-catalog-section { margin-bottom: var(--space-5); padding-top: var(--space-3); border-top: var(--bw-hair) solid var(--rule); }
|
|
3270
3324
|
.ds-247420 .ds-catalog-section > h2 { font-size: var(--fs-h3-app); margin: 0 0 var(--space-3); }
|
|
3271
3325
|
|