Skip to content

Commit

Permalink
Fix colours
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Feb 1, 2024
1 parent 77efd4b commit 06a2a22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/engine/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -1219,9 +1219,9 @@ class Runtime extends EventEmitter {
type: menuId,
inputsInline: true,
output: 'String',
colour: categoryInfo.color1,
colourSecondary: categoryInfo.color2,
colourTertiary: categoryInfo.color3,
colour: menuInfo.acceptText ? "#FFFFFF" : categoryInfo.color1,

Check failure on line 1222 in src/engine/runtime.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote
colourSecondary: menuInfo.acceptText ? "#FFFFFF" : categoryInfo.color2,

Check failure on line 1223 in src/engine/runtime.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote
colourTertiary: menuInfo.acceptText ? "#FFFFFF" : categoryInfo.color3,

Check failure on line 1224 in src/engine/runtime.js

View workflow job for this annotation

GitHub Actions / build

Strings must use singlequote
outputShape: menuInfo.acceptReporters ?
ScratchBlocksConstants.OUTPUT_SHAPE_ROUND : ScratchBlocksConstants.OUTPUT_SHAPE_SQUARE,
args0: [
Expand Down

0 comments on commit 06a2a22

Please sign in to comment.