shogun-button-react 1.3.41 → 1.3.42

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.
@@ -231,7 +231,7 @@
231
231
  margin: 0;
232
232
  font-size: 1.5rem;
233
233
  font-weight: 600;
234
- color: #111827;
234
+ color: var(--shogun-text);
235
235
  text-align: center;
236
236
  width: 100%;
237
237
  }
@@ -438,31 +438,17 @@
438
438
 
439
439
  .shogun-prominent-toggle {
440
440
  font-weight: 600;
441
- color: #3b82f6;
441
+ color: var(--shogun-primary);
442
442
  padding: 8px 16px;
443
443
  margin-top: 16px;
444
- border: 1px solid #e5e7eb;
444
+ border: none;
445
445
  border-radius: 6px;
446
- background-color: #f9fafb;
446
+ background-color: transparent;
447
447
  transition: all 0.2s ease;
448
448
  }
449
449
 
450
450
  .shogun-prominent-toggle:hover {
451
- background-color: #f3f4f6;
452
- border-color: #d1d5db;
453
- }
454
-
455
- [data-shogun-theme="dark"] .shogun-prominent-toggle {
456
- background-color: #1f2937;
457
- border-color: #374151;
458
- color: #60a5fa;
459
- }
460
-
461
- [data-shogun-theme="dark"] .shogun-prominent-toggle:hover {
462
- background-color: #111827;
463
- border-color: #4b5563;
451
+ text-decoration: underline;
464
452
  }
465
453
 
466
- [data-shogun-theme="dark"] .shogun-modal-header h2 {
467
- color: #f9fafb;
468
- }
454
+ /* Redundant dark theme styles removed */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shogun-button-react",
3
3
  "description": "Shogun connector button",
4
- "version": "1.3.41",
4
+ "version": "1.3.42",
5
5
  "files": [
6
6
  "dist",
7
7
  "src/styles/index.css"
@@ -231,7 +231,7 @@
231
231
  margin: 0;
232
232
  font-size: 1.5rem;
233
233
  font-weight: 600;
234
- color: #111827;
234
+ color: var(--shogun-text);
235
235
  text-align: center;
236
236
  width: 100%;
237
237
  }
@@ -438,31 +438,17 @@
438
438
 
439
439
  .shogun-prominent-toggle {
440
440
  font-weight: 600;
441
- color: #3b82f6;
441
+ color: var(--shogun-primary);
442
442
  padding: 8px 16px;
443
443
  margin-top: 16px;
444
- border: 1px solid #e5e7eb;
444
+ border: none;
445
445
  border-radius: 6px;
446
- background-color: #f9fafb;
446
+ background-color: transparent;
447
447
  transition: all 0.2s ease;
448
448
  }
449
449
 
450
450
  .shogun-prominent-toggle:hover {
451
- background-color: #f3f4f6;
452
- border-color: #d1d5db;
453
- }
454
-
455
- [data-shogun-theme="dark"] .shogun-prominent-toggle {
456
- background-color: #1f2937;
457
- border-color: #374151;
458
- color: #60a5fa;
459
- }
460
-
461
- [data-shogun-theme="dark"] .shogun-prominent-toggle:hover {
462
- background-color: #111827;
463
- border-color: #4b5563;
451
+ text-decoration: underline;
464
452
  }
465
453
 
466
- [data-shogun-theme="dark"] .shogun-modal-header h2 {
467
- color: #f9fafb;
468
- }
454
+ /* Redundant dark theme styles removed */