@gemka/core 0.5.0 → 0.5.2

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/chrome.css CHANGED
@@ -230,6 +230,8 @@
230
230
  margin-bottom: 0.5rem;
231
231
  padding-top: 6px;
232
232
  }
233
+ /* Opt-in: single row of four At a glance cards (collapses on mobile, below). */
234
+ .theme-vintage .dd-stats--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
233
235
  .theme-vintage .dd-stat-card {
234
236
  min-width: 0;
235
237
  background: var(--gk-surface-2);
@@ -425,6 +427,7 @@
425
427
  .theme-vintage .dd-bar-fill.completed { background: var(--gk-accent); }
426
428
  .theme-vintage .dd-bar-fill.sustaining,
427
429
  .theme-vintage .dd-bar-fill.created { background: var(--gk-ink); }
430
+ .theme-vintage .dd-bar-fill.checkpoint { background: var(--gk-checkpoint-bar); }
428
431
  .theme-vintage .dd-bar-value {
429
432
  min-width: var(--dd-bar-value-w, 16px);
430
433
  font-size: var(--dd-bar-value-size, 0.72rem);
@@ -562,7 +565,8 @@
562
565
  .theme-vintage .dd-tod-section { order: 3; }
563
566
  .theme-vintage .dd-overlay-cell--hour { order: 4; }
564
567
  .theme-vintage .dd-activity-section { order: 5; }
565
- .theme-vintage .dd-stats { grid-template-columns: repeat(2, 1fr); }
568
+ .theme-vintage .dd-stats,
569
+ .theme-vintage .dd-stats--four { grid-template-columns: repeat(2, 1fr); }
566
570
  .theme-vintage .dd-tod-grid { grid-template-columns: 1fr; }
567
571
  .theme-vintage .dd-hour-grid { overflow: visible; --dd-bar-row-h: 12px; }
568
572
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemka/core",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "Canonical GemKa design tokens (cream paper, oxblood accent, warm neutrals, Inter + Fraunces).",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
package/tokens.css CHANGED
@@ -25,6 +25,9 @@
25
25
  /* Shared row-hover tint */
26
26
  --gk-hover-cream: #f0ece0;
27
27
 
28
+ /* Neutral magnitude bars */
29
+ --gk-checkpoint-bar: #7C766B; /* warm taupe grey — neutral magnitude bars, distinct from oxblood (deep) and ink (sustaining) */
30
+
28
31
  /* Type */
29
32
  --gk-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
30
33
  --gk-font-serif: "Fraunces", Georgia, "Times New Roman", serif;