domma-js 0.22.0 → 0.22.3

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.
@@ -1,9 +1,9 @@
1
1
  /*!
2
- * Domma Elements CSS v0.22.0
2
+ * Domma Elements CSS v0.22.3
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-03-23T15:40:43.351Z
6
- * Commit: bbc80cb
5
+ * Built: 2026-04-15T20:27:40.864Z
6
+ * Commit: df7db80
7
7
  */
8
8
 
9
9
  /**
@@ -52,38 +52,42 @@
52
52
 
53
53
  .btn-primary {
54
54
  background-color: var(--dm-primary);
55
- color: var(--dm-white);
55
+ color: var(--dm-primary-text, var(--dm-white));
56
56
  }
57
57
 
58
58
  .btn-primary:hover:not(:disabled) {
59
59
  background-color: var(--dm-primary-hover);
60
+ color: var(--dm-primary-hover-text, var(--dm-primary-text, var(--dm-white)));
60
61
  }
61
62
 
62
63
  .btn-secondary {
63
64
  background-color: var(--dm-secondary);
64
- color: var(--dm-white);
65
+ color: var(--dm-secondary-text, var(--dm-white));
65
66
  }
66
67
 
67
68
  .btn-secondary:hover:not(:disabled) {
68
69
  background-color: var(--dm-secondary-hover);
70
+ color: var(--dm-secondary-hover-text, var(--dm-secondary-text, var(--dm-white)));
69
71
  }
70
72
 
71
73
  .btn-success {
72
74
  background-color: var(--dm-success);
73
- color: var(--dm-white);
75
+ color: var(--dm-success-text, var(--dm-white));
74
76
  }
75
77
 
76
78
  .btn-success:hover:not(:disabled) {
77
79
  background-color: var(--dm-success-hover);
80
+ color: var(--dm-success-hover-text, var(--dm-success-text, var(--dm-white)));
78
81
  }
79
82
 
80
83
  .btn-danger {
81
84
  background-color: var(--dm-danger);
82
- color: var(--dm-white);
85
+ color: var(--dm-danger-text, var(--dm-white));
83
86
  }
84
87
 
85
88
  .btn-danger:hover:not(:disabled) {
86
89
  background-color: var(--dm-danger-hover);
90
+ color: var(--dm-danger-hover-text, var(--dm-danger-text, var(--dm-white)));
87
91
  }
88
92
 
89
93
  .btn-warning {
@@ -95,17 +99,19 @@
95
99
  .btn-warning:hover:not(:disabled) {
96
100
  background-color: var(--dm-warning-hover);
97
101
  border-color: var(--dm-warning-hover);
102
+ color: var(--dm-warning-hover-text, var(--dm-warning-text));
98
103
  }
99
104
 
100
105
  .btn-info {
101
106
  background-color: var(--dm-info);
102
- color: var(--dm-white);
107
+ color: var(--dm-info-text, var(--dm-white));
103
108
  border: 1px solid var(--dm-info);
104
109
  }
105
110
 
106
111
  .btn-info:hover:not(:disabled) {
107
112
  background-color: var(--dm-info-hover);
108
113
  border-color: var(--dm-info-hover);
114
+ color: var(--dm-info-hover-text, var(--dm-info-text, var(--dm-white)));
109
115
  }
110
116
 
111
117
  .btn-outline {
@@ -116,7 +122,7 @@
116
122
 
117
123
  .btn-outline:hover:not(:disabled) {
118
124
  background-color: var(--dm-primary);
119
- color: var(--dm-white);
125
+ color: var(--dm-primary-text, var(--dm-white));
120
126
  }
121
127
 
122
128
  .btn-outline-success {
@@ -127,7 +133,7 @@
127
133
 
128
134
  .btn-outline-success:hover:not(:disabled) {
129
135
  background-color: var(--dm-success);
130
- color: var(--dm-white);
136
+ color: var(--dm-success-text, var(--dm-white));
131
137
  }
132
138
 
133
139
  .btn-outline-danger {
@@ -138,7 +144,7 @@
138
144
 
139
145
  .btn-outline-danger:hover:not(:disabled) {
140
146
  background-color: var(--dm-danger);
141
- color: var(--dm-white);
147
+ color: var(--dm-danger-text, var(--dm-white));
142
148
  }
143
149
 
144
150
  .btn-outline-warning {
@@ -160,7 +166,7 @@
160
166
 
161
167
  .btn-outline-info:hover:not(:disabled) {
162
168
  background-color: var(--dm-info);
163
- color: var(--dm-white);
169
+ color: var(--dm-info-text, var(--dm-white));
164
170
  }
165
171
 
166
172
  .btn-ghost {
@@ -1,9 +1,9 @@
1
1
  /*!
2
- * Domma Grid CSS v0.22.0
2
+ * Domma Grid CSS v0.22.3
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-03-23T15:40:43.345Z
6
- * Commit: bbc80cb
5
+ * Built: 2026-04-15T20:27:40.859Z
6
+ * Commit: df7db80
7
7
  */
