@ganwei-web/ganwei-pc-cli 6.3.6 → 6.3.8

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 (26) hide show
  1. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/ElementPlusAdapter.css +89 -443
  2. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +7 -3
  3. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +1 -1
  4. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +7 -0
  5. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
  6. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
  7. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
  8. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +15 -0
  9. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +24 -0
  10. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +16 -1
  11. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/layouts/Navigation/TopNav.vue +10 -18
  12. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/index.js +4 -5
  13. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css +1 -1
  14. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +15 -11
  15. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/env.d.ts +7 -0
  16. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/package.json +3 -3
  17. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +443 -3
  18. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +435 -1
  19. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/main.ts +2 -2
  20. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/utils/dom.ts +3 -11
  21. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/utils/performance.ts +2 -2
  22. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/utils/signalr.ts +49 -22
  23. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/utils/string.ts +0 -14
  24. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/vite.config.ts +10 -0
  25. package/package.json +1 -1
  26. package/ganwei-iotcenter-index-6.2.3/pnpm-lock.yaml +0 -9063
@@ -94,11 +94,19 @@
94
94
  --frame-main-background-3: var(--gw-color-Neutrals21);
95
95
  /* 任务库 popover 背景 */
96
96
  --frame-main-background-4: var(--gw-color-Neutrals20);
97
+ --frame-main-background-primary: var(--gw-color-primary);
98
+ --frame-main-background-success: var(--gw-color-success);
99
+ --frame-main-background-waning: var(--gw-color-waning);
100
+ --frame-main-background-danger: var(--gw-color-danger);
97
101
  /* 主要字体色 */
98
102
  --frame-main-color: var(--gw-color-Neutrals2);
99
103
  /* 稍浅字体色 */
100
104
  --frame-main-color-1: var(--gw-color-Neutrals12);
101
105
  --frame-main-color-2: var(--gw-color-waning4);
106
+ --frame-main-color-primary: var(--gw-color-primary);
107
+ --frame-main-color-success: var(--gw-color-success);
108
+ --frame-main-color-waning: var(--gw-color-waning);
109
+ --frame-main-color-danger: var(--gw-color-danger);
102
110
  /* 主要边框色 */
103
111
  /* --bor-default => --border-color-2 =>*/
104
112
  --frame-main-border: var(--gw-color-Neutrals18);
@@ -385,6 +393,13 @@
385
393
  --collapse-color__hover: var(--frame-main-color);
386
394
  --collapse-content-background: transparent;
387
395
 
396
+ /* descriptions */
397
+ --descriptions-border: var(--gw-color-Neutrals18);
398
+ --descriptions-label-color: var(--frame-main-color);
399
+ --descriptions-label-background: var(--gw-color-Neutrals21);
400
+ --descriptions-content-color: var(--frame-main-color);
401
+ --descriptions-content-background: var(--frame-main-background-2);
402
+
388
403
  /* 穿梭框 */
389
404
  --transfer-background: var(--gw-color-Neutrals25);
390
405
  --transfer-border: var(--gw-color-Neutrals18);
@@ -449,9 +464,434 @@
449
464
 
450
465
  /* EquipSelect 组件样式 */
451
466
  --equipselect-header-background: var(--gw-color-Neutrals23);
452
- --equipselect-body-background: var(--gw-color-Neutrals20);
467
+ --equipselect-body-background: var(--frame-main-background);
453
468
 
454
469
  /* TaskPopper 组件样式 */
