@kiefer-tek/sophea-design-system 0.15.11 → 0.16.0

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/index.css CHANGED
@@ -5820,15 +5820,15 @@ a.sn-Button-module__btn--Fx11X[aria-disabled="true"] {
5820
5820
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
5821
5821
  }
5822
5822
 
5823
- /* Pill — a substantial segmented strip: bordered track, solid brand pill
5824
- for the active tab with white text (4.6:1 on --theme-primary-05, AA in
5825
- both themes replaces the washed-out action-link-02 fill that needed a
5826
- per-theme text override). */
5823
+ /* Pill — a bordered tab track with a brand-gradient fill behind the active tab
5824
+ (white text holds ≥4.5:1; the gradient stops at --theme-primary-05). Radii are
5825
+ moderate (--radius-lg track / --radius-md pills) to match buttons & cards —
5826
+ the old fully-round 9999px read as out of place next to them. */
5827
5827
 
5828
5828
  .sn-Tabs-module__list-pill--B-FxP {
5829
5829
  background: var(--surface-s3);
5830
5830
  border: 1px solid var(--border-02);
5831
- border-radius: 9999px;
5831
+ border-radius: var(--radius-lg);
5832
5832
  padding: 4px;
5833
5833
  gap: 4px;
5834
5834
  }
@@ -5837,7 +5837,7 @@ a.sn-Button-module__btn--Fx11X[aria-disabled="true"] {
5837
5837
  padding: 7px 16px;
5838
5838
  font-size: 13px;
5839
5839
  color: var(--text-04);
5840
- border-radius: 9999px;
5840
+ border-radius: var(--radius-md);
5841
5841
  transition: color var(--duration-fast, 120ms) var(--ease-out, ease-out);
5842
5842
  }
5843
5843
 
@@ -5852,11 +5852,13 @@ a.sn-Button-module__btn--Fx11X[aria-disabled="true"] {
5852
5852
 
5853
5853
  .sn-Tabs-module__indicator-pill--ltyFZ {
5854
5854
  /* Inset to sit inside the 4px track padding; no drop shadow — it bled
5855
- into the bottom inset and made the pill look like it touched the track. */
5855
+ into the bottom inset and made the pill look like it touched the track.
5856
+ Brand-gradient fill (matches the primary-button CTA) — theme-stable; white
5857
+ trigger text holds ≥4.5:1 since the gradient stops at --theme-primary-05. */
5856
5858
  top: 4px;
5857
5859
  height: calc(100% - 8px);
5858
- background: var(--theme-primary-05);
5859
- border-radius: 9999px;
5860
+ background-image: var(--sophea-gradient-primary-button);
5861
+ border-radius: var(--radius-md);
5860
5862
  }
5861
5863
 
5862
5864
  @media (prefers-reduced-motion: reduce) {
@@ -11042,6 +11044,11 @@ html[data-resizing] .sn-AppShell-module__sidebar--9-Zb9 {
11042
11044
  can make the main pane opaque while keeping the rail/sidebar glass — e.g. a
11043
11045
  glass sidebar over an opaque content area. */
11044
11046
  background: var(--shell-main-backdrop, var(--shell-region-glass));
11047
+ /* Optional frosted blur: when the shell card is transparent, the live aurora
11048
+ shows THROUGH a translucent tint — this blurs it (frosted glass) instead of
11049
+ letting it read sharp. Default none (no blur). */
11050
+ -webkit-backdrop-filter: var(--shell-main-backdrop-blur, none);
11051
+ backdrop-filter: var(--shell-main-backdrop-blur, none);
11045
11052
  }
11046
11053
 
11047
11054
  .sn-AppShell-module__mainBackdropImage--bjtQh {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiefer-tek/sophea-design-system",
3
- "version": "0.15.11",
3
+ "version": "0.16.0",
4
4
  "description": "Sophea design system: tokens, components, Tailwind preset.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -602,12 +602,9 @@
602
602
  #2e6dad00 100%
603
603
  );
604
604
  --shell-divider: #5891d01f;
605
- /* Light glass — a white frost over the navy aurora (was a dark navy tint)
606
- so the shell regions read brighter/airier. Low alpha keeps the dark theme
607
- legible (content sits on opaque surfaces, not directly on the glass). */
608
- --shell-region-glass: #ffffff24;
605
+ --shell-region-glass: #141e3473;
609
606
  --shell-image-frost: #0a101e4d;
610
- --shell-sidebar-bg: #ffffff1a;
607
+ --shell-sidebar-bg: #070d1a6b;
611
608
  --shell-search-bg: #1a25408c;
612
609
  --shell-search-bg-open: #1a2540cc;
613
610
  --shell-search-kbd-bg: #0a101ecc;
@@ -618,7 +615,7 @@
618
615
  --shell-rail-item-hover-bg: rgba(46, 109, 173, 0.1);
619
616
  --shell-chrome-hover-bg: rgba(46, 109, 173, 0.14);
620
617
 
621
- --shell-drawer-glass: #ffffff24; /* light glass — match the shell regions */
618
+ --shell-drawer-glass: var(--glass-regular-bg);
622
619
  /* nous --mask-03 dark: var(--alpha-grey-100-40) → #0006 */
623
620
  --shell-drawer-scrim: rgba(0, 0, 0, 0.4);
624
621
  }