8
8
 
9
9
  /**
@@ -1,9 +1,9 @@
1
1
  /*!
2
- * Domma Syntax Highlighting CSS v0.22.0
2
+ * Domma Syntax Highlighting CSS v0.22.3
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-03-23T15:40:43.355Z
6
- * Commit: bbc80cb
5
+ * Built: 2026-04-15T20:27:40.868Z
6
+ * Commit: df7db80
7
7
  */
8
8
 
9
9
  /**
@@ -1,9 +1,9 @@
1
1
  /*!
2
- * Domma Themes v0.22.0
2
+ * Domma Themes v0.22.3
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-03-23T15:40:43.325Z
6
- * Commit: bbc80cb
5
+ * Built: 2026-04-15T20:27:40.839Z
6
+ * Commit: df7db80
7
7
  */
8
8
 
9
9
  /**
@@ -486,6 +486,20 @@
486
486
  --dm-accent-2: #00b4d8; /* Bright cyan */
487
487
  --dm-accent-3: #0096c7; /* Medium blue */
488
488
  --dm-accent-4: #023e8a; /* Deep blue */
489
+
490
+ /* Button text contrast overrides (auto-generated) */
491
+ --dm-primary-text: #ffffff;
492
+ --dm-primary-hover-text: #1a1a1a;
493
+ --dm-secondary-text: #ffffff;
494
+ --dm-secondary-hover-text: #1a1a1a;
495
+ --dm-success-text: #1a1a1a;
496
+ --dm-success-hover-text: #1a1a1a;
497
+ --dm-danger-text: #ffffff;
498
+ --dm-danger-hover-text: #ffffff;
499
+ --dm-info-text: #1a1a1a;
500
+ --dm-info-hover-text: #1a1a1a;
501
+ --dm-warning-text: #1a1a1a;
502
+ --dm-warning-hover-text: #1a1a1a;
489
503
  }
490
504
 
491
505
  /**
@@ -692,6 +706,20 @@
692
706
  --dm-accent-2: #00b4d8; /* Bright cyan */
693
707
  --dm-accent-3: #0096c7; /* Medium blue */
694
708
  --dm-accent-4: #023e8a; /* Deep blue */
709
+
710
+ /* Button text contrast overrides (auto-generated) */
711
+ --dm-primary-text: #1a1a1a;
712
+ --dm-primary-hover-text: #1a1a1a;
713
+ --dm-secondary-text: #1a1a1a;
714
+ --dm-secondary-hover-text: #1a1a1a;
715
+ --dm-success-text: #1a1a1a;
716
+ --dm-success-hover-text: #1a1a1a;
717
+ --dm-danger-text: #1a1a1a;
718
+ --dm-danger-hover-text: #1a1a1a;
719
+ --dm-info-text: #1a1a1a;
720
+ --dm-info-hover-text: #1a1a1a;
721
+ --dm-warning-text: #1a1a1a;
722
+ --dm-warning-hover-text: #1a1a1a;
695
723
  }
696
724
 
697
725
  /**
@@ -905,6 +933,18 @@
905
933
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
906
934
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
907
935
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
936
+
937
+ /* Button text contrast overrides (auto-generated) */
938
+ --dm-primary-text: #ffffff;
939
+ --dm-primary-hover-text: #1a1a1a;
940
+ --dm-secondary-text: #ffffff;
941
+ --dm-secondary-hover-text: #1a1a1a;
942
+ --dm-success-text: #1a1a1a;
943
+ --dm-success-hover-text: #1a1a1a;
944
+ --dm-info-text: #ffffff;
945
+ --dm-info-hover-text: #1a1a1a;
946
+ --dm-warning-text: #1a1a1a;
947
+ --dm-warning-hover-text: #1a1a1a;
908
948
  }
