style: Increased light color contrast to prevent blurring on some displays

This commit is contained in:
wonfen
2024-11-26 01:05:30 +08:00
parent c4986eec50
commit 9696c7cec0
6 changed files with 24 additions and 10 deletions

View File

@@ -90,7 +90,7 @@ export const useCustomTheme = () => {
}
// css
const backgroundColor = mode === "light" ? "#f0f0f0" : "#2e303d";
const backgroundColor = mode === "light" ? "#ECECEC" : "#2e303d";
const selectColor = mode === "light" ? "#f5f5f5" : "#d5d5d5";
const scrollColor = mode === "light" ? "#90939980" : "#54545480";
const dividerColor =