Commit 8cf004a5f59895e2487c3a350c83000e585b897e
1 parent
32d64dbe
fix(dark-theme): bgcolor of `selected tree node` in dark theme
修复tree的被选中节点的背景颜色在黑暗模式下不正确的问题 fixed: #949
Showing
2 changed files
with
2 additions
and
0 deletions
CHANGELOG.zh_CN.md
build/vite/plugin/theme.ts
... | ... | @@ -57,6 +57,7 @@ export function configThemePlugin(isBuild: boolean): Plugin[] { |
57 | 57 | // 'border-color-split': '#30363d', |
58 | 58 | 'item-active-bg': '#111b26', |
59 | 59 | 'app-content-background': 'rgb(255 255 255 / 4%)', |
60 | + 'tree-node-selected-bg': '#11263c', | |
60 | 61 | }, |
61 | 62 | }), |
62 | 63 | ]; | ... | ... |