909
949
 
910
950
  /**
@@ -1096,6 +1136,14 @@
1096
1136
  --dm-accent-2: #74c69d;
1097
1137
  --dm-accent-3: #52b788;
1098
1138
  --dm-accent-4: #1b4332;
1139
+
1140
+ /* Button text contrast overrides (auto-generated) */
1141
+ --dm-primary-text: #1a1a1a;
1142
+ --dm-primary-hover-text: #1a1a1a;
1143
+ --dm-secondary-text: #1a1a1a;
1144
+ --dm-secondary-hover-text: #1a1a1a;
1145
+ --dm-danger-text: #1a1a1a;
1146
+ --dm-danger-hover-text: #1a1a1a;
1099
1147
  }
1100
1148
 
1101
1149
  /**
@@ -1294,6 +1342,14 @@
1294
1342
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
1295
1343
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
1296
1344
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
1345
+
1346
+ /* Button text contrast overrides (auto-generated) */
1347
+ --dm-primary-text: #1a1a1a;
1348
+ --dm-primary-hover-text: #1a1a1a;
1349
+ --dm-secondary-text: #1a1a1a;
1350
+ --dm-secondary-hover-text: #1a1a1a;
1351
+ --dm-danger-text: #1a1a1a;
1352
+ --dm-danger-hover-text: #1a1a1a;
1297
1353
  }
1298
1354
 
1299
1355
  /**
@@ -1499,6 +1555,19 @@
1499
1555
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
1500
1556
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
1501
1557
 
1558
+ /* Button text contrast overrides (auto-generated) */
1559
+ --dm-primary-text: #1a1a1a;
1560
+ --dm-primary-hover-text: #1a1a1a;
1561
+ --dm-secondary-text: #1a1a1a;
1562
+ --dm-secondary-hover-text: #1a1a1a;
1563
+ --dm-success-text: #1a1a1a;
1564
+ --dm-success-hover-text: #1a1a1a;
1565
+ --dm-danger-text: #ffffff;
1566
+ --dm-danger-hover-text: #1a1a1a;
1567
+ --dm-info-text: #1a1a1a;
1568
+ --dm-info-hover-text: #1a1a1a;
1569
+ --dm-warning-text: #1a1a1a;
1570
+ --dm-warning-hover-text: #1a1a1a;
1502
1571
  }
1503
1572
  /**
1504
1573
  * Domma Royal Light Theme
@@ -1683,6 +1752,13 @@
1683
1752
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
1684
1753
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
1685
1754
 
1755
+ /* Button text contrast overrides (auto-generated) */
1756
+ --dm-primary-text: #1a1a1a;
1757
+ --dm-primary-hover-text: #1a1a1a;
1758
+ --dm-secondary-text: #1a1a1a;
1759
+ --dm-secondary-hover-text: #1a1a1a;
1760
+ --dm-danger-text: #1a1a1a;
1761
+ --dm-danger-hover-text: #1a1a1a;
1686
1762
  }
1687
1763
  /**
1688
1764
  * Domma Royal Dark Theme
@@ -1888,6 +1964,17 @@
1888
1964
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
1889
1965
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
1890
1966
 
1967
+ /* Button text contrast overrides (auto-generated) */
1968
+ --dm-primary-text: #ffffff;
1969
+ --dm-primary-hover-text: #1a1a1a;
1970
+ --dm-secondary-text: #ffffff;
1971
+ --dm-secondary-hover-text: #1a1a1a;
1972
+ --dm-success-text: #1a1a1a;
1973
+ --dm-success-hover-text: #1a1a1a;
1974
+ --dm-danger-text: #ffffff;
1975
+ --dm-danger-hover-text: #ffffff;
1976
+ --dm-info-text: #1a1a1a;
1977
+ --dm-info-hover-text: #1a1a1a;
1891
1978
  }
1892
1979
  /**
1893
1980
  * Domma Lemon Light Theme
@@ -2076,6 +2163,13 @@
2076
2163
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
2077
2164
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
2078
2165
 
2166
+ /* Button text contrast overrides (auto-generated) */
2167
+ --dm-primary-text: #1a1a1a;
2168
+ --dm-primary-hover-text: #1a1a1a;
2169
+ --dm-secondary-text: #1a1a1a;
2170
+ --dm-secondary-hover-text: #1a1a1a;
2171
+ --dm-danger-text: #1a1a1a;
2172
+ --dm-danger-hover-text: #1a1a1a;
2079
2173
  }
