From 75b553ac9398ea54a49482c6ccc04ee2e5ad09d6 Mon Sep 17 00:00:00 2001 From: Timi Date: Mon, 8 Dec 2025 15:27:21 +0800 Subject: [PATCH] add wechat color in theme --- miniprogram/theme.wxss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/miniprogram/theme.wxss b/miniprogram/theme.wxss index 4367a60..a785240 100644 --- a/miniprogram/theme.wxss +++ b/miniprogram/theme.wxss @@ -5,6 +5,9 @@ /* 浅色模式变量 */ page { + /* 微信标准色 */ + --theme-wx: #07C160; + /* === 背景色 === */ --theme-bg-primary: #FFFFFF; --theme-bg-secondary: #F5F5F5; @@ -54,6 +57,9 @@ page { /* 深色模式变量 */ page[data-weui-theme="dark"] { + /* 微信标准色 */ + --theme-wx: #07C160; + /* === 背景色 === */ --theme-bg-primary: #1A1A1A; --theme-bg-secondary: #2A2A2A;