Skip to content

Commit

Permalink
Merge pull request #8 from Ruscios/patch-1
Browse files Browse the repository at this point in the history
Updated keyboard.go to have proper white value
  • Loading branch information
bambash authored Sep 1, 2020
2 parents 639bc19 + a572704 commit 1c93c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/keyboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var presetColors = map[string]RGBColor{
"blue": RGBColor{0, 0, 255},
"pink": RGBColor{255, 105, 180},
"purple": RGBColor{128, 0, 128},
"white": RGBColor{0, 0, 0},
"white": RGBColor{255, 255, 255},
}

var colorFiles = []string{"color", "color_center", "color_left", "color_right", "color_extra"}
Expand Down

0 comments on commit 1c93c51

Please sign in to comment.