2080
2174
  /**
2081
2175
  * Domma Lemon Dark Theme
@@ -2288,6 +2382,19 @@
2288
2382
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
2289
2383
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
2290
2384
 
2385
+ /* Button text contrast overrides (auto-generated) */
2386
+ --dm-primary-text: #1a1a1a;
2387
+ --dm-primary-hover-text: #1a1a1a;
2388
+ --dm-secondary-text: #1a1a1a;
2389
+ --dm-secondary-hover-text: #1a1a1a;
2390
+ --dm-success-text: #1a1a1a;
2391
+ --dm-success-hover-text: #1a1a1a;
2392
+ --dm-danger-text: #ffffff;
2393
+ --dm-danger-hover-text: #ffffff;
2394
+ --dm-info-text: #1a1a1a;
2395
+ --dm-info-hover-text: #1a1a1a;
2396
+ --dm-warning-text: #1a1a1a;
2397
+ --dm-warning-hover-text: #1a1a1a;
2291
2398
  }
2292
2399
  /**
2293
2400
  * Domma Silver Light Theme
@@ -2472,6 +2579,13 @@
2472
2579
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
2473
2580
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
2474
2581
 
2582
+ /* Button text contrast overrides (auto-generated) */
2583
+ --dm-primary-text: #1a1a1a;
2584
+ --dm-primary-hover-text: #1a1a1a;
2585
+ --dm-secondary-text: #1a1a1a;
2586
+ --dm-secondary-hover-text: #1a1a1a;
2587
+ --dm-danger-text: #1a1a1a;
2588
+ --dm-danger-hover-text: #1a1a1a;
2475
2589
  }
2476
2590
  /**
2477
2591
  * Domma Silver Dark Theme
@@ -2677,6 +2791,17 @@
2677
2791
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
2678
2792
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
2679
2793
 
2794
+ /* Button text contrast overrides (auto-generated) */
2795
+ --dm-primary-text: #1a1a1a;
2796
+ --dm-primary-hover-text: #1a1a1a;
2797
+ --dm-secondary-text: #1a1a1a;
2798
+ --dm-secondary-hover-text: #1a1a1a;
2799
+ --dm-success-text: #1a1a1a;
2800
+ --dm-success-hover-text: #1a1a1a;
2801
+ --dm-danger-text: #ffffff;
2802
+ --dm-danger-hover-text: #ffffff;
2803
+ --dm-info-text: #1a1a1a;
2804
+ --dm-info-hover-text: #1a1a1a;
2680
2805
  }
2681
2806
  /**
2682
2807
  * Domma Charcoal Light Theme
@@ -2861,6 +2986,13 @@
2861
2986
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
2862
2987
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
2863
2988
 
2989
+ /* Button text contrast overrides (auto-generated) */
2990
+ --dm-primary-text: #1a1a1a;
2991
+ --dm-primary-hover-text: #ffffff;
2992
+ --dm-secondary-text: #1a1a1a;
2993
+ --dm-secondary-hover-text: #1a1a1a;
2994
+ --dm-danger-text: #1a1a1a;
2995
+ --dm-danger-hover-text: #1a1a1a;
2864
2996
  }
2865
2997
  /**
2866
2998
  * Domma Charcoal Dark Theme
@@ -3066,6 +3198,17 @@
3066
3198
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
3067
3199
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
3068
3200
 
3201
+ /* Button text contrast overrides (auto-generated) */
3202
+ --dm-primary-text: #1a1a1a;
3203
+ --dm-primary-hover-text: #ffffff;
3204
+ --dm-secondary-text: #ffffff;
3205
+ --dm-secondary-hover-text: #1a1a1a;
3206
+ --dm-success-text: #1a1a1a;
3207
+ --dm-success-hover-text: #1a1a1a;
3208
+ --dm-danger-text: #ffffff;
3209
+ --dm-danger-hover-text: #ffffff;
3210
+ --dm-info-text: #1a1a1a;
3211
+ --dm-info-hover-text: #1a1a1a;
3069
3212
  }
