We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b7d81c commit a1ae9afCopy full SHA for a1ae9af
src/board/buttons.ts
@@ -103,7 +103,7 @@ export class Button {
103
}
104
105
render() {
106
- const fill = !!this.state.value ? "#f7febfdd" : "none";
+ const fill = !!this.state.value ? "#00c800" : "#000000";
107
this.element.querySelectorAll("circle").forEach((c) => {
108
c.style.fill = fill;
109
});
src/board/pins.ts
@@ -106,7 +106,7 @@ export class Pin {
if (this.ui) {
- const fill = !!this.state.value ? "#f7febfdd" : "url(#an)";
+ const fill = !!this.state.value ? "#00c800" : "url(#an)";
110
this.ui.element.querySelectorAll("path").forEach((p) => {
111
if (!p.classList.contains("no-edit")) {
112
p.style.fill = fill;
src/microbit-drawing.svg
0 commit comments