Skip to content

Commit 8e2b18e

Browse files
Ensure black on white for move indicator. (#612)
This fixes it in MakeCode's dark theme that sets color to white at a high level in the DOM which is then used on semi-transparent white here via currentColor. Seems reasonable to hardcoded the foreground if we do so for the background.
1 parent 1a6fa08 commit 8e2b18e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/move_indicator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class MoveIndicatorBubble
5353
Blockly.utils.Svg.PATH,
5454
{
5555
'fill': 'none',
56-
'stroke': 'currentColor',
56+
'stroke': 'black',
5757
'stroke-linecap': 'round',
5858
'stroke-linejoin': 'round',
5959
'stroke-width': '2',

0 commit comments

Comments
 (0)