@ganwei-web/ganwei-pc-cli 6.3.1 → 6.3.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.
Files changed (25) hide show
  1. package/ganwei-iotcenter-index-6.2.3/configuration/moduleConfiguration.json +1 -1
  2. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +9 -10
  3. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +425 -0
  4. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +419 -0
  5. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/App.vue +10 -35
  6. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/expirationReminder/index.vue +7 -3
  7. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/layouts/Navigation/AsideMenu.vue +4 -3
  8. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/router.js +120 -18
  9. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/date.ts +2 -1
  10. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/dom.ts +2 -2
  11. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/env.ts +6 -0
  12. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/file.ts +1 -1
  13. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/number.ts +6 -6
  14. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/performance.ts +1 -1
  15. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/string.ts +1 -1
  16. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/xss-filter.ts +4 -0
  17. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +2 -1
  18. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.eslintrc.cjs +2 -2
  19. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/package.json +1 -1
  20. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/App.vue +1 -2
  21. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/views/template.vue +5 -1
  22. package/package.json +1 -1
  23. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +0 -65
  24. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/request/models/request/index.ts +0 -0
  25. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/request/models/response/index.ts +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "addressMapping": {
3
- "ganwei-iotcenter-equip-lists": "http://127.0.0.1:8400",
3
+ "ganwei-iotcenter-equip-lists": "http://127.0.0.1:8440",
4
4
  "ganwei-iotcenter-event-querys": "http://127.0.0.1:8380",
5
5
  "ganwei-iotcenter-index": "http://127.0.0.1:8160",
6
6
  "ganwei-iotcenter-login": "http://127.0.0.1:8180",
@@ -46,7 +46,6 @@ window.getElementLanguages = async () => {
46
46
  //① 是否需要请求 element.el
47
47
  const needElementRequest = !elementPkg || isEmptyObject(elementPkg['el']) || isEmptyObject(elementPkg['ele']);
48
48
 
49
-
50
49
  //② 是否需要请求 publics(login.publics)
51
50
  const needPublicsRequest = !loginPkg || isEmptyObject(loginPkg['publics']);
52
51
 
@@ -72,8 +71,8 @@ window.haveExistLanguage = (pluginName, menuName) => {
72
71
  const key = pluginName + '__' + menuName;
73
72
  const pkg = JSON.parse(sessionStorage.languagePackage || '{}');
74
73
  return pkg[langType] &&
75
- pkg[langType][key] &&
76
- Object.keys(pkg[langType][key]).length > 0;
74
+ pkg[langType][key] &&
75
+ Object.keys(pkg[langType][key]).length > 0;
77
76
  } catch {
78
77
  return false;
79
78
  }
@@ -98,12 +97,12 @@ window.requestLanguage = async (pluginName, menuName, packageId, vm) => {
98
97
  }).catch(() => ({}));
99
98
  }
100
99
 
