Binding highlight is now hot pink

This commit is contained in:
Mark Tolmacs
2025-08-25 16:06:48 +02:00
parent 3a49f0d792
commit 5f4b8c09d0
3 changed files with 1 additions and 14 deletions

View File

@@ -24,7 +24,6 @@ import {
} from "@excalidraw/common";
import { RoughGenerator } from "roughjs/bin/generator";
import chroma from "chroma-js";
import type { GlobalPoint } from "@excalidraw/math";
@@ -128,7 +127,7 @@ export class ShapeCache {
) as Drawable;
shape.options.fill = "transparent";
shape.options.stroke = chroma(shape.options.stroke).desaturate().hex();
shape.options.stroke = "#ff028d";
shape.options.strokeWidth = shape.options.strokeWidth * 1.1;
return shape;