Skip to content

Commit

Permalink
Use accentLight color for resize indicator (#862)
Browse files Browse the repository at this point in the history
* Use accentLight color for resize indicator

* Blend with bgCell
  • Loading branch information
LukasMasuch committed Jan 11, 2024
1 parent e730b21 commit 0812b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/internal/data-grid/data-grid-render.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,7 @@ function drawColumnResizeOutline(
ctx.lineTo(yOffset, height);

ctx.lineWidth = 2;
ctx.strokeStyle = theme.accentColor;
ctx.strokeStyle = blend(theme.accentLight, theme.bgCell);

ctx.stroke();

Expand Down

0 comments on commit 0812b19

Please sign in to comment.