diff --git a/js/foam/apps/calc/Calc.js b/js/foam/apps/calc/Calc.js index 41caae36d..f6bd5def8 100644 --- a/js/foam/apps/calc/Calc.js +++ b/js/foam/apps/calc/Calc.js @@ -190,7 +190,7 @@ CLASS({ name: "mult", label: "×", speechLabel: "multiply", - keyboardShortcuts: [ "*" ], + keyboardShortcuts: [ "*", "x" ], f: function (a1, a2) { return a1 * a2; } }, { diff --git a/js/foam/apps/calc/CalcView.js b/js/foam/apps/calc/CalcView.js index 76eb6200f..5120c6fb8 100644 --- a/js/foam/apps/calc/CalcView.js +++ b/js/foam/apps/calc/CalcView.js @@ -285,18 +285,18 @@ CLASS({ justify-content: center; display: flex; align-items: center; - background-color: #4b4b4b; + background-color: #333333; } .rhs-ops { border-left-width: 1px; border-left-style: solid; border-left-color: rgb(68, 68, 68); - background: #777; + background: #4a4a4a; } .rhs-ops .button { - background-color: #777; + background-color: #4a4a4a; } .history { @@ -340,20 +340,20 @@ CLASS({ .secondaryButtons { padding-left: 30px; - background: rgb(52, 153, 128); + background: #00796b; } .secondaryButtons .button { - background: rgb(52, 153, 128); + background: #00796b; } .tertiaryButtons { padding-left: 35px; - background: rgb(29, 233, 182); + background: #1DE9B6; } .tertiaryButtons .button { - background: rgb(29, 233, 182); + background: #1DE9B6; } .keypad { diff --git a/js/foam/apps/calc/MainButtonsView.js b/js/foam/apps/calc/MainButtonsView.js index a99a6c1a6..937aa7569 100644 --- a/js/foam/apps/calc/MainButtonsView.js +++ b/js/foam/apps/calc/MainButtonsView.js @@ -18,43 +18,43 @@ CLASS({ ], templates: [ function toHTML() {/* -