define better default colors

This commit is contained in:
Raphael 2021-12-09 22:20:44 +01:00
parent 993b64f5c8
commit 27fbf9412c

View File

@ -759,7 +759,15 @@ function initWhiteboard() {
if (!localStorage.getItem("savedColors")) {
localStorage.setItem(
"savedColors",
JSON.stringify(["rgba(255, 136, 0, 1)", "rgba(0, 0, 0, 1)", "rgba(0, 128, 0, 1)"])
JSON.stringify([
"rgba(0, 0, 0, 1)",
"rgba(255, 255, 255, 1)",
"rgba(255, 0, 0, 1)",
"rgba(0, 255, 0, 1)",
"rgba(0, 0, 255, 1)",
"rgba(255, 255, 0, 1)",
"rgba(255, 0, 255, 1)",
])
);
}