anentrypoint-design 0.0.167 → 0.0.168

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/README.md CHANGED
@@ -4,7 +4,7 @@ The 247420 / AnEntrypoint design system, packaged as a single-file ESM SDK.
4
4
 
5
5
  friendly rounded sans body, monospace only on real code, tonal surfaces over borders, indicator rails for color-coded separation, generous negative space, terminal-flavoured rhythm.
6
6
 
7
- we fart in its general direction.
7
+ we fart in its general direction.
8
8
 
9
9
  ## install (the only step)
10
10
 
@@ -328,6 +328,20 @@ select:focus-visible {
328
328
  --accent: var(--green); --accent-fg: var(--paper);
329
329
  }
330
330
 
331
+ /* thebird — warm-paper brand preset. A first-class swappable theme: it lives
332
+ here in the canonical layer (not as a global :root override) so any consumer
333
+ can opt in with data-theme="thebird". The OS-shell chrome (bar heights,
334
+ window controls) stays in src/kits/os/theme.css; only color lives here. */
335
+ [data-theme="thebird"] {
336
+ color-scheme: light;
337
+ --paper: #F5F0E4;
338
+ --paper-2: #EFE9DB;
339
+ --paper-3: #E3DAC7;
340
+ --bg: var(--paper); --bg-2: var(--paper-2); --bg-3: var(--paper-3);
341
+ --fg: var(--ink); --fg-2: var(--ink-2); --fg-3: var(--ink-3);
342
+ --accent: var(--green); --accent-fg: var(--paper);
343
+ }
344
+
331
345
  [data-density="compact"] { --density: 0.75; }
332
346
  [data-density="comfortable"] { --density: 1; }
333
347
  [data-density="spacious"] { --density: 1.35; }
package/dist/247420.css CHANGED
@@ -330,6 +330,20 @@
330
330
  --accent: var(--green); --accent-fg: var(--paper);
331
331
  }
332
332
 
333
+ /* thebird — warm-paper brand preset. A first-class swappable theme: it lives
334
+ here in the canonical layer (not as a global :root override) so any consumer
335
+ can opt in with data-theme="thebird". The OS-shell chrome (bar heights,
336
+ window controls) stays in src/kits/os/theme.css; only color lives here. */
337
+ .ds-247420[data-theme="thebird"] {
338
+ color-scheme: light;
339
+ --paper: #F5F0E4;
340
+ --paper-2: #EFE9DB;
341
+ --paper-3: #E3DAC7;
342
+ --bg: var(--paper); --bg-2: var(--paper-2); --bg-3: var(--paper-3);
343
+ --fg: var(--ink); --fg-2: var(--ink-2); --fg-3: var(--ink-3);
344
+ --accent: var(--green); --accent-fg: var(--paper);
345
+ }
346
+
333
347
  .ds-247420[data-density="compact"] { --density: 0.75; }
334
348
  .ds-247420[data-density="comfortable"] { --density: 1; }
335
349
  .ds-247420[data-density="spacious"] { --density: 1.35; }
@@ -5695,3 +5709,72 @@
5695
5709
  overflow-y: auto;
5696
5710
  align-content: start;
5697
5711
  }
5712
+
5713
+ /* spoint/loading-screen.css */
5714
+ /* Loading-screen kit styles. Scoped under .ds-247420 at build time.
5715
+ All colors reference design tokens (no raw literals) per the token-lint gate. */
5716
+ .ds-247420 .sp-loading {
5717
+ position: fixed;
5718
+ inset: 0;
5719
+ z-index: 10000;
5720
+ display: flex;
5721
+ align-items: center;
5722
+ justify-content: center;
5723
+ background: var(--bg);
5724
+ color: var(--fg);
5725
+ font-family: var(--ff-mono);
5726
+ transition: opacity var(--dur-slow) var(--ease);
5727
+ }
5728
+ .ds-247420 .sp-loading-fade { opacity: 0; pointer-events: none; }
5729
+ .ds-247420 .sp-loading-container {
5730
+ width: min(420px, 86vw);
5731
+ display: flex;
5732
+ flex-direction: column;
5733
+ gap: 20px;
5734
+ }
5735
+ .ds-247420 .sp-loading-header h1 {
5736
+ margin: 0;
5737
+ font-family: var(--ff-display);
5738
+ font-size: var(--fs-h2);
5739
+ letter-spacing: 0.04em;
5740
+ }
5741
+ .ds-247420 .sp-loading-label {
5742
+ margin: 4px 0 0;
5743
+ color: var(--fg-2);
5744
+ font-size: var(--fs-body);
5745
+ }
5746
+ .ds-247420 .sp-loading-bars { display: flex; flex-direction: column; gap: 10px; }
5747
+ .ds-247420 .sp-loading-bar-row {
5748
+ display: grid;
5749
+ grid-template-columns: 88px 1fr 44px;
5750
+ align-items: center;
5751
+ gap: 10px;
5752
+ }
5753
+ .ds-247420 .sp-loading-bar-name {
5754
+ color: var(--fg-3);
5755
+ font-size: var(--fs-small, 11px);
5756
+ text-transform: uppercase;
5757
+ letter-spacing: 0.1em;
5758
+ }
5759
+ .ds-247420 .sp-loading-bar-track {
5760
+ height: 6px;
5761
+ border-radius: 3px;
5762
+ background: var(--bg-3);
5763
+ overflow: hidden;
5764
+ }
5765
+ .ds-247420 .sp-loading-bar-fill {
5766
+ height: 100%;
5767
+ width: 0%;
5768
+ background: var(--accent);
5769
+ transition: width var(--dur-base) var(--ease);
5770
+ }
5771
+ .ds-247420 .sp-loading-bar-pct {
5772
+ color: var(--fg-2);
5773
+ font-size: var(--fs-small, 11px);
5774
+ text-align: right;
5775
+ }
5776
+ .ds-247420 .sp-loading-detail {
5777
+ min-height: 16px;
5778
+ color: var(--fg-3);
5779
+ font-size: var(--fs-small, 11px);
5780
+ }