From e1e694369dabf557615669ce2f71e9af70277ff6 Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Wed, 07 Jan 2026 13:56:32 +0800
Subject: [PATCH] 1

---
 src/assets/css/variable.less |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/src/assets/css/variable.less b/src/assets/css/variable.less
new file mode 100644
index 0000000..4a1c7ee
--- /dev/null
+++ b/src/assets/css/variable.less
@@ -0,0 +1,30 @@
+//主题皮肤 - 预留功能
+:root {
+    --themeBagColor: red;
+}
+
+// 默认主题
+.theme-default {
+    --themeBagColor: #fff;
+}
+
+// 深黑主题
+.theme-dark {
+    --themeBagColor: black;
+}
+
+// 红色主题
+.theme-red {
+    --themeBagColor: red;
+}
+
+// 浅蓝主题
+.theme-blue {
+    --themeBagColor: blue;
+}
+
+// ------- 定义 Less 变量 -------
+@themeBagColor: var(--themeBagColor);
+
+// 遮罩层背景颜色
+@maskBagColor: rgba(31, 35, 41, .3);
\ No newline at end of file

--
Gitblit v1.9.3