microboard-ui-temp 0.9.0 → 0.9.2

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.
@@ -80,9 +80,18 @@
80
80
  --background-surface-default: #fff;
81
81
  --background-button-secondary: #fff;
82
82
  --background-button-secondary-hover: #f7f7f8;
83
+ --background-button-tertiary: #f5f6f7;
84
+ --background-button-tertiary-hover: #ececee;
85
+ --background-button-primary: #14151a;
86
+ --background-button-primary-hover: #1f2228;
87
+ --color-button-primary: #fff;
83
88
  --background-badge-purple-disabled: #f7f1fd;
84
89
  --background-badge-gray: #e9eaec;
85
90
  --background-accent-purple: #924fe8;
91
+ --background-hover-subtle: #0a0f290a;
92
+ --background-hover-subtle-strong: #0a0f2914;
93
+ --bg-action-secondary: #f5f6f7;
94
+ --bg-action-secondary-hover: #0a0f290f;
86
95
  --border-action-normal: #dedfe3;
87
96
  --border-action-focus: #924fe8;
88
97
  --border-select-primary: #924fe8;
@@ -90,9 +99,11 @@
90
99
  --text-base-secondary: #0f132499;
91
100
  --text-base-quaternary: #0a0f2940;
92
101
  --text-accent-purple: #9859e9;
102
+ --text-disabled: #b1b3bb;
93
103
  --icon-base-primary: #14151a;
94
104
  --icon-base-secondary: #696b76;
95
105
  --icon-accent-purple: #924fe8;
106
+ --scrollbar-thumb: #dee1e8;
96
107
  --absolute-position-panel-padding: 12px;
97
108
  }
98
109
 
@@ -100,9 +111,18 @@
100
111
  --background-surface-default: #1e1f26;
101
112
  --background-button-secondary: #1e1f26;
102
113
  --background-button-secondary-hover: #2a2b34;
114
+ --background-button-tertiary: #2a2b34;
115
+ --background-button-tertiary-hover: #373842;
116
+ --background-button-primary: #e8e9f0;
117
+ --background-button-primary-hover: #d2d4de;
118
+ --color-button-primary: #14151a;
103
119
  --background-badge-purple-disabled: #281c3c;
104
120
  --background-badge-gray: #2d2e37;
105
121
  --background-accent-purple: #924fe8;
122
+ --background-hover-subtle: #e8e9f00f;
123
+ --background-hover-subtle-strong: #e8e9f01a;
124
+ --bg-action-secondary: #26272f;
125
+ --bg-action-secondary-hover: #e8e9f014;
106
126
  --border-action-normal: #34353e;
107
127
  --border-action-focus: #924fe8;
108
128
  --border-select-primary: #924fe8;
@@ -110,9 +130,11 @@
110
130
  --text-base-secondary: #e8e9f099;
111
131
  --text-base-quaternary: #e8e9f040;
112
132
  --text-accent-purple: #ac78f5;
133
+ --text-disabled: #e8e9f04d;
113
134
  --icon-base-primary: #e8e9f0;
114
135
  --icon-base-secondary: #9496a5;
115
136
  --icon-accent-purple: #924fe8;
137
+ --scrollbar-thumb: #50525f;
116
138
  }
117
139
 
