2 Commits

Author SHA1 Message Date
3e7d6eeaa5 include old version 2020-11-08 21:18:51 +00:00
f6308110be try again 2020-11-08 20:53:52 +00:00
3 changed files with 5 additions and 5 deletions

View File

@@ -2,5 +2,5 @@
rm -rf dist rm -rf dist
mkdir dist mkdir dist
cp -r README.md LICENSE index.html script.js pkg includes dist cp -r README.md LICENSE index.html script.js pkg includes old dist
butler push dist ruin/pixsy:html butler push dist ruin/pixsy:html

View File

@@ -69,9 +69,9 @@ html(lang="en-gb")
#new-palette(style="display: none;") #new-palette(style="display: none;")
.half .half
input#colour-background(type="color" value="#000") input#colour-background(type="color" value="#000000")
.half .half
input#colour-foreground(type="color" value="#fff") input#colour-foreground(type="color" value="#ffffff")
label label
input#dither(type="checkbox" checked=true) input#dither(type="checkbox" checked=true)

View File

@@ -261,8 +261,8 @@ async function run() {
inputRoomName.value = ""; inputRoomName.value = "";
selectPalette.innerHTML = ""; selectPalette.innerHTML = "";
divNewPalette.style.display = "none"; divNewPalette.style.display = "none";
inputColourBackground.value = "#000"; inputColourBackground.value = "#000000";
inputColourForeground.value = "#fff"; inputColourForeground.value = "#ffffff";
checkboxDither.checked = true; checkboxDither.checked = true;
} }