3070
3213
  /**
3071
3214
  * Domma Christmas Light Theme — "Frosty Morning"
@@ -3295,6 +3438,20 @@
3295
3438
  --dm-elevation-2: 0 4px 6px rgba(30, 80, 130, 0.09), 0 2px 4px rgba(30, 80, 130, 0.06);
3296
3439
  --dm-elevation-3: 0 10px 15px rgba(30, 80, 130, 0.09), 0 4px 6px rgba(30, 80, 130, 0.05);
3297
3440
  --dm-elevation-4: 0 20px 25px rgba(30, 80, 130, 0.12), 0 10px 10px rgba(30, 80, 130, 0.04);
3441
+
3442
+ /* Button text contrast overrides (auto-generated) */
3443
+ --dm-primary-text: #ffffff;
3444
+ --dm-primary-hover-text: #ffffff;
3445
+ --dm-secondary-text: #ffffff;
3446
+ --dm-secondary-hover-text: #ffffff;
3447
+ --dm-success-text: #ffffff;
3448
+ --dm-success-hover-text: #1a1a1a;
3449
+ --dm-danger-text: #ffffff;
3450
+ --dm-danger-hover-text: #ffffff;
3451
+ --dm-info-text: #ffffff;
3452
+ --dm-info-hover-text: #1a1a1a;
3453
+ --dm-warning-text: #1a1a1a;
3454
+ --dm-warning-hover-text: #1a1a1a;
3298
3455
  }
3299
3456
 
3300
3457
  /* ============================================================
@@ -3573,6 +3730,20 @@
3573
3730
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(180, 60, 40, 0.06);
3574
3731
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.45), 0 4px 6px rgba(180, 60, 40, 0.07);
3575
3732
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.5), 0 10px 10px rgba(180, 60, 40, 0.08);
3733
+
3734
+ /* Button text contrast overrides (auto-generated) */
3735
+ --dm-primary-text: #1a1a1a;
3736
+ --dm-primary-hover-text: #1a1a1a;
3737
+ --dm-secondary-text: #1a1a1a;
3738
+ --dm-secondary-hover-text: #1a1a1a;
3739
+ --dm-success-text: #1a1a1a;
3740
+ --dm-success-hover-text: #1a1a1a;
3741
+ --dm-danger-text: #1a1a1a;
3742
+ --dm-danger-hover-text: #1a1a1a;
3743
+ --dm-info-text: #1a1a1a;
3744
+ --dm-info-hover-text: #1a1a1a;
3745
+ --dm-warning-text: #1a1a1a;
3746
+ --dm-warning-hover-text: #1a1a1a;
3576
3747
  }
3577
3748
 
3578
3749
  /* ============================================================
@@ -3837,6 +4008,20 @@
3837
4008
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
3838
4009
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
3839
4010
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
4011
+
4012
+ /* Button text contrast overrides (auto-generated) */
4013
+ --dm-primary-text: #ffffff;
4014
+ --dm-primary-hover-text: #ffffff;
4015
+ --dm-secondary-text: #1a1a1a;
4016
+ --dm-secondary-hover-text: #ffffff;
4017
+ --dm-success-text: #1a1a1a;
4018
+ --dm-success-hover-text: #1a1a1a;
4019
+ --dm-danger-text: #1a1a1a;
4020
+ --dm-danger-hover-text: #ffffff;
4021
+ --dm-info-text: #1a1a1a;
4022
+ --dm-info-hover-text: #1a1a1a;
4023
+ --dm-warning-text: #1a1a1a;
4024
+ --dm-warning-hover-text: #1a1a1a;
3840
4025
  }
3841
4026
 
3842
4027
  /**
@@ -4051,6 +4236,20 @@
4051
4236
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
4052
4237
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
4053
4238
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
4239
+
4240
+ /* Button text contrast overrides (auto-generated) */
4241
+ --dm-primary-text: #1a1a1a;
4242
+ --dm-primary-hover-text: #1a1a1a;
4243
+ --dm-secondary-text: #1a1a1a;
4244
+ --dm-secondary-hover-text: #1a1a1a;
4245
+ --dm-success-text: #1a1a1a;
4246
+ --dm-success-hover-text: #1a1a1a;
4247
+ --dm-danger-text: #1a1a1a;
4248
+ --dm-danger-hover-text: #1a1a1a;
4249
+ --dm-info-text: #1a1a1a;
4250
+ --dm-info-hover-text: #1a1a1a;
4251
+ --dm-warning-text: #1a1a1a;
4252
+ --dm-warning-hover-text: #1a1a1a;
4054
4253
  }
4055
4254
 
