sunpeak 0.5.15 → 0.5.17

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.
@@ -10,6 +10,22 @@
10
10
  /* Configure dark mode to use data-theme attribute (OpenAI SDK standard) */
11
11
  @custom-variant dark (&:where([data-theme="dark"], [data-theme="dark"] *));
12
12
 
13
+ /*
14
+ * Ensure critical OpenAI SDK color variables are available in consuming packages
15
+ * These override any conflicting definitions from consuming package's Tailwind config
16
+ */
17
+ @layer base {
18
+ :root,
19
+ :where([data-theme="light"]) {
20
+ --color-text: var(--gray-1000);
21
+ --color-text-secondary: var(--gray-500);
22
+ }
23
+
24
+ :where([data-theme="dark"]) {
25
+ --color-text-secondary: var(--gray-700);
26
+ }
27
+ }
28
+
13
29
  /* Custom utilities that use OpenAI SDK color variables */
14
30
  @utility bg-sidebar {
15
31
  background-color: var(--color-surface-secondary);