organify-ui 0.3.36 → 0.3.37

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/globals.css +16 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "organify-ui",
3
- "version": "0.3.36",
3
+ "version": "0.3.37",
4
4
  "description": "Organify Design System — Liquid Glass UI components with glassmorphism, branded icons, i18n, and theme system for React",
5
5
  "license": "MIT",
6
6
  "author": "Organify <dev@organify.studio>",
package/src/globals.css CHANGED
@@ -291,6 +291,10 @@
291
291
  ═══════════════════════════════════════════════════════ */
292
292
  .theme-cream,
293
293
  [data-theme='light'] {
294
+ /* Override Tailwind v4 colour tokens so bg-void / bg-surface / bg-elevated react to theme */
295
+ --color-void: #F4F4F7;
296
+ --color-surface: #FCFCFD;
297
+ --color-elevated: #FFFFFF;
294
298
  --org-bg-void: #F4F4F7;
295
299
  --org-bg-surface: #FCFCFD;
296
300
  --org-bg-void: #F4F4F7;
@@ -345,6 +349,10 @@
345
349
  Dark Theme (explicit)
346
350
  ═══════════════════════════════════════════════════════ */
347
351
  [data-theme='dark'] {
352
+ /* Override Tailwind v4 colour tokens so bg-void / bg-surface / bg-elevated react to theme */
353
+ --color-void: #0D0A1A;
354
+ --color-surface: #110E22;
355
+ --color-elevated: #1A1530;
348
356
  --org-bg-void: #0D0A1A;
349
357
  --org-bg-surface: #110E22;
350
358
  --org-bg-elevated: #1A1530;
@@ -397,6 +405,10 @@
397
405
  Fluid Theme — vibrant mesh, neon glows, deep blacks
398
406
  ═══════════════════════════════════════════════════════ */
399
407
  [data-theme='fluid'] {
408
+ /* Override Tailwind v4 colour tokens */
409
+ --color-void: #0D0A1A;
410
+ --color-surface: #1E1B2E;
411
+ --color-elevated: #1A1530;
400
412
  --org-bg-void: #0D0A1A;
401
413
  --org-bg-surface: #1E1B2E;
402
414
  --org-bg-void: #0D0A1A;
@@ -437,6 +449,10 @@
437
449
  refraction effects, grain texture, purple glow
438
450
  ═══════════════════════════════════════════════════════ */
439
451
  [data-theme='liquid'] {
452
+ /* Override Tailwind v4 colour tokens */
453
+ --color-void: #0D0A1A;
454
+ --color-surface: #110E22;
455
+ --color-elevated: #1A1530;
440
456
  --org-primary: #7C3AED;
441
457
  --org-primary-light: #A78BFA;
442
458
  --org-primary-soft: rgba(124, 58, 237, 0.20);