microboard-ui-temp 0.8.1 → 0.9.0

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.
package/dist/spa.css CHANGED
@@ -91,7 +91,7 @@
91
91
  /* src/entities/account/AuthForm.module.css */
92
92
  .wrapper_nFyDWw {
93
93
  display: flex;
94
- background-color: #fff;
94
+ background-color: var(--background-surface-default);
95
95
  flex-direction: column;
96
96
  justify-content: center;
97
97
  align-items: stretch;
@@ -110,7 +110,7 @@
110
110
 
111
111
  .link_nFyDWw {
112
112
  text-decoration: none;
113
- color: #6c7173;
113
+ color: var(--text-base-secondary);
114
114
  display: flex;
115
115
  justify-content: center;
116
116
  align-self: flex-start;
@@ -126,7 +126,7 @@
126
126
  }
127
127
 
128
128
  .link_nFyDWw:visited {
129
- color: #6c7173;
129
+ color: var(--text-base-secondary);
130
130
  }
131
131
 
132
132
  .title_nFyDWw {
@@ -141,13 +141,13 @@
141
141
  }
142
142
 
143
143
  .button_nFyDWw {
144
- color: #fff;
145
144
  cursor: pointer;
146
145
  outline-color: #0000;
147
146
  box-sizing: border-box;
148
147
  display: flex;
149
- background-color: #14151a;
150
- border: 1px solid #14151a;
148
+ border: 1px solid var(--text-base-primary);
149
+ background-color: var(--text-base-primary);
150
+ color: var(--background-surface-default);
151
151
  border-radius: 12px;
152
152
  justify-content: center;
153
153
  align-items: center;
@@ -161,16 +161,16 @@
161
161
  }
162
162
 
163
163
  .button_nFyDWw:disabled {
164
- color: #0a0f2940;
165
- background-color: #e9eaec;
166
- border-color: #e9eaec;
164
+ border-color: var(--border-action-normal);
165
+ background-color: var(--border-action-normal);
166
+ color: var(--text-base-quaternary);
167
167
  }
168
168
 
169
169
  .button_nFyDWw:disabled:hover {
170
170
  cursor: not-allowed;
171
- color: #0a0f2940;
172
- background-color: #e9eaec;
173
- border-color: #e9eaec;
171
+ border-color: var(--border-action-normal);
172
+ background-color: var(--border-action-normal);
173
+ color: var(--text-base-quaternary);
174
174
  }
175
175
 
176
176
  .button_nFyDWw:active {
@@ -178,7 +178,7 @@
178
178
  }
179
179
 
180
180
  .button_nFyDWw:hover {
181
- background-color: #1f2228;
181
+ opacity: .88;
182
182
  }
183
183
 
184
184
  .forgot_nFyDWw {
@@ -489,6 +489,103 @@
489
489
  color: #0a0f2940;
490
490
  }
491
491
 
492
+ [data-theme="dark"] .secondary_XNHIwg {
493
+ --background-color: var(--background-button-secondary);
494
+ --background-hover-color: var(--background-button-secondary-hover);
495
+ --background-active-color: var(--background-button-secondary-hover);
496
+ --background-disabled-color: var(--background-button-secondary);
497
+ --content-color: var(--text-base-primary);
498
+ --content-hover-color: var(--text-base-primary);
499
+ --content-disabled-color: #e8e9f04d;
500
+ }
501
+
502
+ [data-theme="dark"] .tertiary_XNHIwg {
503
+ --background-color: #2a2b34;
504
+ --background-hover-color: #373842;
505
+ --background-active-color: #373842;
506
+ --content-color: var(--text-base-primary);
507
+ --content-hover-color: var(--text-base-primary);
508
+ --content-disabled-color: #e8e9f040;
509
+ }
510
+
511
+ [data-theme="dark"] .primary_XNHIwg {
512
+ color: #14151a;
513
+ background-color: #e8e9f0;
514
+ border-color: #34353e;
515
+ }
516
+
517
+ [data-theme="dark"] .primary_XNHIwg:hover:not(:disabled) {
518
+ color: #14151a;
519
+ background-color: #d2d4de;
520
+ }
521
+
522
+ [data-theme="dark"] .primary_XNHIwg:disabled {
523
+ color: #e8e9f040;
524
+ background-color: #34353e;
525
+ border-color: #34353e;
526
+ }
527
+
528
+ [data-theme="dark"] .tertiary_XNHIwg {
529
+ border-color: var(--border-action-normal);
530
+ color: var(--text-base-primary);
531
+ background-color: #2a2b34;
532
+ }
533
+
534
+ [data-theme="dark"] .tertiary_XNHIwg:hover:not(:disabled) {
535
+ color: var(--text-base-primary);
536
+ background-color: #373842;
537
+ }
538
+
539
+ [data-theme="dark"] .ghost_XNHIwg {
540
+ color: var(--text-base-secondary);
541
+ }
542
+
543
+ [data-theme="dark"] .ghost_XNHIwg:hover {
544
+ color: var(--text-base-secondary);
545
+ background-color: #e8e9f00f;
546
+ }
547
+
548
+ [data-theme="dark"] .ghost_XNHIwg:disabled {
549
+ color: #e8e9f040;
550
+ }
551
+
552
+ [data-theme="dark"] .ghostFilled_XNHIwg {
553
+ color: var(--text-base-secondary);
554
+ background-color: #e8e9f00f;
555
+ }
556
+
557
+ [data-theme="dark"] .ghostFilled_XNHIwg:disabled {
558
+ color: #e8e9f040;
559
+ }
560
+
561
+ [data-theme="dark"] .quaternary_XNHIwg {
562
+ color: var(--text-base-primary);
563
+ background-color: #e8e9f00f;
564
+ }
565
+
566
+ [data-theme="dark"] .quaternary_XNHIwg:disabled {
567
+ color: var(--text-base-primary);
568
+ background-color: #e8e9f00f;
569
+ }
570
+
571
+ [data-theme="dark"] .quaternary_XNHIwg:disabled {
572
+ color: #e8e9f040;
573
+ }
574
+
575
+ [data-theme="dark"] .quaternary_XNHIwg:hover:not(:disabled) {
576
+ color: var(--text-base-primary);
577
+ background-color: #e8e9f01a;
578
+ }
579
+
580
+ [data-theme="dark"] .black_XNHIwg {
581
+ --background-color: #e8e9f0;
582
+ --background-hover-color: #d2d4de;
583
+ --background-active-color: #d2d4de;
584
+ --content-color: #14151a;
585
+ --content-hover-color: #14151a;
586
+ --content-active-color: #14151a;
587
+ }
588
+
492
589
  .loader_XNHIwg {
493
590
  display: flex;
494
591
  animation: rotate 2s linear infinite;
@@ -1685,23 +1782,24 @@ body {
1685
1782
  }
1686
1783
 
1687
1784
  .inputLabel_2Ex0qA.disabled_2Ex0qA {
1688
- color: #0a0f2940;
1785
+ color: var(--text-base-quaternary);
1689
1786
  }
1690
1787
 
1691
1788
  .input_2Ex0qA {
1692
1789
  outline: none;
1693
- color: #0f1324;
1790
+ color: var(--text-base-primary);
1791
+ background-color: #0000;
1694
1792
  width: 100%;
1695
1793
  font-family: Manrope, Arial;
1696
1794
  font-size: 14px;
1697
1795
  }
1698
1796
 
1699
1797
  .input_2Ex0qA:disabled, .input_2Ex0qA:disabled::placeholder {
1700
- color: #0a0f2940;
1798
+ color: var(--text-base-quaternary);
1701
1799
  }
1702
1800
 
1703
1801
  .input_2Ex0qA::placeholder {
1704
- color: #0f132499;
1802
+ color: var(--text-base-secondary);
1705
1803
  font-family: Manrope, Arial;
1706
1804
  }
1707
1805
 
@@ -1710,7 +1808,7 @@ body {
1710
1808
  }
1711
1809
 
1712
1810
  .inputHelperText_2Ex0qA {
1713
- color: #0f132499;
1811
+ color: var(--text-base-secondary);
1714
1812
  font-size: 14px;
1715
1813
  }
1716
1814
 
@@ -1726,7 +1824,8 @@ body {
1726
1824
 
1727
1825
  .inputContainer_2Ex0qA {
1728
1826
  display: flex;
1729
- border: 1px solid #dee0e3;
1827
+ border: 1px solid var(--border-action-normal);
1828
+ background-color: var(--background-button-secondary);
1730
1829
  border-radius: 12px;
1731
1830
  width: 100%;
1732
1831
  padding: 10px 12px;
@@ -1779,7 +1878,8 @@ body {
1779
1878
  outline: none;
1780
1879
  resize: none;
1781
1880
  overflow: hidden;
1782
- color: #0f1324;
1881
+ color: var(--text-base-primary);
1882
+ background-color: #0000;
1783
1883
  width: 100%;
1784
1884
  height: 20px;
1785
1885
  font-family: Manrope, Arial;
@@ -13309,7 +13409,7 @@ audio::-webkit-media-controls-enclosure {
13309
13409
  .NavbarWrapper .Logo {
13310
13410
  display: flex;
13311
13411
  text-decoration: none;
13312
- color: #14151a;
13412
+ color: var(--text-base-primary);
13313
13413
  align-items: center;
13314
13414
  gap: 4px;
13315
13415
  height: 48px;
@@ -13319,7 +13419,7 @@ audio::-webkit-media-controls-enclosure {
13319
13419
  }
13320
13420
 
13321
13421
  .NavbarWrapper .Logo:visited {
13322
- color: #14151a;
13422
+ color: var(--text-base-primary);
13323
13423
  }
13324
13424
 
13325
13425
  .NavbarWrapper .Link {
@@ -13346,10 +13446,11 @@ audio::-webkit-media-controls-enclosure {
13346
13446
 
13347
13447
  .NavbarWrapper .LinkActive {
13348
13448
  box-sizing: border-box;
13349
- color: #14151a;
13449
+ background-color: var(--background-button-secondary);
13450
+ border: 1px solid #0000;
13451
+ border: 1px solid var(--border-action-normal);
13452
+ color: var(--text-base-primary);
13350
13453
  text-decoration: none;
13351
- background-color: #fff;
13352
- border: 1px solid #dee0e3;
13353
13454
  border-radius: 10px;
13354
13455
  height: 32px;
13355
13456
  padding: 6px 10px;
@@ -13358,13 +13459,13 @@ audio::-webkit-media-controls-enclosure {
13358
13459
  }
13359
13460
 
13360
13461
  .NavbarWrapper .LinkActive:hover {
13361
- color: #14151a;
13362
- background-color: #f7f7f8;
13462
+ background-color: var(--background-button-secondary-hover);
13463
+ color: var(--text-base-primary);
13363
13464
  }
13364
13465
 
13365
13466
  .NavbarWrapper .LinkActive:active {
13467
+ background-color: var(--background-button-secondary);
13366
13468
  outline: 2px solid #c8b2ff80;
13367
- background-color: #fff;
13368
13469
  border: 1px solid #b78af0;
13369
13470
  }
13370
13471
 
@@ -13387,6 +13488,28 @@ audio::-webkit-media-controls-enclosure {
13387
13488
  gap: 16px;
13388
13489
  }
13389
13490
 
13491
+ .NavbarActions {
13492
+ display: flex;
13493
+ align-items: center;
13494
+ gap: 8px;
13495
+ }
13496
+
13497
+ .ThemeToggle {
13498
+ display: flex;
13499
+ cursor: pointer;
13500
+ color: var(--icon-base-primary);
13501
+ border-radius: 8px;
13502
+ justify-content: center;
13503
+ align-items: center;
13504
+ width: 32px;
13505
+ height: 32px;
13506
+ transition: background-color .15s;
13507
+ }
13508
+
13509
+ .ThemeToggle:hover {
13510
+ background-color: var(--background-button-secondary-hover);
13511
+ }
13512
+
13390
13513
  .Link.Back {
13391
13514
  color: var(--icon-base-secondary);
13392
13515
  display: flex;
@@ -13409,7 +13532,7 @@ audio::-webkit-media-controls-enclosure {
13409
13532
 
13410
13533
  @media screen and (max-width: 640px) {
13411
13534
  .NavbarWrapper {
13412
- border-bottom: 1px solid #dee0e3;
13535
+ border-bottom: 1px solid var(--border-action-normal);
13413
13536
  }
13414
13537
 
13415
13538
  .NavbarWrapper .Links {
@@ -13463,7 +13586,7 @@ audio::-webkit-media-controls-enclosure {
13463
13586
  }
13464
13587
 
13465
13588
  .policy_hbU_PQ {
13466
- color: #0f132499;
13589
+ color: var(--text-base-secondary);
13467
13590
  text-align: center;
13468
13591
  margin-top: auto;
13469
13592
  margin-bottom: 40px;
@@ -13473,14 +13596,14 @@ audio::-webkit-media-controls-enclosure {
13473
13596
 
13474
13597
  .policyLink_hbU_PQ {
13475
13598
  position: relative;
13476
- color: #0f132499;
13599
+ color: var(--text-base-secondary);
13477
13600
  text-decoration: none;
13478
13601
  }
13479
13602
 
13480
13603
  .policyLink_hbU_PQ:after {
13481
13604
  content: "";
13482
13605
  position: absolute;
13483
- background-color: #0a0f2914;
13606
+ background-color: var(--border-action-normal);
13484
13607
  width: 100%;
13485
13608
  height: 2px;
13486
13609
  bottom: -3px;
@@ -14504,6 +14627,25 @@ audio::-webkit-media-controls-enclosure {
14504
14627
  --absolute-position-panel-padding: 12px;
14505
14628
  }
14506
14629
 
14630
+ [data-theme="dark"] {
14631
+ --background-surface-default: #1e1f26;
14632
+ --background-button-secondary: #1e1f26;
14633
+ --background-button-secondary-hover: #2a2b34;
14634
+ --background-badge-purple-disabled: #281c3c;
14635
+ --background-badge-gray: #2d2e37;
14636
+ --background-accent-purple: #924fe8;
14637
+ --border-action-normal: #34353e;
14638
+ --border-action-focus: #924fe8;
14639
+ --border-select-primary: #924fe8;
14640
+ --text-base-primary: #e8e9f0;
14641
+ --text-base-secondary: #e8e9f099;
14642
+ --text-base-quaternary: #e8e9f040;
14643
+ --text-accent-purple: #ac78f5;
14644
+ --icon-base-primary: #e8e9f0;
14645
+ --icon-base-secondary: #9496a5;
14646
+ --icon-accent-purple: #924fe8;
14647
+ }
14648
+
14507
14649
  * {
14508
14650
  box-sizing: border-box;
14509
14651
  background: none;
@@ -14523,6 +14665,7 @@ html {
14523
14665
 
14524
14666
  body {
14525
14667
  color: var(--text-base-primary);
14668
+ background-color: var(--background-surface-default);
14526
14669
  font-optical-sizing: auto;
14527
14670
  font-family: Manrope, sans-serif;
14528
14671
  font-size: 1.6rem;
@@ -14549,3 +14692,23 @@ input:-webkit-autofill:focus {
14549
14692
  input:-webkit-autofill:active {
14550
14693
  -webkit-box-shadow: inset 0 0 0 30px #fff !important;
14551
14694
  }
14695
+
14696
+ [data-theme="dark"] input:-webkit-autofill {
14697
+ -webkit-text-fill-color: #e8e9f0 !important;
14698
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14699
+ }
14700
+
14701
+ [data-theme="dark"] input:-webkit-autofill:hover {
14702
+ -webkit-text-fill-color: #e8e9f0 !important;
14703
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14704
+ }
14705
+
14706
+ [data-theme="dark"] input:-webkit-autofill:focus {
14707
+ -webkit-text-fill-color: #e8e9f0 !important;
14708
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14709
+ }
14710
+
14711
+ [data-theme="dark"] input:-webkit-autofill:active {
14712
+ -webkit-text-fill-color: #e8e9f0 !important;
14713
+ -webkit-box-shadow: inset 0 0 0 30px #1e1f26 !important;
14714
+ }