💄 修改浅色主题默认bg color

This commit is contained in:
目棃
2024-03-26 15:36:36 +08:00
parent eaf2245e38
commit 6b2ef079ca
2 changed files with 3 additions and 3 deletions

View File

@@ -1,13 +1,13 @@
/** /**
* @file assets/themes/default.css * @file assets/themes/default.css
* @description 主题样式文件-默认(浅色)主题 * @description 主题样式文件-默认(浅色)主题
* @since Beta v0.4.1 * @since Beta v0.4.5
*/ */
/* default(light) theme */ /* default(light) theme */
html.default { html.default {
/* app container */ /* app container */
--app-page-bg: #f9f6f2; --app-page-bg: #ffffff;
--app-page-content: #2f2f2f; --app-page-content: #2f2f2f;
--app-side-bg: #f2f2f2; --app-side-bg: #f2f2f2;
--app-side-content: #222222; --app-side-content: #222222;

View File

@@ -1,7 +1,7 @@
<template> <template>
<div class="tbc-box" data-html2canvas-ignore> <div class="tbc-box" data-html2canvas-ignore>
<div class="tbc-btn" @click="switchCollect()" :title="isCollected ? '取消收藏' : '收藏'"> <div class="tbc-btn" @click="switchCollect()" :title="isCollected ? '取消收藏' : '收藏'">
<v-icon :color="isCollected ? 'yellow' : 'white'"> <v-icon size="large" :color="isCollected ? 'yellow' : 'inherit'">
{{ isCollected ? "mdi-star" : "mdi-star-outline" }} {{ isCollected ? "mdi-star" : "mdi-star-outline" }}
</v-icon> </v-icon>
</div> </div>