Skip to content

Commit

Permalink
fix(sheet): selection color (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
DR-Univer committed Mar 14, 2024
1 parent be4482c commit 609f907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sheets/src/basics/selection.ts
Expand Up @@ -149,7 +149,7 @@ export interface ISelectionWithStyle extends ISelection {
// The default configuration of the selection.
export function getNormalSelectionStyle(themeService: ThemeService): ISelectionStyle {
const styleSheet = themeService.getCurrentTheme();
const fill = new ColorKit(styleSheet.colorBlack).setAlpha(0.1).toRgbString();
const fill = new ColorKit(styleSheet.primaryColor).setAlpha(0.07).toRgbString();
return {
strokeWidth: 1.5,
stroke: styleSheet.primaryColor,
Expand Down

0 comments on commit 609f907

Please sign in to comment.