101
- window.updateLanguage = (pluginName, menuName,vm, i18n) => {
100
+ window.updateLanguage = (pluginName, menuName, vm, i18n) => {
102
101
  if (!(vm && vm.i18nInstance) && !(i18n && i18n._vm)) {
103
102
  console.log(pluginName + '__' + menuName + ' 更新语言失败,没有找到 i18n 实例');
104
103
  return;
105
104
  }
106
-
105
+
107
106
  const langType = localStorage.languageType || 'zh-CN';
108
107
  let languagePackage = {};
109
108
  try {
@@ -159,8 +158,8 @@ window.haveExistLanguage = (pluginName, menuName) => {
159
158
  const key = pluginName + '__' + menuName;
160
159
  const pkg = JSON.parse(sessionStorage.languagePackage || '{}');
161
160
  return pkg[langType] &&
162
- pkg[langType][key] &&
163
- Object.keys(pkg[langType][key]).length > 0;
161
+ pkg[langType][key] &&
162
+ Object.keys(pkg[langType][key]).length > 0;
164
163
  } catch {
165
164
  return false;
166
165
  }
@@ -186,9 +185,9 @@ window.saveToSession = (pluginName, menuName, language) => {
186
185
  languagePackage[langType]['publics'] = language['publics'] || {};
187
186
  }
188
187
  else if (key === 'ganwei-iotcenter-login__element') {
189
- languagePackage[langType]['element'] = language || {};
190
- languagePackage[langType]['el'] = language['el'] || {};
191
- languagePackage[langType]['ele'] = language || {};
188
+ languagePackage[langType]['element'] = language || {};
189
+ languagePackage[langType]['el'] = language['el'] || {};
190
+ languagePackage[langType]['ele'] = language || {};
192
191
  }
193
192
  sessionStorage.setItem('languagePackage', JSON.stringify(languagePackage));
194
193
  } catch (e) {
@@ -454,4 +454,429 @@
454
454
  /* TaskPopper 组件样式 */
455
455
  --task-popper-background: var(--gw-color-Neutrals23);
456
456
  --task-popper-item-background: var(--gw-color-Neutrals27);
457
+
458
+
459
+
460
+ /* 旧版本样式 */
461
+ --color-primary: #fff;
462
+ --color-text-primary: #f0f4ff;
463
+ --color-text2: rgba(240, 244, 255, 0.88);
464
+ --color-text1: rgba(240, 244, 255, 0.56);
465
+ --input-btn-color: #d3d8e2;
466
+ --border-color-base: rgba(240, 244, 255, 0.16);
467
+ --background-color-base: #121622;
468
+ --background1: #181c29;
469
+ --background2: #202534;
470
+ --inputbackground3: #0c0e14;
471
+ --front-color: #252833;
472
+ --btn-background-primary: #3b4357;
473
+ --btn-color-primary: rgba(240, 244, 255, 0.88);
474
+ --btn-color: #fff;
475
+ --control-background: #3875ff;
476
+ --btn-hover-primary: #2769c2;
477
+ --background-color-light: #313747;
478
+ --table-icon-edit-color: #346ae4;
479
+ --table-icon-del-color: #bf2533;
480
+ --success: #63e03f;
481
+ --alarm: #f22433;
482
+ --warning: #f5bb36;
483
+ --h-color: #5386bb;
484
+ --mask: rgba(0, 0, 0, 0.3);
485
+ --mask1: rgba(0, 0, 0, 0.3);
486
+
487
+ --nav-bgColor: #252833;
488
+ --nav-bgColor1: #181c29;
489
+ --nav-bgColor2: #181c29;
490
+ --nav-bgColor3: #252833;
491
+ --nav-bgColor4: #181c29;
492
+ --nav-bgColor5: #202534;
493
+ --nav-bgColor6: #3f495f;
494
+ --nav-txColor: rgba(240, 244, 255, 0.56);
495
+ --nav-txColor1: #8b8f97;
496
+ --nav-iconColor: rgba(240, 244, 255, 0.56);
497
+
498
+ --asideColor: rgba(240, 244, 255, 0.56);
499
+
500
+ --nav-hoverBgColor: #181c29;
501
+ --nav-hoverTxColor: #f0f4ff;
502
+ --nav-hoverIconColor: #f0f4ff;
503
+ --nav-selBgColor: #3875ff;
504
+ --nav-selBgColor2: #3875ff;
505
+ --nav-selTxColor: #f0f4ff;
506
+ --nav-selIconColor: #f0f4ff;
507
+
508
+ --btn-bgColor: #3875ff;
509
+ --btn-bgColor1: rgba(59, 67, 87, 0.64);
510
+ --btn-bgColor2: #f22433;
511
+ --btn-bgColor3: #3b4357;
512
+ --btn-bgColor4: #252833;
513
+ --btn-bgColor5: #3b4357;
514
+ --btn-bgColor6: #13c2c2;
515
+ --btn-bgColor7: #eafaf4;
516
+ --btn-disableBgColor: #0c79dd;
517
+ --btn-bgColor8: #3b4357;
518
+ --btn-bgColor9: #0c0e14;
519
+ --btn-bgColor10: #313747;
520
+ --btn-selectBgColor: #3875ff;
521
+ --btn-txColor: #e6edff;
522
+ --btn-txColor1: #3875ff;
523
+ --btn-txColor2: rgba(240, 244, 255, 0.88);
524
+ --btn-txColor3: #fff;
525
+ --btn-txColor4: #f56c6c;
526
+ --btn-txColor5: #e6edff;
527
+ --btn-txColor6: #f22433;
528
+ --btn-txColor7: #313747;
529
+ --btn-txColor8: #2cd08c;
530
+ --btn-txColor9: #3875ff;
531
+ --btn-txColor10: #0987e5;
532
+ --btn-iconColor: #e6edff;
533
+ --btn-iconColor1: #d3d8e2;
534
+ --btn-iconColor2: #3875ff;
535
+ --btn-borderColor: #3875ff;
536
+ --btn-borderColor1: rgba(240, 244, 255, 0.16);
537
+ --btn-borderColor2: #464954;
538
+ --btn-borderColor3: #d5f6e8;
539
+ --btn-hoverBgColor: rgba(59, 67, 87, 1);
540
+ --btn-hoverBgColor1: rgba(240, 244, 255, 0.16);
541
+ --btn-hoverBgColor2: #2769c2;
542
+ --btn-hoverBgColor3: #253045;
543
+ --btn-hoverBgColor4: #3b4357;
544
+ --btn-hoverBgColor5: #2f3544;
545
+ --btn-hoverTXColor: #3875ff;
546
+ --btn-hoverTXColor1: #f0f4ff;
547
+ --btn-hoverBorColor: #264069;
548
+
549
+ --tab-bgColor: #0c0e14;
550
+ --tab-bgColor2: #252833;
551
+ --tab-bgColor3: #323745;
552
+ --tab-bgColor4: #202533;
553
+ --tab-bgColor5: #1c2230;
554
+ --tab-bgColor6: #1c2230;
555
+ --tab-bgColor7: #121622;
556
+ --tab-txColor: rgba(240, 244, 255, 0.5);
557
+ --tab-txColor1: rgba(240, 244, 255, 0.56);
558
+ --tab-txColor2: #626d84;
559
+ --tab-borderColor: transparent;
560
+ --tab-borderColor1: transparent;
561
+ --tab-selBgColor: #121622;
562
+ --tab-selBgColor2: #141722;
563
+ --tab-selBgColor3: #1f2432;
564
+ --tab-selBgColor4: #1f2432;
565
+ --tab-selBgColor5: #1c2230;
566
+ --tab-selTXColor: #f0f4ff;
567
+ --tab-selTXColor1: #ffffff;
568
+ --tab-hoverTXColor: #3875ff;
569
+ --tab-hoverBg: #1f2432;
570
+ --tab-actColor: #313747;
571
+
572
+ --input-bgColor: #0c0e14;
573
+ --input-bgColor2: #181c29;
574
+ --input-bgColor3: #313747;
575
+ --input-bgColor4: #121927;
576
+ --input-bgColor5: #151a27;
577
+ --input-bgColor6: #121927;
578
+ --input-disabled-bgColor: #29303f;
579
+ --input-btnBgColor3: #26282c;
580
+ --input-btnBorColor: #323848;
581
+ --input-btnBgColor: #f0f4ff;
582
+ --input-txColor: #d3d8e2;
583
+ --input-txColor1: #f0f4ff;
584
+ --input-plaColor: #2d2e30;
585
+ --input-plaColor1: rgba(240, 244, 255, 0.64);
586
+ --input-iconColor: #8f9091;
587
+ --input-iconColor1: #f0f4ff;
588
+ --input-borderColor: rgba(240, 244, 255, 0.16);
589
+ --input-borderColor1: rgba(235, 236, 240, 0.5);
590
+ --input-borderColor2: rgba(240, 244, 255, 0.16);
591
+ --input-borderColor3: #3d4a63;
592
+ --input-selBorColor: #3875ff;
593
+ --input-hoverBorColor: #8f9091;
594
+
595
+ --textarea-fontColor: #fafafa;
596
+ --textarea-backgroundColor: #0c0e14;
597
+ --textarea-borderColor: rgba(240, 244, 255, 0.16);
598
+
599
+ --txt-color-1: #3875ff;
600
+ --txt-color-2: #ff7a00;
601
+
602
+ --table-headerBgColor: #181c29;
603
+ --table-headerBgColor2: #29303f;
604
+ --table-txColor: #f0f4ff;
605
+ --table-headerTXColor: #8d929d;
606
+ --table-borderColor: #000;
607
+ --table-rowBgColor: #252833;
608
+ --table-hoverRowBgColor: #3b4357;
609
+ --table-rowBgColor-strip: #1c2230;
610
+ --table-rowBgColor-strip2: #151a27;
611
+ --table-iconEdit: #346ae4;
612
+ --table-iconDel: #bf2533;
613
+ --table-borderBottomColor: #181c29;
614
+
615
+ --con-textColor1: #f0f4ff;
616
+ --con-textColor2: rgba(240, 244, 255, 0.88);
617
+ --con-textColor3: rgba(240, 244, 255, 0.64);
618
+ --con-textColor4: rgba(240, 244, 255, 0.56);
619
+ --con-textColor5: rgba(240, 244, 255, 0.32);
620
+ --con-textColor6: rgba(240, 244, 255, 0.16);
621
+ --con-textColor7: rgba(240, 244, 255, 0.08);
622
+ --con-textColor8: #f0f4ff;
623
+ --con-textColor9: #b7b7ba;
624
+ --con-textColor10: #f0f4ff;
625
+ --con-textColor11: #f0f4ff;
626
+ --con-textColor12: #f0f0f0;
627
+ --con-textColor13: linear-gradient(to top, #2c75d8, #61c5fe);
628
+ --con-textColor14: #cccccc;
629
+ --con-textColor15: #999999;
630
+ --con-textColor16: #dbdbdb;
631
+ --con-textColor17: #7af8ff;
632
+ --con-textColor18: #999999;
633
+ --con-textColor19: #cccccc;
634
+ --con-textColor20: #999999;
635
+ --con-textColor21: #f8c161;
636
+ --con-textColor22: #0adae6;
637
+ --con-textColor23: #dbdbdb;
638
+ --con-textColor24: #dfdfdf;
639
+ --con-textColor25: #999999;
640
+ --con-textColor26: #dbdbdb;
641
+ --con-textColor27: #f0f4ff;
642
+ --con-textColor28: #666666;
643
+ --con-textColor29: #4df6af;
644
+ --con-bgColor1: #090f1a;
645
+ --con-bgColor2: #0c0e14;
646
+ --con-bgColor3: #181c29;
647
+ --con-bgColor4: #252833;
648
+ --con-bgColor5: #313747;
649
+ --con-bgColor5-1: #313747;
650
+ --con-bgColor6: #3b4357;
651
+ --con-bgColor6-1: #3b4357;
652
+ --con-bgColor7: #181c29;
653
+ --con-bgColor8: transparent;
654
+ --con-bgColor9: #3e3e42;
655
+ --con-bgColor10: #1d1e20;
656
+ --con-bgColor11: #2d2e30;
657
+ --con-bgColor12: #3b4357;
658
+ --con-bgColor13: linear-gradient(-43deg, #181c29, #3b4357);
659
+ --con-bgColor14: #313747;
660
+ --con-bgColor15: #313747;
661
+ --con-bgColor16: transparent;
662
+ --con-bgColor17: #313747;
663
+ --con-bgColor18: #252833;
664
+ --con-bgColor19: #202534;
665
+ --con-bgColor20: #1f2535;
666
+ --con-bgColor21: #29303f;
667
+ --con-bgColor22: #121622;
668
+ --con-bgColor23: #242938;
669
+ --con-bgColor24: rgba(63, 72, 95, 0.39);
670
+ --con-bgColor25: #2b3245;
671
+ --con-bgColor26: #121927;
672
+ --con-bgColor27: #1f2535;
673
+ --con-bgColor28: #293040;
674
+ --con-bgColor29: #1b1f2c;
675
+ --con-bgColor30: #555555;
676
+ --con-bgColor31: #252936;
677
+ --con-borderColor: rgba(240, 244, 255, 0.16);
678
+ --con-borderColor1: rgba(240, 244, 255, 0.16);
679
+ --con-borderColor2: rgba(240, 244, 255, 0.08);
680
+ --con-borderColor3: #3b4860;
681
+ --con-borderColor4: #3d4a63;
682
+ --con-borderColor5: rgba(240, 244, 255, 0.08);
683
+ --con-borderHoverColor: #8f9091;
684
+ --con-borderHoverColor2: #5d709b;
685
+
686
+ --con-themeColor: #3875ff;
687
+ --con-themeColor2: #2669ec;
688
+ --con-successColor: #63e03f;
689
+ --con-alarmColor: #f22433;
690
+ --con-alarmColor2: #f73231;
691
+ --con-warningColor: #f5bb36;
692
+
693
+ --border-color-1: rgba(61, 74, 99, 0.51);
694
+ --border-color-2: #3d4a63;
695
+ --border-color-3: #30384b;
696
+ --border-color-4: #30384b;
697
+ --border-color-5: #5E6576;
698
+ --bor-default: rgba(240, 244, 255, 0.16);
699
+ --bor-primary: #3875ff;
700
+ --bor-danger: #f22433;
701
+ --bor-light: #fff;
702
+
703
+ --dialog-textColor1: #f0f4ff;
704
+ --dialog-textColor2: rgba(240, 244, 255, 0.56);
705
+ --dialog-bgColor: #1f2535;
706
+ --dialog-bgColor2: #181c29;
707
+ --dialog-bgColor3: #0c0e14;
708
+ --dialog-bgColor4: #1f2535;
709
+ --dialog-groupBgColor: #313747;
710
+ --dialog-groupBgColor2: #313747;
711
+ --dialog-labelBgColor: #313747;
712
+ --dialog-shadow: 0px 12px 20px 0px rgba(12, 14, 20, 0.64);
713
+
714
+ --tips-textColor1: #f0f4ff;
715
+ --tips-textColor2: rgba(240, 244, 255, 0.56);
716
+ --tips-bgColor: #252833;
717
+ --tips-text: #999999;
718
+
719
+ --sel-textColor: #f0f4ff;
720
+ --sel-bgColor: #0c0e14;
721
+ --sel-tagtextColor: rgba(240, 244, 255, 0.56);
722
+ --sel-tagBgColor: #252833;
723
+ --sel-tagIconColor: rgba(240, 244, 255, 0.56);
724
+
725
+ --dropdown-bgColor: #0c0e14;
726
+ --dropdown-bgColor1: rgba(0, 0, 0, 0.8);
727
+
728
+ --page-textColor: #c1c1c1;
729
+ --page-textColor1: #888;
730
+ --page-bgColor: #3875ff;
731
+ --page-borColor: #313747;
732
+ --page-bgColor2: #272c3d;
733
+
734
+ --tree-bgColor: #313747;
735
+ --tree-bgColor1: #252833;
736
+ --tree-bgColor2: #212533;
737
+ --tree-bgColor3: #181c29;
738
+ --tree-bgColor4: #252833;
739
+ --tree-bgColor5: transparent;
740
+ --tree-bgColor6: #2c3342;
741
+ --tree-bgColor7: #202534;
742
+ --tree-bgColor8: #2c3342;
743
+ --tree-txColor: #fff;
744
+ --tree-txColor1: rgba(240, 244, 255, 0.88);
745
+ --tree-iconColor: #fff;
746
+ --tree-selBgColor: #3b4357;
747
+ --tree-selBgColor1: #3875ff;
748
+ --tree-selTXColor: #fff;
749
+ --tree-linearColor: #8c8c8c;
750
+ --tree-borderColor: rgba(240, 244, 255, 0.16);
751
+ --tree-borderColor1: #353843;
752
+ --tree-labelBg: #313747;
753
+
754
+ --radio-bgColor: #252833;
755
+ --radio-selectBg: #3875ff;
756
+ --radio-selectBorder: #252833;
757
+
758
+ --switch-bgColor: #121927;
759
+ --switch-bgColor1: #337cef;
760
+
761
+ --popover-bgColor: #121623;
762
+ --popover-bgColor2: #313747;
763
+ --popover-bgColor3: rgba(3, 3, 3, 1);
764
+ --popover-txColor: #fff;
765
+ --popover-borderColor: rgba(240, 244, 255, 0.16);
766
+ --popover-borderColor2: #595959;
767
+ --popover-borderColor3: #2a2d3a;
768
+ --popover-hoverBgColor: #3875ff;
769
+ --popover-hoverTXColor: #fff;
770
+
771
+ --scrollbar-bgColor: #313747;
772
+
773
+ --avater-textColor: #181c29;
774
+ --avater-baColor: rgba(240, 244, 255, 0.64);
775
+
776
+ --datePanelBg: #121622;
777
+ --timeHeaderColor: #f0f4ff;
778
+ --pickerHeaderBg: #3b4357;
779
+ --iconBtnColor: #3875ff;
780
+ --pickRangeBg: #2b4074;
781
+ --footerBtnColor: #f22433;
782
+ --datePick-selectRangeBg: #3b4357;
783
+ --datePick-selectColor: #252833;
784
+ --timePick-hoverBg: #5e5f5f;
785
+
786
+ --noData-fontColor: #ced2dd;
787
+ --noData-fontColor1: #91a2af;
788
+
789
+ --fc-todayBg: #0d1f4c;
790
+
791
+ --radar-bgColor: transparent;
792
+ --radar-title: #3875ff;
793
+
794
+ --tag-title: #abceff;
795
+ --tag-unit: #f0f0f0;
796
+ --tag-number1: #f0f0f0;
797
+ --tag-number2: #f0f0f0;
798
+ --tag-number3: #f0f0f0;
799
+ --tag-number4: #f0f0f0;
800
+ --tag-number5: #f0f0f0;
801
+
802
+ --timeLine-default: #3d4a63;
803
+ --timeLine-infosBg: #29303f;
804
+ --timeLine-dot1: #8d929d;
805
+ --timeLine-dotBorder1: #3775ff;
806
+ --timeLine-dotBorder2: #1b2231;
807
+ --timeLine-line: #8d929d;
808
+
809
+ --list-bgColor-1: #202534;
810
+ --list-bgColor-2: #3b4357;
811
+ --list-bgColor-3: #29303f;
812
+ --list-labelBg: #313747;
813
+
814
+ --snapshots-bg: #1e2332;
815
+ --snapshots-bor: -webkit-linear-gradient(-40deg,
816
+ #3368df 0%,
817
+ transparent 10%,
818
+ transparent 90%,
819
+ #3875ff 100%) 10;
820
+ --snapshot-bor: #1b1f2c;
821
+ --snapshot-bg: #1b1f2c;
822
+ --snapshot-bs: rgba(0, 0, 0, 0.44);
823
+ --snapshot-number: #7af8ff;
824
+
825
+ --splitline-bor1: #414653;
826
+ --splitline-bor2: rgba(0, 0, 0, 1);
827
+
828
+ --notifyBg: #f0ffe2;
829
+ --notifytitle: #222222;
830
+ --notifytext: #8b8f97;
831
+
832
+ --line-color: rgba(240, 244, 255, 0.16);
833
+ --line-color-1: rgba(240, 244, 255, 0.16);
834
+ --line-finish: #3875ff;
835
+
836
+ --types-fc-opacity: rgba(240, 244, 255, 0.64);
837
+ --types-fc-opacity2: rgba(240, 244, 255, 0.64);
838
+ --types-fc-opacity3: rgba(240, 244, 255, 0.64);
839
+ --types-fc: #f0f4ff;
840
+
841
+ --active-bg: #1c2230;
842
+ --active-fc: #c2c2c2;
843
+ --descriptions-bor: #313543;
844
+ --descriptions-fc: #e8f0ff;
845
+
846
+ --loadingBg: #495266;
847
+ --loading-bgColor: rgba(18, 22, 34, 0.9);
848
+
849
+ --img-color-1: linear-gradient(180deg, #f2f3f5 0%, #757d93 100%);
850
+ --img-color-2: #8b8f97;
851
+
852
+ --top-menu-bg: #494f60;
853
+ --top-menu-fc: #ffffff;
854
+
855
+ --theme-hover: #353C4B;
856
+
857
+ --plugin-blue1: #0396FF;
858
+ --plugin-blue2: #2D94FF;
859
+ --plugin-bgColor1: #2C3347;
860
+ --plugin-bgColor2: #2B3248;
861
+ --plugin-bgColor3: #004678;
862
+ --plugin-bgColor4: #2b385c;
863
+ --plugin-bgColor5: #2c3347;
864
+ --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%);
865
+ --plugin-tagColor1: #383F52;
866
+ --plugin-tagColor2: #383F52;
867
+ --plugin-tagColor3: #2b385c;
868
+ --plugin-tagColor4: #383F52;
869
+ --plugin-borderColor1: #2c3347;
870
+ --plugin-text1: #f0f4ff;
871
+ --plugin-text2: #FBD500;
872
+ --plugin-titleColor1: #0e7cce;
873
+ --plugin-downloadColor: #fff;
874
+
875
+
876
+ --allocation-menu-active-background: linear-gradient(270deg,
877
+ rgba(51, 124, 239, 0.1) 0%,
878
+ rgba(51, 124, 239, 0.23) 100%);
879
+ --allocation-menu-active-color: #f0f4ff;
880
+
881
+
457
882
  }