@syntrologie/runtime-sdk 2.8.0-canary.48 → 2.8.0-canary.49

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.
@@ -14351,7 +14351,7 @@ var SyntrologieSDK = (() => {
14351
14351
  var tag = {
14352
14352
  content: slateGrey[10],
14353
14353
  border: slateGrey[4],
14354
- background: "#1c2124"
14354
+ background: slateGrey[3]
14355
14355
  };
14356
14356
  var menu = {
14357
14357
  backgroundDefault: slateGrey[2],
@@ -19675,7 +19675,8 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
19675
19675
  ...colors.item,
19676
19676
  ...isExpanded ? colors.itemExpanded : {},
19677
19677
  ...isHighlighted ? {
19678
- boxShadow: "0 0 0 2px #6366f1, 0 0 12px rgba(99, 102, 241, 0.4)",
19678
+ // purple[4] = #6a59ce design system primary purple
19679
+ boxShadow: `0 0 0 2px ${purple[4]}, 0 0 12px rgba(106, 89, 206, 0.4)`,
19679
19680
  transition: "box-shadow 0.3s ease"
19680
19681
  } : {},
19681
19682
  ...!isLast ? { borderBottom: "var(--sc-content-item-divider, none)" } : {}
@@ -20136,7 +20137,8 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
20136
20137
  color: "var(--sc-content-text-secondary-color)"
20137
20138
  },
20138
20139
  linkButton: {
20139
- backgroundColor: "var(--sc-color-primary, #6366f1)",
20140
+ // purple[4] = #6a59ce — design system primary purple, used as fallback when --sc-color-primary is not set
20141
+ backgroundColor: `var(--sc-color-primary, ${purple[4]})`,
20140
20142
  color: "#ffffff"
20141
20143
  },
20142
20144
  categoryHeader: {
@@ -20169,7 +20171,8 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
20169
20171
  color: "var(--sc-content-text-secondary-color)"
20170
20172
  },
20171
20173
  linkButton: {
20172
- backgroundColor: "var(--sc-color-primary, #6366f1)",
20174
+ // purple[4] = #6a59ce — design system primary purple, used as fallback when --sc-color-primary is not set
20175
+ backgroundColor: `var(--sc-color-primary, ${purple[4]})`,
20173
20176
  color: "#ffffff"
20174
20177
  },
20175
20178
  categoryHeader: {
@@ -20703,7 +20706,7 @@ Please report this to https://github.com/markedjs/marked.`, e2) {
20703
20706
  }
20704
20707
 
20705
20708
  // src/version.ts
20706
- var SDK_VERSION = "2.8.0-canary.48";
20709
+ var SDK_VERSION = "2.8.0-canary.49";
20707
20710
 
20708
20711
  // src/types.ts
20709
20712
  var SDK_SCHEMA_VERSION = "2.0";
@@ -42029,7 +42032,7 @@ ${cssRules}
42029
42032
  }
42030
42033
 
42031
42034
  // src/index.ts
42032
- var RUNTIME_SDK_BUILD = true ? `${"2026-04-07T01:50:24.011Z"} (${"71844b3b77d"})` : "dev";
42035
+ var RUNTIME_SDK_BUILD = true ? `${"2026-04-07T17:40:37.868Z"} (${"abdf6edd52c"})` : "dev";
42033
42036
  if (typeof window !== "undefined") {
42034
42037
  console.log(`[Syntro Runtime] Build: ${RUNTIME_SDK_BUILD}`);
42035
42038
  const existing = window.SynOS;