4056
4255
  /**
@@ -4266,6 +4465,20 @@
4266
4465
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
4267
4466
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
4268
4467
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
4468
+
4469
+ /* Button text contrast overrides (auto-generated) */
4470
+ --dm-primary-text: #ffffff;
4471
+ --dm-primary-hover-text: #ffffff;
4472
+ --dm-secondary-text: #1a1a1a;
4473
+ --dm-secondary-hover-text: #ffffff;
4474
+ --dm-success-text: #1a1a1a;
4475
+ --dm-success-hover-text: #1a1a1a;
4476
+ --dm-danger-text: #1a1a1a;
4477
+ --dm-danger-hover-text: #1a1a1a;
4478
+ --dm-info-text: #1a1a1a;
4479
+ --dm-info-hover-text: #1a1a1a;
4480
+ --dm-warning-text: #1a1a1a;
4481
+ --dm-warning-hover-text: #1a1a1a;
4269
4482
  }
4270
4483
 
4271
4484
  /**
@@ -4480,6 +4693,20 @@
4480
4693
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
4481
4694
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
4482
4695
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
4696
+
4697
+ /* Button text contrast overrides (auto-generated) */
4698
+ --dm-primary-text: #1a1a1a;
4699
+ --dm-primary-hover-text: #1a1a1a;
4700
+ --dm-secondary-text: #1a1a1a;
4701
+ --dm-secondary-hover-text: #1a1a1a;
4702
+ --dm-success-text: #1a1a1a;
4703
+ --dm-success-hover-text: #1a1a1a;
4704
+ --dm-danger-text: #1a1a1a;
4705
+ --dm-danger-hover-text: #1a1a1a;
4706
+ --dm-info-text: #1a1a1a;
4707
+ --dm-info-hover-text: #1a1a1a;
4708
+ --dm-warning-text: #1a1a1a;
4709
+ --dm-warning-hover-text: #1a1a1a;
4483
4710
  }
4484
4711
 
4485
4712
  /**
@@ -4700,6 +4927,20 @@
4700
4927
  --dm-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
4701
4928
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
4702
4929
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
4930
+
4931
+ /* Button text contrast overrides (auto-generated) */
4932
+ --dm-primary-text: #ffffff;
4933
+ --dm-primary-hover-text: #ffffff;
4934
+ --dm-secondary-text: #ffffff;
4935
+ --dm-secondary-hover-text: #ffffff;
4936
+ --dm-success-text: #ffffff;
4937
+ --dm-success-hover-text: #1a1a1a;
4938
+ --dm-danger-text: #ffffff;
4939
+ --dm-danger-hover-text: #ffffff;
4940
+ --dm-info-text: #ffffff;
4941
+ --dm-info-hover-text: #1a1a1a;
4942
+ --dm-warning-text: #1a1a1a;
4943
+ --dm-warning-hover-text: #1a1a1a;
4703
4944
  }
4704
4945
 
4705
4946
  /* Syntax highlighting tokens for grayve-light */
@@ -4935,6 +5176,20 @@
4935
5176
  --dm-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
4936
5177
  --dm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
4937
5178
  --dm-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
5179
+
5180
+ /* Button text contrast overrides (auto-generated) */
5181
+ --dm-primary-text: #1a1a1a;
5182
+ --dm-primary-hover-text: #1a1a1a;
5183
+ --dm-secondary-text: #ffffff;
5184
+ --dm-secondary-hover-text: #1a1a1a;
5185
+ --dm-success-text: #1a1a1a;
5186
+ --dm-success-hover-text: #1a1a1a;
5187
+ --dm-danger-text: #ffffff;
5188
+ --dm-danger-hover-text: #1a1a1a;
5189
+ --dm-info-text: #1a1a1a;
5190
+ --dm-info-hover-text: #1a1a1a;
5191
+ --dm-warning-text: #1a1a1a;
5192
+ --dm-warning-hover-text: #1a1a1a;
4938
5193
  }
4939
5194
 
4940
5195
  /* Syntax highlighting tokens for grayve-dark */
