From 5cdedda127ab418fee9a0e2b1a1607e5c3a3a816 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Thu, 11 Dec 2025 15:59:49 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E8=B0=83=E6=95=B4=E6=B5=85?= =?UTF-8?q?=E8=89=B2=E6=A8=A1=E5=BC=8F=E4=B8=8B=E7=9A=84=E8=83=8C=E6=99=AF?= =?UTF-8?q?=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/TGShare.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/utils/TGShare.ts b/src/utils/TGShare.ts index 40f5ce5c..992213ef 100644 --- a/src/utils/TGShare.ts +++ b/src/utils/TGShare.ts @@ -1,6 +1,6 @@ /** * 生成分享截图并保存到本地 - * @since Beta v0.8.7 + * @since Beta v0.9.0 */ import showSnackbar from "@comp/func/snackbar.js"; @@ -72,15 +72,15 @@ export async function getImageBuffer(url: string): Promise { } /** - * @description 获取分享截图背景色 - * @since Beta v0.3.2 + * 获取分享截图背景色 + * @since Beta v0.9.0 * @returns {string} 背景色 */ function getShareImgBgColor(): string { let theme = localStorage.getItem("theme"); if (theme) theme = JSON.parse(theme).theme; if (theme === "dark") return "#1e1e1e"; - return "#f9f6f2"; + return "#ffffff"; } /**