Adds the colour 'black' to match light themes

master
Francisco Pina Martins 2022-01-14 17:58:35 +00:00
parent 43a7d8fc52
commit 38f285df92
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@
require('Storage').writeJSON(FILE, settings); require('Storage').writeJSON(FILE, settings);
} }
var colnames = ["white", "yellow", "green", "cyan", "red", "orange"]; var colnames = ["white", "yellow", "green", "cyan", "red", "orange", "magenta", "black"];
var colvalues = [0xFFFF, 0xFFE0, 0x07E0, 0x07FF, 0xF800, 0xFD20]; var colvalues = [0xFFFF, 0xFFE0, 0x07E0, 0x07FF, 0xF800, 0xFD20, 0xF81F, 0x0000];
// Show the menu // Show the menu
E.showMenu({ E.showMenu({
"" : { "title" : "VectorClock colours" }, "" : { "title" : "VectorClock colours" },