455
- --task-popper-background: var(--gw-color-Neutrals27);
456
- --task-popper-item-background: var(--gw-color-Neutrals28);
470
+ --task-popper-background: var(--gw-color-Neutrals23);
471
+ --task-popper-item-background: var(--gw-color-Neutrals27);
472
+
473
+
474
+
475
+ /* 旧版本样式 */
476
+ --color-primary: #fff;
477
+ --color-text-primary: #f0f4ff;
478
+ --color-text2: rgba(240, 244, 255, 0.88);
479
+ --color-text1: rgba(240, 244, 255, 0.56);
480
+ --input-btn-color: #d3d8e2;
481
+ --border-color-base: rgba(240, 244, 255, 0.16);
482
+ --background-color-base: #121622;
483
+ --background1: #181c29;
484
+ --background2: #202534;
485
+ --inputbackground3: #0c0e14;
486
+ --front-color: #252833;
487
+ --btn-background-primary: #3b4357;
488
+ --btn-color-primary: rgba(240, 244, 255, 0.88);
489
+ --btn-color: #fff;
490
+ --control-background: #3875ff;
491
+ --btn-hover-primary: #2769c2;
492
+ --background-color-light: #313747;
493
+ --table-icon-edit-color: #346ae4;
494
+ --table-icon-del-color: #bf2533;
495
+ --success: #63e03f;
496
+ --alarm: #f22433;
497
+ --warning: #f5bb36;
498
+ --h-color: #5386bb;
499
+ --mask: rgba(0, 0, 0, 0.3);
500
+ --mask1: rgba(0, 0, 0, 0.3);
501
+
502
+ --nav-bgColor: #252833;
503
+ --nav-bgColor1: #181c29;
504
+ --nav-bgColor2: #181c29;
505
+ --nav-bgColor3: #252833;
506
+ --nav-bgColor4: #181c29;
507
+ --nav-bgColor5: #202534;
508
+ --nav-bgColor6: #3f495f;
509
+ --nav-txColor: rgba(240, 244, 255, 0.56);
510
+ --nav-txColor1: #8b8f97;
511
+ --nav-iconColor: rgba(240, 244, 255, 0.56);
512
+
513
+ --asideColor: rgba(240, 244, 255, 0.56);
514
+
515
+ --nav-hoverBgColor: #181c29;
516
+ --nav-hoverTxColor: #f0f4ff;
517
+ --nav-hoverIconColor: #f0f4ff;
518
+ --nav-selBgColor: #3875ff;
519
+ --nav-selBgColor2: #3875ff;
520
+ --nav-selTxColor: #f0f4ff;
521
+ --nav-selIconColor: #f0f4ff;
522
+
523
+ --btn-bgColor: #3875ff;
524
+ --btn-bgColor1: rgba(59, 67, 87, 0.64);
525
+ --btn-bgColor2: #f22433;
526
+ --btn-bgColor3: #3b4357;
527
+ --btn-bgColor4: #252833;
528
+ --btn-bgColor5: #3b4357;
529
+ --btn-bgColor6: #13c2c2;
530
+ --btn-bgColor7: #eafaf4;
531
+ --btn-disableBgColor: #0c79dd;
532
+ --btn-bgColor8: #3b4357;
533
+ --btn-bgColor9: #0c0e14;
534
+ --btn-bgColor10: #313747;
535
+ --btn-selectBgColor: #3875ff;
536
+ --btn-txColor: #e6edff;
537
+ --btn-txColor1: #3875ff;
538
+ --btn-txColor2: rgba(240, 244, 255, 0.88);
539
+ --btn-txColor3: #fff;
540
+ --btn-txColor4: #f56c6c;
541
+ --btn-txColor5: #e6edff;
542
+ --btn-txColor6: #f22433;
543
+ --btn-txColor7: #313747;
544
+ --btn-txColor8: #2cd08c;
545
+ --btn-txColor9: #3875ff;
546
+ --btn-txColor10: #0987e5;
547
+ --btn-iconColor: #e6edff;
548
+ --btn-iconColor1: #d3d8e2;
549
+ --btn-iconColor2: #3875ff;
550
+ --btn-borderColor: #3875ff;
551
+ --btn-borderColor1: rgba(240, 244, 255, 0.16);
552
+ --btn-borderColor2: #464954;
553
+ --btn-borderColor3: #d5f6e8;
554
+ --btn-hoverBgColor: rgba(59, 67, 87, 1);
555
+ --btn-hoverBgColor1: rgba(240, 244, 255, 0.16);
556
+ --btn-hoverBgColor2: #2769c2;
557
+ --btn-hoverBgColor3: #253045;
558
+ --btn-hoverBgColor4: #3b4357;
559
+ --btn-hoverBgColor5: #2f3544;
560
+ --btn-hoverTXColor: #3875ff;
561
+ --btn-hoverTXColor1: #f0f4ff;
562
+ --btn-hoverBorColor: #264069;
563
+
564
+ --tab-bgColor: #0c0e14;
565
+ --tab-bgColor2: #252833;
566
+ --tab-bgColor3: #323745;
567
+ --tab-bgColor4: #202533;
568
+ --tab-bgColor5: #1c2230;
569
+ --tab-bgColor6: #1c2230;
570
+ --tab-bgColor7: #121622;
571
+ --tab-txColor: rgba(240, 244, 255, 0.5);
572
+ --tab-txColor1: rgba(240, 244, 255, 0.56);
573
+ --tab-txColor2: #626d84;
574
+ --tab-borderColor: transparent;
575
+ --tab-borderColor1: transparent;
576
+ --tab-selBgColor: #121622;
577
+ --tab-selBgColor2: #141722;
578
+ --tab-selBgColor3: #1f2432;
579
+ --tab-selBgColor4: #1f2432;
580
+ --tab-selBgColor5: #1c2230;
581
+ --tab-selTXColor: #f0f4ff;
582
+ --tab-selTXColor1: #ffffff;
583
+ --tab-hoverTXColor: #3875ff;
584
+ --tab-hoverBg: #1f2432;
585
+ --tab-actColor: #313747;
586
+
587
+ --input-bgColor: #0c0e14;
588
+ --input-bgColor2: #181c29;
589
+ --input-bgColor3: #313747;
590
+ --input-bgColor4: #121927;
591
+ --input-bgColor5: #151a27;
592
+ --input-bgColor6: #121927;
593
+ --input-disabled-bgColor: #29303f;
594
+ --input-btnBgColor3: #26282c;
595
+ --input-btnBorColor: #323848;
596
+ --input-btnBgColor: #f0f4ff;
597
+ --input-txColor: #d3d8e2;
598
+ --input-txColor1: #f0f4ff;
599
+ --input-plaColor: #2d2e30;
600
+ --input-plaColor1: rgba(240, 244, 255, 0.64);
601
+ --input-iconColor: #8f9091;
602
+ --input-iconColor1: #f0f4ff;
603
+ --input-borderColor: rgba(240, 244, 255, 0.16);
604
+ --input-borderColor1: rgba(235, 236, 240, 0.5);
605
+ --input-borderColor2: rgba(240, 244, 255, 0.16);
606
+ --input-borderColor3: #3d4a63;
607
+ --input-selBorColor: #3875ff;
608
+ --input-hoverBorColor: #8f9091;
609
+
610
+ --textarea-fontColor: #fafafa;
611
+ --textarea-backgroundColor: #0c0e14;
612
+ --textarea-borderColor: rgba(240, 244, 255, 0.16);
613
+
614
+ --txt-color-1: #3875ff;
615
+ --txt-color-2: #ff7a00;
616
+
617
+ --table-headerBgColor: #181c29;
618
+ --table-headerBgColor2: #29303f;
619
+ --table-txColor: #f0f4ff;
620
+ --table-headerTXColor: #8d929d;
621
+ --table-borderColor: #000;
622
+ --table-rowBgColor: #252833;
623
+ --table-hoverRowBgColor: #3b4357;
624
+ --table-rowBgColor-strip: #1c2230;
625
+ --table-rowBgColor-strip2: #151a27;
626
+ --table-iconEdit: #346ae4;
627
+ --table-iconDel: #bf2533;
628
+ --table-borderBottomColor: #181c29;
629
+
630
+ --con-textColor1: #f0f4ff;
631
+ --con-textColor2: rgba(240, 244, 255, 0.88);
632
+ --con-textColor3: rgba(240, 244, 255, 0.64);
633
+ --con-textColor4: rgba(240, 244, 255, 0.56);
634
+ --con-textColor5: rgba(240, 244, 255, 0.32);
635
+ --con-textColor6: rgba(240, 244, 255, 0.16);
636
+ --con-textColor7: rgba(240, 244, 255, 0.08);
637
+ --con-textColor8: #f0f4ff;
638
+ --con-textColor9: #b7b7ba;
639
+ --con-textColor10: #f0f4ff;
640
+ --con-textColor11: #f0f4ff;
641
+ --con-textColor12: #f0f0f0;
642
+ --con-textColor13: linear-gradient(to top, #2c75d8, #61c5fe);
643
+ --con-textColor14: #cccccc;
644
+ --con-textColor15: #999999;
645
+ --con-textColor16: #dbdbdb;
646
+ --con-textColor17: #7af8ff;
647
+ --con-textColor18: #999999;
648
+ --con-textColor19: #cccccc;
649
+ --con-textColor20: #999999;
650
+ --con-textColor21: #f8c161;
651
+ --con-textColor22: #0adae6;
652
+ --con-textColor23: #dbdbdb;
653
+ --con-textColor24: #dfdfdf;
654
+ --con-textColor25: #999999;
655
+ --con-textColor26: #dbdbdb;
656
+ --con-textColor27: #f0f4ff;
657
+ --con-textColor28: #666666;
658
+ --con-textColor29: #4df6af;
659
+ --con-bgColor1: #090f1a;
660
+ --con-bgColor2: #0c0e14;
661
+ --con-bgColor3: #181c29;
662
+ --con-bgColor4: #252833;
663
+ --con-bgColor5: #313747;
664
+ --con-bgColor5-1: #313747;
665
+ --con-bgColor6: #3b4357;
666
+ --con-bgColor6-1: #3b4357;
667
+ --con-bgColor7: #181c29;
668
+ --con-bgColor8: transparent;
669
+ --con-bgColor9: #3e3e42;
670
+ --con-bgColor10: #1d1e20;
671
+ --con-bgColor11: #2d2e30;
672
+ --con-bgColor12: #3b4357;
673
+ --con-bgColor13: linear-gradient(-43deg, #181c29, #3b4357);
674
+ --con-bgColor14: #313747;
675
+ --con-bgColor15: #313747;
676
+ --con-bgColor16: transparent;
677
+ --con-bgColor17: #313747;
678
+ --con-bgColor18: #252833;
679
+ --con-bgColor19: #202534;
680
+ --con-bgColor20: #1f2535;
681
+ --con-bgColor21: #29303f;
682
+ --con-bgColor22: #121622;
683
+ --con-bgColor23: #242938;
684
+ --con-bgColor24: rgba(63, 72, 95, 0.39);
685
+ --con-bgColor25: #2b3245;
686
+ --con-bgColor26: #121927;
687
+ --con-bgColor27: #1f2535;
688
+ --con-bgColor28: #293040;
689
+ --con-bgColor29: #1b1f2c;
690
+ --con-bgColor30: #555555;
691
+ --con-bgColor31: #252936;
692
+ --con-borderColor: rgba(240, 244, 255, 0.16);
693
+ --con-borderColor1: rgba(240, 244, 255, 0.16);
694
+ --con-borderColor2: rgba(240, 244, 255, 0.08);
695
+ --con-borderColor3: #3b4860;
696
+ --con-borderColor4: #3d4a63;
697
+ --con-borderColor5: rgba(240, 244, 255, 0.08);
698
+ --con-borderHoverColor: #8f9091;
699
+ --con-borderHoverColor2: #5d709b;
700
+
701
+ --con-themeColor: #3875ff;
702
+ --con-themeColor2: #2669ec;
703
+ --con-successColor: #63e03f;
704
+ --con-alarmColor: #f22433;
705
+ --con-alarmColor2: #f73231;
706
+ --con-warningColor: #f5bb36;
707
+
708
+ --border-color-1: rgba(61, 74, 99, 0.51);
709
+ --border-color-2: #3d4a63;
710
+ --border-color-3: #30384b;
711
+ --border-color-4: #30384b;
712
+ --border-color-5: #5E6576;
713
+ --bor-default: rgba(240, 244, 255, 0.16);
714
+ --bor-primary: #3875ff;
715
+ --bor-danger: #f22433;
716
+ --bor-light: #fff;
717
+
718
+ --dialog-textColor1: #f0f4ff;
719
+ --dialog-textColor2: rgba(240, 244, 255, 0.56);
720
+ --dialog-bgColor: #1f2535;
721
+ --dialog-bgColor2: #181c29;
722
+ --dialog-bgColor3: #0c0e14;
723
+ --dialog-bgColor4: #1f2535;
724
+ --dialog-groupBgColor: #313747;
725
+ --dialog-groupBgColor2: #313747;
726
+ --dialog-labelBgColor: #313747;
727
+ --dialog-shadow: 0px 12px 20px 0px rgba(12, 14, 20, 0.64);
728
+
729
+ --tips-textColor1: #f0f4ff;
730
+ --tips-textColor2: rgba(240, 244, 255, 0.56);
731
+ --tips-bgColor: #252833;
732
+ --tips-text: #999999;
733
+
734
+ --sel-textColor: #f0f4ff;
735
+ --sel-bgColor: #0c0e14;
736
+ --sel-tagtextColor: rgba(240, 244, 255, 0.56);
737
+ --sel-tagBgColor: #252833;
738
+ --sel-tagIconColor: rgba(240, 244, 255, 0.56);
739
+
740
+ --dropdown-bgColor: #0c0e14;
741
+ --dropdown-bgColor1: rgba(0, 0, 0, 0.8);
742
+
743
+ --page-textColor: #c1c1c1;
744
+ --page-textColor1: #888;
745
+ --page-bgColor: #3875ff;
746
+ --page-borColor: #313747;
747
+ --page-bgColor2: #272c3d;
748
+
749
+ --tree-bgColor: #313747;
750
+ --tree-bgColor1: #252833;
751
+ --tree-bgColor2: #212533;
752
+ --tree-bgColor3: #181c29;
753
+ --tree-bgColor4: #252833;
754
+ --tree-bgColor5: transparent;
755
+ --tree-bgColor6: #2c3342;
756
+ --tree-bgColor7: #202534;
757
+ --tree-bgColor8: #2c3342;
758
+ --tree-txColor: #fff;
759
+ --tree-txColor1: rgba(240, 244, 255, 0.88);
760
+ --tree-iconColor: #fff;
761
+ --tree-selBgColor: #3b4357;
762
+ --tree-selBgColor1: #3875ff;
763
+ --tree-selTXColor: #fff;
764
+ --tree-linearColor: #8c8c8c;
765
+ --tree-borderColor: rgba(240, 244, 255, 0.16);
766
+ --tree-borderColor1: #353843;
767
+ --tree-labelBg: #313747;
768
+
769
+ --radio-bgColor: #252833;
770
+ --radio-selectBg: #3875ff;
771
+ --radio-selectBorder: #252833;
772
+
773
+ --switch-bgColor: #121927;
774
+ --switch-bgColor1: #337cef;
775
+
776
+ --popover-bgColor: #121623;
777
+ --popover-bgColor2: #313747;
778
+ --popover-bgColor3: rgba(3, 3, 3, 1);
779
+ --popover-txColor: #fff;
780
+ --popover-borderColor: rgba(240, 244, 255, 0.16);
781
+ --popover-borderColor2: #595959;
782
+ --popover-borderColor3: #2a2d3a;
783
+ --popover-hoverBgColor: #3875ff;
784
+ --popover-hoverTXColor: #fff;
785
+
786
+ --scrollbar-bgColor: #313747;
787
+
788
+ --avater-textColor: #181c29;
789
+ --avater-baColor: rgba(240, 244, 255, 0.64);
790
+
791
+ --datePanelBg: #121622;
792
+ --timeHeaderColor: #f0f4ff;
793
+ --pickerHeaderBg: #3b4357;
794
+ --iconBtnColor: #3875ff;
795
+ --pickRangeBg: #2b4074;
796
+ --footerBtnColor: #f22433;
797
+ --datePick-selectRangeBg: #3b4357;
798
+ --datePick-selectColor: #252833;
799
+ --timePick-hoverBg: #5e5f5f;
800
+
801
+ --noData-fontColor: #ced2dd;
802
+ --noData-fontColor1: #91a2af;
803
+
804
+ --fc-todayBg: #0d1f4c;
805
+
806
+ --radar-bgColor: transparent;
807
+ --radar-title: #3875ff;
808
+
809
+ --tag-title: #abceff;
810
+ --tag-unit: #f0f0f0;
811
+ --tag-number1: #f0f0f0;
812
+ --tag-number2: #f0f0f0;
813
+ --tag-number3: #f0f0f0;
814
+ --tag-number4: #f0f0f0;
815
+ --tag-number5: #f0f0f0;
816
+
817
+ --timeLine-default: #3d4a63;
818
+ --timeLine-infosBg: #29303f;
819
+ --timeLine-dot1: #8d929d;
820
+ --timeLine-dotBorder1: #3775ff;
821
+ --timeLine-dotBorder2: #1b2231;
822
+ --timeLine-line: #8d929d;
823
+
824
+ --list-bgColor-1: #202534;
825
+ --list-bgColor-2: #3b4357;
826
+ --list-bgColor-3: #29303f;
827
+ --list-labelBg: #313747;
828
+
829
+ --snapshots-bg: #1e2332;
830
+ --snapshots-bor: -webkit-linear-gradient(-40deg,
831
+ #3368df 0%,
832
+ transparent 10%,
833
+ transparent 90%,
834
+ #3875ff 100%) 10;
835
+ --snapshot-bor: #1b1f2c;
836
+ --snapshot-bg: #1b1f2c;
837
+ --snapshot-bs: rgba(0, 0, 0, 0.44);
838
+ --snapshot-number: #7af8ff;
839
+
840
+ --splitline-bor1: #414653;
841
+ --splitline-bor2: rgba(0, 0, 0, 1);
842
+
843
+ --notifyBg: #f0ffe2;
844
+ --notifytitle: #222222;
845
+ --notifytext: #8b8f97;
846
+
847
+ --line-color: rgba(240, 244, 255, 0.16);
848
+ --line-color-1: rgba(240, 244, 255, 0.16);
849
+ --line-finish: #3875ff;
850
+
851
+ --types-fc-opacity: rgba(240, 244, 255, 0.64);
852
+ --types-fc-opacity2: rgba(240, 244, 255, 0.64);
853
+ --types-fc-opacity3: rgba(240, 244, 255, 0.64);
854
+ --types-fc: #f0f4ff;
855
+
856
+ --active-bg: #1c2230;
857
+ --active-fc: #c2c2c2;
858
+ --descriptions-bor: #313543;
859
+ --descriptions-fc: #e8f0ff;
860
+
861
+ --loadingBg: #495266;
862
+ --loading-bgColor: rgba(18, 22, 34, 0.9);
863
+
864
+ --img-color-1: linear-gradient(180deg, #f2f3f5 0%, #757d93 100%);
865
+ --img-color-2: #8b8f97;
866
+
867
+ --top-menu-bg: #494f60;
868
+ --top-menu-fc: #ffffff;
869
+
870
+ --theme-hover: #353C4B;
871
+
872
+ --plugin-blue1: #0396FF;
873
+ --plugin-blue2: #2D94FF;
874
+ --plugin-bgColor1: #2C3347;
875
+ --plugin-bgColor2: #2B3248;
876
+ --plugin-bgColor3: #004678;
877
+ --plugin-bgColor4: #2b385c;
878
+ --plugin-bgColor5: #2c3347;
879
+ --plugin-radial-bgColor: #032283 radial-gradient(circle at 50% 50%, rgba(4, 9, 44, 0.5) 0%, rgba(102, 187, 255, 0.5) 100%, rgba(18, 76, 170, 0.5) 100%);
880
+ --plugin-tagColor1: #383F52;
881
+ --plugin-tagColor2: #383F52;
882
+ --plugin-tagColor3: #2b385c;
883
+ --plugin-tagColor4: #383F52;
884
+ --plugin-borderColor1: #2c3347;
885
+ --plugin-text1: #f0f4ff;
886
+ --plugin-text2: #FBD500;
887
+ --plugin-titleColor1: #0e7cce;
888
+ --plugin-downloadColor: #fff;
889
+
890
+
891
+ --allocation-menu-active-background: linear-gradient(270deg,
892
+ rgba(51, 124, 239, 0.1) 0%,
893
+ rgba(51, 124, 239, 0.23) 100%);
894
+ --allocation-menu-active-color: #f0f4ff;
895
+
896
+
457
897
  }