118
140
  * {
@@ -427,21 +449,21 @@ input:-webkit-autofill:active {
427
449
  }
428
450
 
429
451
  .secondary_XNHIwg {
430
- --background-color: #fff;
431
- --background-hover-color: #f7f7f8;
432
- --background-active-color: #f7f7f8;
433
- --background-disabled-color: #fff;
434
- --content-color: #14151a;
435
- --content-hover-color: #14151a;
452
+ --background-color: var(--background-button-secondary);
453
+ --background-hover-color: var(--background-button-secondary-hover);
454
+ --background-active-color: var(--background-button-secondary-hover);
455
+ --background-disabled-color: var(--background-button-secondary);
456
+ --content-color: var(--text-base-primary);
457
+ --content-hover-color: var(--text-base-primary);
436
458
  --content-active-color: #924fe8;
437
- --content-disabled-color: #b1b3bb;
459
+ --content-disabled-color: var(--text-disabled);
438
460
  --focus-outline-color: #e3d9ff;
439
461
  }
440
462
 
441
463
  .tertiary_XNHIwg {
442
- --background-color: #f5f6f7;
443
- --background-hover-color: #ececee;
444
- --background-active-color: #ececee;
464
+ --background-color: var(--background-button-tertiary);
465
+ --background-hover-color: var(--background-button-tertiary-hover);
466
+ --background-active-color: var(--background-button-tertiary-hover);
445
467
  --content-color: var(--text-base-primary);
446
468
  --content-hover-color: var(--text-base-primary);
447
469
  --content-active-color: var(--text-base-primary);
@@ -450,13 +472,13 @@ input:-webkit-autofill:active {
450
472
  }
451
473
 
452
474
  .black_XNHIwg {
453
- --background-color: #14151a;
454
- --background-hover-color: #1f2228;
455
- --background-active-color: #ececee;
456
- --background-disabled-color: #e9eaec;
457
- --content-color: #fff;
458
- --content-hover-color: var(--text-base-primary);
459
- --content-active-color: var(--text-base-primary);
475
+ --background-color: var(--background-button-primary);
476
+ --background-hover-color: var(--background-button-primary-hover);
477
+ --background-active-color: var(--background-button-primary-hover);
478
+ --background-disabled-color: var(--border-action-normal);
479
+ --content-color: var(--color-button-primary);
480
+ --content-hover-color: var(--color-button-primary);
481
+ --content-active-color: var(--color-button-primary);
460
482
  --content-disabled-color: var(--text-base-quaternary);
461
483
  --focus-outline-color: #e3d9ff;
462
484
  }
@@ -579,15 +601,15 @@ input:-webkit-autofill:active {
579
601
  }
580
602
 
581
603
  .primary_XNHIwg {
582
- color: #fff;
583
- background-color: #14151a;
584
- border: 1px solid #14151a;
604
+ border: 1px solid var(--background-button-primary);
605
+ background-color: var(--background-button-primary);
606
+ color: var(--color-button-primary);
585
607
  box-shadow: 0 1px 2px #14151a0d;
586
608
  }
587
609
 
588
610
  .primary_XNHIwg:hover:not(:disabled) {
589
- color: #fff;
590
- background-color: #1f2228;
611
+ background-color: var(--background-button-primary-hover);
612
+ color: var(--color-button-primary);
591
613
  }
592
614
 
593
615
  .primary_XNHIwg:active:not(:disabled) {
@@ -595,29 +617,29 @@ input:-webkit-autofill:active {
595
617
  }
596
618
 
597
619
  .primary_XNHIwg:disabled, .primary_XNHIwg:disabled:hover {
598
- color: #0a0f2940;
599
- background-color: #e9eaec;
600
- border-color: #e9eaec;
620
+ border-color: var(--border-action-normal);
621
+ background-color: var(--border-action-normal);
622
+ color: var(--text-base-quaternary);
601
623
  }
602
624
 
603
625
  .primary_XNHIwg.loading_XNHIwg {
604
- color: #fff;
605
- background-color: #14151a;
606
- border-color: #14151a;
626
+ border-color: var(--background-button-primary);
627
+ background-color: var(--background-button-primary);
628
+ color: var(--color-button-primary);
607
629
  }
608
630
 
609
631
  .quaternary_XNHIwg, .quaternary_XNHIwg:disabled {
610
- color: #14151a;
611
- background-color: #0a0f290a;
632
+ color: var(--text-base-primary);
633
+ background-color: var(--background-hover-subtle);
612
634
  }
613
635
 
614
636
  .quaternary_XNHIwg:disabled {
615
- color: #0a0f2940;
637
+ color: var(--text-disabled);
616
638
  }
617
639
 
618
640
  .quaternary_XNHIwg:hover:not(:disabled) {
619
- color: #14151a;
620
- background-color: #0a0f2914;
641
+ color: var(--text-base-primary);
642
+ background-color: var(--background-hover-subtle-strong);
621
643
  }
622
644
 
623
645
  .quaternary_XNHIwg:active:not(:disabled), .tertiary_XNHIwg:active:not(:disabled) {
@@ -626,24 +648,24 @@ input:-webkit-autofill:active {
626
648
  }
627
649
 
628
650
  .tertiary_XNHIwg {
629
- color: #14151a;
630
- background-color: #fff;
631
- border: 1px solid #dee0e3;
651
+ color: var(--text-base-primary);
652
+ background-color: var(--background-button-tertiary);
653
+ border: 1px solid var(--border-action-normal);
632
654
  }
633
655
 
634
656
  .tertiary_XNHIwg:hover:not(:disabled) {
635
- background-color: #f7f7f8;
657
+ background-color: var(--background-button-tertiary-hover);
636
658
  }
637
659
 
638
660
  .ghost_XNHIwg {
639
- color: #0f132499;
661
+ color: var(--text-base-secondary);
640
662
  background-color: #0000;
641
663
  font-weight: 600;
642
664
  }
643
665
 
644
666
  .ghost_XNHIwg:hover {
645
- color: #0a0f2999;
646
- background-color: #0a0f290a;
667
+ color: var(--text-base-secondary);
668
+ background-color: var(--background-hover-subtle);
647
669
  }
648
670
 
649
671
  .ghost_XNHIwg:active {
@@ -652,12 +674,12 @@ input:-webkit-autofill:active {
652
674
  }
653
675
 
654
676
  .ghost_XNHIwg:disabled {
655
- color: #0a0f2940;
677
+ color: var(--text-disabled);
656
678
  }
657
679
 
658
680
  .ghostFilled_XNHIwg {
659
- color: #0a0f2999;
660
- background-color: #0a0f290a;
681
+ color: var(--text-base-secondary);
682
+ background-color: var(--background-hover-subtle);
661
683
  font-weight: 600;
662
684
  }
663
685
 
@@ -667,104 +689,7 @@ input:-webkit-autofill:active {
667
689
  }
668
690
 
669
691
  .ghostFilled_XNHIwg:disabled {
670
- color: #0a0f2940;
671
- }
672
-
673
- [data-theme="dark"] .secondary_XNHIwg {
674
- --background-color: var(--background-button-secondary);
675
- --background-hover-color: var(--background-button-secondary-hover);
676
- --background-active-color: var(--background-button-secondary-hover);
677
- --background-disabled-color: var(--background-button-secondary);
678
- --content-color: var(--text-base-primary);
679
- --content-hover-color: var(--text-base-primary);
680
- --content-disabled-color: #e8e9f04d;
681
- }
682
-
683
- [data-theme="dark"] .tertiary_XNHIwg {
684
- --background-color: #2a2b34;
685
- --background-hover-color: #373842;
686
- --background-active-color: #373842;
687
- --content-color: var(--text-base-primary);
688
- --content-hover-color: var(--text-base-primary);
689
- --content-disabled-color: #e8e9f040;
690
- }
691
-
692
- [data-theme="dark"] .primary_XNHIwg {
693
- color: #14151a;
694
- background-color: #e8e9f0;
695
- border-color: #34353e;
696
- }
697
-
698
- [data-theme="dark"] .primary_XNHIwg:hover:not(:disabled) {
699
- color: #14151a;
700
- background-color: #d2d4de;
701
- }
702
-
703
- [data-theme="dark"] .primary_XNHIwg:disabled {
704
- color: #e8e9f040;
705
- background-color: #34353e;
706
- border-color: #34353e;
707
- }
708
-
709
- [data-theme="dark"] .tertiary_XNHIwg {
710
- border-color: var(--border-action-normal);
711
- color: var(--text-base-primary);
712
- background-color: #2a2b34;
713
- }
714
-
715
- [data-theme="dark"] .tertiary_XNHIwg:hover:not(:disabled) {
716
- color: var(--text-base-primary);
717
- background-color: #373842;
718
- }
719
-
720
- [data-theme="dark"] .ghost_XNHIwg {
721
- color: var(--text-base-secondary);
722
- }
723
-
724
- [data-theme="dark"] .ghost_XNHIwg:hover {
725
- color: var(--text-base-secondary);
726
- background-color: #e8e9f00f;
727
- }
728
-
729
- [data-theme="dark"] .ghost_XNHIwg:disabled {
730
- color: #e8e9f040;
731
- }
732
-
733
- [data-theme="dark"] .ghostFilled_XNHIwg {
734
- color: var(--text-base-secondary);
735
- background-color: #e8e9f00f;
736
- }
737
-
738
- [data-theme="dark"] .ghostFilled_XNHIwg:disabled {
739
- color: #e8e9f040;
740
- }
741
-
742
- [data-theme="dark"] .quaternary_XNHIwg {
743
- color: var(--text-base-primary);
744
- background-color: #e8e9f00f;
745
- }
746
-
747
- [data-theme="dark"] .quaternary_XNHIwg:disabled {
748
- color: var(--text-base-primary);
749
- background-color: #e8e9f00f;
750
- }
751
-
752
- [data-theme="dark"] .quaternary_XNHIwg:disabled {
753
- color: #e8e9f040;
754
- }
755
-
756
- [data-theme="dark"] .quaternary_XNHIwg:hover:not(:disabled) {
757
- color: var(--text-base-primary);
758
- background-color: #e8e9f01a;
759
- }
760
-
761
- [data-theme="dark"] .black_XNHIwg {
762
- --background-color: #e8e9f0;
763
- --background-hover-color: #d2d4de;
764
- --background-active-color: #d2d4de;
765
- --content-color: #14151a;
766
- --content-hover-color: #14151a;
767
- --content-active-color: #14151a;
692
+ color: var(--text-disabled);
768
693
  }
769
694
 
770
695
  .loader_XNHIwg {
@@ -2081,7 +2006,7 @@ body {
2081
2006
  object-position: center;
2082
2007
  overflow: hidden;
2083
2008
  display: flex;
2084
- background-color: #e9eaec;
2009
+ background-color: var(--background-badge-gray);
2085
2010
  border-radius: 50%;
2086
2011
  justify-content: center;
2087
2012
  align-items: center;
@@ -2164,7 +2089,7 @@ body {
2164
2089
 
2165
2090
  .unauthRights_jFMnzg {
2166
2091
  padding: 8px 10px;
2167
- color: #000 !important;
2092
+ color: var(--text-base-primary) !important;
2168
2093
  }
2169
2094
 
2170
2095
  .unauthBtns_jFMnzg {
@@ -2218,18 +2143,18 @@ body {
2218
2143
  }
2219
2144
 
2220
2145
  .logInBtn_jFMnzg {
2221
- color: #14151a;
2146
+ background-color: var(--background-button-secondary);
2147
+ border: 1px solid var(--border-action-normal);
2148
+ color: var(--text-base-primary);
2222
2149
  white-space: nowrap;
2223
- background-color: #fff;
2224
- border: 1px solid #dee0e3;
2225
2150
  border-radius: 10px;
2226
2151
  padding: 6px 16px;
2227
2152
  }
2228
2153
 
2229
2154
  @media screen and (hover: hover) {
2230
2155
  .logInBtn_jFMnzg:hover {
2231
- color: #fff;
2232
- background-color: #1f2228;
2156
+ background-color: var(--background-button-primary);
2157
+ color: var(--color-button-primary);
2233
2158
  }
2234
2159
  }
2235
2160
 
@@ -2239,11 +2164,11 @@ body {
2239
2164
 
2240
2165
  .dropdownWrapper_jFMnzg {
2241
2166
  position: absolute;
2167
+ border: 1px solid var(--border-action-normal);
2168
+ background-color: var(--background-surface-default);
2242
2169
  -webkit-user-select: none;
2243
2170
  -ms-user-select: none;
2244
2171
  user-select: none;
2245
- background-color: #fff;
2246
- border: 1px solid #dee0e3;
2247
2172
  border-radius: 12px;
2248
2173
  min-width: 240px;
2249
2174
  max-width: 250px;
@@ -2296,7 +2221,7 @@ body {
2296
2221
 
2297
2222
  .icon_jFMnzg {
2298
2223
  display: flex;
2299
- background-color: #fff;
2224
+ background-color: var(--background-button-secondary);
2300
2225
  flex-direction: column;
2301
2226
  justify-content: center;
2302
2227
  align-items: center;
@@ -2306,7 +2231,7 @@ body {
2306
2231
  }
2307
2232
 
2308
2233
  .iconActive_jFMnzg {
2309
- background-color: #f7f7f8;
2234
+ background-color: var(--background-button-secondary-hover);
2310
2235
  }
2311
2236
 
2312
2237
  .icon_jFMnzg:first-child {
@@ -2315,7 +2240,7 @@ body {
2315
2240
 
2316
2241
  .icon_jFMnzg:hover {
2317
2242
  cursor: pointer;
2318
- background-color: #f7f7f8;
2243
+ background-color: var(--background-button-secondary-hover);
2319
2244
  }
2320
2245
 
2321
2246
  .icon_jFMnzg svg {
@@ -2331,14 +2256,14 @@ body {
2331
2256
  }
2332
2257
 
2333
2258
  .icon_jFMnzg:not(:last-child) {
2334
- border-right: 1px solid #e9eaec;
2259
+ border-right: 1px solid var(--border-action-normal);
2335
2260
  }
2336
2261
 
2337
2262
  .userPicWrapper_jFMnzg {
2338
2263
  display: flex;
2264
+ background-color: var(--background-badge-gray);
2339
2265
  cursor: pointer;
2340
2266
  position: relative;
2341
- background-color: #e9eaec;
2342
2267
  border-radius: 50%;
2343
2268
  flex-direction: column;
2344
2269
  justify-content: center;
@@ -2349,7 +2274,7 @@ body {
2349
2274
  }
2350
2275
 
2351
2276
  .userPic_jFMnzg {
2352
- color: #696b76;
2277
+ color: var(--icon-base-secondary);
2353
2278
  display: flex;
2354
2279
  position: relative;
2355
2280
  border-radius: 50%;
@@ -2397,8 +2322,8 @@ body {
2397
2322
  }
2398
2323
 
2399
2324
  .modal_jFMnzg {
2325
+ background-color: var(--background-surface-default);
2400
2326
  display: flex;
2401
- background-color: #fff;
2402
2327
  border-radius: 24px;
2403
2328
  flex-direction: column;
2404
2329
  gap: 32px;
@@ -2545,7 +2470,7 @@ body {
2545
2470
  }
2546
2471
 
2547
2472
  .userDropDownButton_jFMnzg {
2548
- color: #14151a;
2473
+ color: var(--text-base-primary);
2549
2474
  font-size: 14px;
2550
2475
  font-weight: 400;
2551
2476
  }
@@ -7419,7 +7344,7 @@ td.currentTariff_0VfwRg {
7419
7344
  }
7420
7345
 
7421
7346
  .list_Jwe-NQ::-webkit-scrollbar-thumb {
7422
- background-color: #dee1e8;
7347
+ background-color: var(--scrollbar-thumb);
7423
7348
  border-radius: 2px;
7424
7349
  }
7425
7350
 
@@ -7464,7 +7389,7 @@ td.currentTariff_0VfwRg {
7464
7389
  }
7465
7390
 
7466
7391
  .chevronBtn_Jwe-NQ:hover, .item_Jwe-NQ:hover {
7467
- background-color: var(--bg-action-secondary-hover, #0000000d);
7392
+ background-color: var(--bg-action-secondary-hover);
7468
7393
  }
7469
7394
 
7470
7395
  .typeIcon_Jwe-NQ {
@@ -7570,7 +7495,7 @@ td.currentTariff_0VfwRg {
7570
7495
 
7571
7496
  .folders_5QMOig::-webkit-scrollbar-thumb {
7572
7497
  display: block;
7573
- background-color: #dee1e8;
7498
+ background-color: var(--scrollbar-thumb);
7574
7499
  border-radius: 2px;
7575
7500
  }
7576
7501
 
@@ -7599,8 +7524,8 @@ td.currentTariff_0VfwRg {
7599
7524
 
7600
7525
  .itemsSearch_5QMOig {
7601
7526
  display: flex;
7602
- border: 1px solid var(--border-action-normal, #0000001f);
7603
- background: var(--bg-action-secondary, #f5f5f7);
7527
+ border: 1px solid var(--border-action-normal);
7528
+ background: var(--bg-action-secondary);
7604
7529
  border-radius: 8px;
7605
7530
  flex-shrink: 0;
7606
7531
  align-items: center;
@@ -7666,8 +7591,8 @@ td.currentTariff_0VfwRg {
7666
7591
  .add_5QMOig {
7667
7592
  display: flex;
7668
7593
  cursor: pointer;
7594
+ border: 1px solid var(--border-action-normal);
7669
7595
  background: none;
7670
- border: 1px solid #dedfe3;
7671
7596
  border-radius: 10px;
7672
7597
  flex: 1 0;
7673
7598
  justify-content: center;
@@ -7725,7 +7650,7 @@ td.currentTariff_0VfwRg {
7725
7650
 
7726
7651
  .header_iZlcpA {
7727
7652
  display: flex;
7728
- color: #14151a;
7653
+ color: var(--text-base-primary);
7729
7654
  cursor: pointer;
7730
7655
  border-radius: 10px;
7731
7656
  align-items: center;
@@ -7739,24 +7664,24 @@ td.currentTariff_0VfwRg {
7739
7664
  }
7740
7665
 
7741
7666
  .header_iZlcpA.over_iZlcpA {
7742
- background-color: #0a0f290a;
7667
+ background-color: var(--background-hover-subtle);
7743
7668
  }
7744
7669
 
7745
7670
  @media screen and (hover: hover) {
7746
7671
  .header_iZlcpA:hover {
7747
- background-color: #0a0f290a;
7672
+ background-color: var(--background-hover-subtle);
7748
7673
  }
7749
7674
  }
7750
7675
 
7751
7676
  .icon_iZlcpA {
7752
- color: #696b75;
7677
+ color: var(--icon-base-secondary);
7753
7678
  display: flex;
7754
7679
  align-items: center;
7755
7680
  gap: 4px;
7756
7681
  }
7757
7682
 
7758
7683
  .noContent_iZlcpA {
7759
- color: #0a0f2940;
7684
+ color: var(--text-disabled);
7760
7685
  font-size: 14px;
7761
7686
  font-weight: 500;
7762
7687
  }
@@ -7766,8 +7691,8 @@ td.currentTariff_0VfwRg {
7766
7691
  }
7767
7692
 
7768
7693
  .content_iZlcpA {
7694
+ border-left: 1px solid var(--border-action-normal);
7769
7695
  display: flex;
7770
- border-left: 1px solid #dee0e3;
7771
7696
  flex-direction: column;
7772
7697
  gap: 2px;
7773
7698
  padding-left: 6px;
@@ -7798,7 +7723,7 @@ td.currentTariff_0VfwRg {
7798
7723
  .contextMenuBtn_iZlcpA {
7799
7724
  position: absolute;
7800
7725
  cursor: pointer;
7801
- color: #696b76;
7726
+ color: var(--icon-base-secondary);
7802
7727
  z-index: 5;
7803
7728
  display: none;
7804
7729
  border-radius: 4px;
@@ -7812,11 +7737,11 @@ td.currentTariff_0VfwRg {
7812
7737
 
7813
7738
  @media screen and (hover: hover) {
7814
7739
  .header_iZlcpA:hover, .contextMenuBtn_iZlcpA:hover ~ .header_iZlcpA {
7815
- background-color: #0a0f290a;
7740
+ background-color: var(--background-hover-subtle);
7816
7741
  }
7817
7742
 
7818
7743
  .contextMenuBtn_iZlcpA:hover {
7819
- background-color: #0a0f2914;
7744
+ background-color: var(--background-hover-subtle-strong);
7820
7745
  }
7821
7746
 
7822
7747
  .wrapper_iZlcpA:hover .contextMenuBtn_iZlcpA, .contextMenuBtn_iZlcpA:hover {
@@ -7827,14 +7752,14 @@ td.currentTariff_0VfwRg {
7827
7752
  /* src/entities/Folder/FolderItem.module.css */
7828
7753
  .wrapper_IZQRBA {
7829
7754
  position: relative;
7830
- background-color: #fff;
7755
+ background-color: var(--background-surface-default);
7831
7756
  }
7832
7757
 
7833
7758
  .item_IZQRBA {
7834
7759
  display: flex;
7835
7760
  position: relative;
7836
7761
  overflow: visible;
7837
- color: #0f132499;
7762
+ color: var(--text-base-secondary);
7838
7763
  cursor: pointer;
7839
7764
  position: relative;
7840
7765
  border-radius: 10px;
@@ -7849,13 +7774,13 @@ td.currentTariff_0VfwRg {
7849
7774
  }
7850
7775
 
7851
7776
  .icon_IZQRBA {
7852
- color: #696b76;
7777
+ color: var(--icon-base-secondary);
7853
7778
  display: grid;
7854
7779
  place-items: center;
7855
7780
  }
7856
7781
 
7857
7782
  .active_IZQRBA, .dragging_IZQRBA {
7858
- background-color: #0a0f290a;
7783
+ background-color: var(--background-hover-subtle);
7859
7784
  }
7860
7785
 
7861
7786
  .active_IZQRBA:before {
@@ -7873,7 +7798,7 @@ td.currentTariff_0VfwRg {
7873
7798
  .contextMenuBtn_IZQRBA {
7874
7799
  position: absolute;
7875
7800
  cursor: pointer;
7876
- color: #696b76;
7801
+ color: var(--icon-base-secondary);
7877
7802
  z-index: 5;
7878
7803
  display: none;
7879
7804
  border-radius: 4px;
@@ -7887,11 +7812,11 @@ td.currentTariff_0VfwRg {
7887
7812
 
7888
7813
  @media screen and (hover: hover) {
7889
7814
  .item_IZQRBA:hover:not(.disableHover_IZQRBA), .contextMenuBtn_IZQRBA:hover ~ .item_IZQRBA:not(.disableHover_IZQRBA) {
7890
- background-color: #0a0f290a;
7815
+ background-color: var(--background-hover-subtle);
7891
7816
  }
7892
7817
 
7893
7818
  .contextMenuBtn_IZQRBA:hover {
7894
- background-color: #0a0f2914;
7819
+ background-color: var(--background-hover-subtle-strong);
7895
7820
  }
7896
7821
 
7897
7822
  .wrapper_IZQRBA:hover .contextMenuBtn_IZQRBA, .contextMenuBtn_IZQRBA:hover {
@@ -7907,7 +7832,7 @@ td.currentTariff_0VfwRg {
7907
7832
  }
7908
7833
 
7909
7834
  .placeholder_IZQRBA {
7910
- background-color: #c8cacf;
7835
+ background-color: var(--border-action-normal);
7911
7836
  width: 100%;
7912
7837
  height: 2px;
7913
7838
  }
@@ -9216,10 +9141,10 @@ input.rename_i3VZwA {
9216
9141
  .exportDropdown_i3VZwA {
9217
9142
  position: absolute;
9218
9143
  top: calc(100% + var(--absolute-position-panel-padding));
9144
+ background-color: var(--background-surface-default);
9145
+ border: 1px solid var(--border-action-normal);
9219
9146
  display: flex;
9220
9147
  z-index: 100;
9221
- background-color: #fff;
9222
- border: 1px solid #cccccc80;
9223
9148
  border-radius: 8px;
9224
9149
  flex-direction: column;
9225
9150
  gap: 5px;
@@ -9238,7 +9163,7 @@ input.rename_i3VZwA {
9238
9163
  }
9239
9164
 
9240
9165
  .exportDropdown_i3VZwA > div:hover {
9241
- background-color: #0a0f290a;
9166
+ background-color: var(--background-hover-subtle);
9242
9167
  }
9243
9168
 
9244
9169
  .exportDropdownItemTitle_i3VZwA {
@@ -9256,7 +9181,7 @@ input.rename_i3VZwA {
9256
9181
  }
9257
9182
 
9258
9183
  .exportDropdown_i3VZwA p {
9259
- color: #14151a;
9184
+ color: var(--text-base-primary);
9260
9185
  margin: 0;
9261
9186
  font-size: 14px;
9262
9187
  line-height: 20px;
@@ -11758,7 +11683,7 @@ input.rename_i3VZwA {
11758
11683
  /* src/features/UserPanel/Buttons/TogglePresenceRender/TogglePresenceRender.module.css */
11759
11684
  .icon_MRZoRw {
11760
11685
  display: flex;
11761
- background-color: #fff;
11686
+ background-color: var(--background-button-secondary);
11762
11687
  border-left: 1px solid #0000;
11763
11688
  border-right: 1px solid #0000;
11764
11689
  flex-direction: column;
@@ -11770,9 +11695,9 @@ input.rename_i3VZwA {
11770
11695
  }
11771
11696
 
11772
11697
  .iconActive_MRZoRw {
11698
+ background-color: var(--background-button-secondary-hover);
11773
11699
  color: #924fe8;
11774
- background-color: #f7f7f8;
11775
- border-color: #e9eaec;
11700
+ border-color: var(--border-action-normal);
11776
11701
  }
11777
11702
 
11778
11703
  .icon_MRZoRw:first-child {
@@ -11781,7 +11706,7 @@ input.rename_i3VZwA {
11781
11706
 
11782
11707
  .icon_MRZoRw:hover {
11783
11708
  cursor: pointer;
11784
- background-color: #f7f7f8;
11709
+ background-color: var(--background-button-secondary-hover);
11785
11710
  }
11786
11711
 
11787
11712
  .icon_MRZoRw svg {
@@ -11793,7 +11718,7 @@ input.rename_i3VZwA {
11793
11718
  }
11794
11719
 
11795
11720
  .icon_MRZoRw:not(:last-child) {
11796
- border-right: 1px solid #e9eaec;
11721
+ border-right: 1px solid var(--border-action-normal);
11797
11722
  }
11798
11723
 
11799
11724
  /* src/features/UserPanel/ActionButtons/ActionButtons.module.css */
@@ -13841,7 +13766,7 @@ audio::-webkit-media-controls-enclosure {
13841
13766
  /* src/pages/SelectBoardPage/SelectBoardPage.module.css */
13842
13767
  .container_Ft-RRw {
13843
13768
  display: flex;
13844
- background-color: #fff;
13769
+ background-color: var(--background-surface-default);
13845
13770
  border-radius: 8px;
13846
13771
  flex-direction: column;
13847
13772
  gap: 12px;
@@ -13882,7 +13807,7 @@ audio::-webkit-media-controls-enclosure {
13882
13807
 
13883
13808
  .folders_Ft-RRw::-webkit-scrollbar-thumb {
13884
13809
  display: block;
13885
- background-color: #dee1e8;
13810
+ background-color: var(--scrollbar-thumb);
13886
13811
  border-radius: 2px;
13887
13812
  }
13888
13813
 
@@ -13914,9 +13839,9 @@ audio::-webkit-media-controls-enclosure {
13914
13839
 
13915
13840
  .search_Ft-RRw {
13916
13841
  display: flex;
13842
+ border: 1px solid var(--border-action-normal);
13843
+ background-color: var(--background-button-secondary);
13917
13844
  cursor: text;
13918
- background-color: #fff;
13919
- border: 1px solid #dee0e3;
13920
13845
  border-radius: 8px;
13921
13846
  align-items: center;
13922
13847
  padding-right: 10px;
@@ -13929,6 +13854,7 @@ audio::-webkit-media-controls-enclosure {
13929
13854
 
13930
13855
  .search_Ft-RRw input {
13931
13856
  outline: none;
13857
+ color: var(--text-base-primary);
13932
13858
  background: none;
13933
13859
  border: none;
13934
13860
  flex: 1;
@@ -13938,7 +13864,7 @@ audio::-webkit-media-controls-enclosure {
13938
13864
  }
13939
13865
 
13940
13866
  .search_Ft-RRw input::placeholder {
13941
- color: #9ca3af;
13867
+ color: var(--text-base-secondary);
13942
13868
  font-weight: 200;
13943
13869
  }
13944
13870
 
@@ -13969,17 +13895,17 @@ audio::-webkit-media-controls-enclosure {
13969
13895
  }
13970
13896
 
13971
13897
  .header_Ft-RRw h1 {
13972
- color: #111827;
13898
+ color: var(--text-base-primary);
13973
13899
  font-size: 1.5rem;
13974
13900
  font-weight: 600;
13975
13901
  }
13976
13902
 
13977
13903
  .header_Ft-RRw .profile_Ft-RRw {
13978
- color: #696b76;
13904
+ background-color: var(--background-badge-gray);
13905
+ color: var(--icon-base-secondary);
13979
13906
  display: flex;
13980
13907
  overflow: hidden;
13981
13908
  cursor: pointer;
13982
- background-color: #e9eaec;
13983
13909
  border-radius: 50%;
13984
13910
  flex-direction: column;
13985
13911
  justify-content: center;
@@ -14028,21 +13954,21 @@ audio::-webkit-media-controls-enclosure {
14028
13954
 
14029
13955
  .button_Ft-RRw.primary_Ft-RRw {
14030
13956
  background: var(--text-base-primary);
14031
- color: #fff;
13957
+ color: var(--background-surface-default);
14032
13958
  box-shadow: 0 1px 2px #14151a0d;
14033
13959
  }
14034
13960
 
14035
13961
  .button_Ft-RRw.secondary_Ft-RRw {
14036
- color: #111827;
14037
- background-color: #f3f4f6;
13962
+ background-color: var(--background-button-tertiary);
13963
+ color: var(--text-base-primary);
14038
13964
  }
14039
13965
 
14040
13966
  .button_Ft-RRw.primary_Ft-RRw:hover {
14041
- background-color: #333;
13967
+ opacity: .88;
14042
13968
  }
14043
13969
 
14044
13970
  .button_Ft-RRw.secondary_Ft-RRw:hover {
14045
- background-color: #e5e7eb;
13971
+ background-color: var(--background-button-tertiary-hover);
14046
13972
  }
14047
13973
 
14048
13974
  .infoMessage_Ft-RRw {
@@ -14075,14 +14001,14 @@ audio::-webkit-media-controls-enclosure {
14075
14001
 
14076
14002
  .selected_Ft-RRw {
14077
14003
  display: flex;
14078
- background-color: #f6f1fc;
14004
+ background-color: var(--background-badge-purple-disabled);
14079
14005
  border-radius: 10px;
14080
14006
  gap: 6px;
14081
14007
  padding: 6px 8px;
14082
14008
  }
14083
14009
 
14084
14010
  .selectedIcon_Ft-RRw {
14085
- color: #696b75;
14011
+ color: var(--icon-base-secondary);
14086
14012
  display: grid;
14087
14013
  place-items: center;
14088
14014
  }