From ecca580d6a85289a7063c9857d2d688bed33e86c Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Fri, 03 Dec 2021 09:58:16 +0800
Subject: [PATCH] 全局颜色提取为sass变量

---
 common/common.scss |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/common/common.scss b/common/common.scss
index b9957b5..617fa29 100644
--- a/common/common.scss
+++ b/common/common.scss
@@ -12,27 +12,27 @@
     }
 }
 
-.m-mark {
-    color: #fb4242;
-}
+// .m-mark {
+//     color: #fb4242;
+// }
 
 .m-text-stress {
-    color: #2093df;
+    color: $colorStress;
 }
 .m-text-success {
-    color: #22c322;
+    color: $colorSuccess;
 }
 .m-text-info {
-    color: #05b7c7;
+    color: $colorInfo;
 }
 .m-text-warning {
-    color: #db9d00;
+    color: $colorWarning;
 }
 .m-text-danger {
-    color: #FF5722;
+    color: $colorDanger;
 }
 .m-text-ignore {
-    color: rgba(0, 0, 0, 0.45);
+    color: $colorIgnore;
 }
 
 [class^="m-border"] {

--
Gitblit v1.9.1