@@ -5167,6 +5422,20 @@
5167
5422
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
5168
5423
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
5169
5424
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
5425
+
5426
+ /* Button text contrast overrides (auto-generated) */
5427
+ --dm-primary-text: #1a1a1a;
5428
+ --dm-primary-hover-text: #1a1a1a;
5429
+ --dm-secondary-text: #1a1a1a;
5430
+ --dm-secondary-hover-text: #1a1a1a;
5431
+ --dm-success-text: #1a1a1a;
5432
+ --dm-success-hover-text: #1a1a1a;
5433
+ --dm-danger-text: #1a1a1a;
5434
+ --dm-danger-hover-text: #1a1a1a;
5435
+ --dm-info-text: #1a1a1a;
5436
+ --dm-info-hover-text: #1a1a1a;
5437
+ --dm-warning-text: #1a1a1a;
5438
+ --dm-warning-hover-text: #1a1a1a;
5170
5439
  }
5171
5440
 
5172
5441
  /**
@@ -5383,6 +5652,20 @@
5383
5652
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
5384
5653
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
5385
5654
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
5655
+
5656
+ /* Button text contrast overrides (auto-generated) */
5657
+ --dm-primary-text: #1a1a1a;
5658
+ --dm-primary-hover-text: #1a1a1a;
5659
+ --dm-secondary-text: #1a1a1a;
5660
+ --dm-secondary-hover-text: #1a1a1a;
5661
+ --dm-success-text: #1a1a1a;
5662
+ --dm-success-hover-text: #1a1a1a;
5663
+ --dm-danger-text: #1a1a1a;
5664
+ --dm-danger-hover-text: #1a1a1a;
5665
+ --dm-info-text: #1a1a1a;
5666
+ --dm-info-hover-text: #1a1a1a;
5667
+ --dm-warning-text: #1a1a1a;
5668
+ --dm-warning-hover-text: #1a1a1a;
5386
5669
  }
5387
5670
 
5388
5671
  /**
@@ -5600,6 +5883,20 @@
5600
5883
  --dm-elevation-2: 0 4px 6px rgba(139, 115, 53, 0.09), 0 2px 4px rgba(139, 115, 53, 0.06);
5601
5884
  --dm-elevation-3: 0 10px 15px rgba(139, 115, 53, 0.09), 0 4px 6px rgba(139, 115, 53, 0.05);
5602
5885
  --dm-elevation-4: 0 20px 25px rgba(139, 115, 53, 0.12), 0 10px 10px rgba(139, 115, 53, 0.04);
5886
+
5887
+ /* Button text contrast overrides (auto-generated) */
5888
+ --dm-primary-text: #1a1a1a;
5889
+ --dm-primary-hover-text: #1a1a1a;
5890
+ --dm-secondary-text: #1a1a1a;
5891
+ --dm-secondary-hover-text: #1a1a1a;
5892
+ --dm-success-text: #1a1a1a;
5893
+ --dm-success-hover-text: #1a1a1a;
5894
+ --dm-danger-text: #ffffff;
5895
+ --dm-danger-hover-text: #ffffff;
5896
+ --dm-info-text: #ffffff;
5897
+ --dm-info-hover-text: #1a1a1a;
5898
+ --dm-warning-text: #1a1a1a;
5899
+ --dm-warning-hover-text: #1a1a1a;
5603
5900
  }
5604
5901
 
5605
5902
  /**
@@ -5816,5 +6113,19 @@
5816
6113
  --dm-elevation-2: 0 4px 6px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.2);
5817
6114
  --dm-elevation-3: 0 10px 15px rgba(0, 0, 0, 0.35), 0 4px 6px rgba(0, 0, 0, 0.2);
5818
6115
  --dm-elevation-4: 0 20px 25px rgba(0, 0, 0, 0.4), 0 10px 10px rgba(0, 0, 0, 0.2);
6116
+
6117
+ /* Button text contrast overrides (auto-generated) */
6118
+ --dm-primary-text: #1a1a1a;
6119
+ --dm-primary-hover-text: #1a1a1a;
6120
+ --dm-secondary-text: #1a1a1a;
6121
+ --dm-secondary-hover-text: #1a1a1a;
6122
+ --dm-success-text: #1a1a1a;
6123
+ --dm-success-hover-text: #1a1a1a;
6124
+ --dm-danger-text: #1a1a1a;
6125
+ --dm-danger-hover-text: #1a1a1a;
6126
+ --dm-info-text: #1a1a1a;
6127
+ --dm-info-hover-text: #1a1a1a;
6128
+ --dm-warning-text: #1a1a1a;
6129
+ --dm-warning-hover-text: #1a1a1a;
5819
6130
  }
5820
6131