mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-22 22:12:28 -05:00
add option to override colours
This commit is contained in:
parent
82fd6f0d2f
commit
76ce7d6fe6
2 changed files with 5 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -10,8 +10,9 @@ npm-*
|
|||
/.nyc_output
|
||||
/coverage
|
||||
|
||||
# IDEA
|
||||
# Editor
|
||||
/.idea
|
||||
/.vscode
|
||||
|
||||
# Build
|
||||
/dist
|
||||
|
|
|
@ -498,9 +498,9 @@ class Runtime extends EventEmitter {
|
|||
name: maybeFormatMessage(extensionInfo.name),
|
||||
blockIconURI: extensionInfo.blockIconURI,
|
||||
menuIconURI: extensionInfo.menuIconURI,
|
||||
color1: '#FF6680',
|
||||
color2: '#FF4D6A',
|
||||
color3: '#FF3355',
|
||||
color1: extensionInfo.colour || '#FF6680',
|
||||
color2: extensionInfo.colourSecondary || '#FF4D6A',
|
||||
color3: extensionInfo.colourTertiary || '#FF3355',
|
||||
blocks: [],
|
||||
menus: []
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue