Skip to content
Snippets Groups Projects
Commit 646f9d69 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

#187 - Change feedback color to low

parent 3ebaa3a9
No related branches found
No related tags found
No related merge requests found
...@@ -47,13 +47,13 @@ module.exports = async function (self) { ...@@ -47,13 +47,13 @@ module.exports = async function (self) {
if (pad.status === 'PLAY') { if (pad.status === 'PLAY') {
let design = pad.design.play ?? self.currentProject.getDesign().play; let design = pad.design.play ?? self.currentProject.getDesign().play;
return { return {
bgcolor: hexStringToNumber(design.hi), bgcolor: hexStringToNumber(design.low),
color: hexStringToNumber(design.font) color: hexStringToNumber(design.font)
}; };
} else { } else {
let design = pad.design.normal ?? self.currentProject.getDesign().normal; let design = pad.design.normal ?? self.currentProject.getDesign().normal;
return { return {
bgcolor: hexStringToNumber(design.hi), bgcolor: hexStringToNumber(design.low),
color: hexStringToNumber(design.font) color: hexStringToNumber(design.font)
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment