From af263c8183234bd4f489f56a40801364fad0cde6 Mon Sep 17 00:00:00 2001 From: Dmitriy Antipov Date: Sat, 6 May 2023 19:47:27 +0300 Subject: [PATCH] change-gray-ti-brown (#1021) A typo that hadn't been noticed before. Does not affect the operation of the simulator. --- sim/visuals/controls/colorGrid.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/visuals/controls/colorGrid.ts b/sim/visuals/controls/colorGrid.ts index 5e98139d..e610bde7 100644 --- a/sim/visuals/controls/colorGrid.ts +++ b/sim/visuals/controls/colorGrid.ts @@ -5,7 +5,7 @@ namespace pxsim.visuals { export class ColorGridControl extends ControlView { private group: SVGGElement; - private static colorIds = ['red', 'yellow', 'blue', 'green', 'black', 'grey', 'white', 'none']; + private static colorIds = ['red', 'yellow', 'blue', 'green', 'black', 'brown', 'white', 'none']; private static colorValue = [5, 4, 2, 3, 1, 7, 6, 0]; private colorDivs: Element[] = []; @@ -15,7 +15,7 @@ namespace pxsim.visuals { this.group.setAttribute("transform", `translate(2, 2.5) scale(0.6)`) const colors = ['#f12a21', '#ffd01b', '#006db3', '#00934b', '#000', '#6c2d00']; - const colorIds = ['red', 'yellow', 'blue', 'green', 'black', 'grey']; + const colorIds = ['red', 'yellow', 'blue', 'green', 'black', 'brown']; let cy = -4; for (let c = 0; c < colorIds.length; c++) {