Browse Source

新增主题色

ZaiZai 1 year ago
parent
commit
c151084332
3 changed files with 6 additions and 2 deletions
  1. 1 1
      public/version.json
  2. 1 0
      src/config/theme.js
  3. 4 1
      src/styles/app/main.scss

+ 1 - 1
public/version.json

@@ -1,3 +1,3 @@
 {
-  "value": "20240125152518"
+  "value": "20240125154154"
 }

+ 1 - 0
src/config/theme.js

@@ -2,6 +2,7 @@
 export default {
     color: [
         { name: 'blue', color: '#204DA0', label: '深蓝' },
+        { name: 'blue1', color: '#0D3253', label: '暗蓝' },
         { name: 'light-blue', color: '#409eff', label: '浅蓝' },
         { name: 'black1', color: '#2c3643', label: '黑色' },
     ],

+ 4 - 1
src/styles/app/main.scss

@@ -12,7 +12,10 @@ embed {
     background-color: #004ca7 !important;
     color: white !important;
 }
-
+.bg-blue1 {
+    background-color: #0E2741 !important;
+    color: white !important;
+}
 .bg-light-blue {
     background-color: #409eff !important;
     color: white !important;