Default color setting matches default RGB values

For color (hue) in range 0-100, to get RGB (0, 0, 1), we need to use 100 * 2/3 = 66.66
This commit is contained in:
Eric Rosenbaum 2017-10-17 23:10:58 -04:00
parent 240c48ad0c
commit a32f7a6402

View file

@ -67,7 +67,7 @@ class Scratch3PenBlocks {
static get DEFAULT_PEN_STATE () { static get DEFAULT_PEN_STATE () {
return { return {
penDown: false, penDown: false,
color: 33, color: 66.66,
saturation: 100, saturation: 100,
brightness: 100, brightness: 100,
transparency: 0, transparency: 0,