5 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
2d73963aa0 black and white palette 2020-11-08 20:52:29 +00:00
6f8e00130c update deploy script 2020-11-08 20:50:55 +00:00
b478b1e3ee update deploy script 2020-11-08 20:50:42 +00:00
3 changed files with 6 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
#! /usr/bin/env bash
./build.sh
rm -rf dist
mkdir dist
cp -r README.md LICENSE index.html script.js background.png pkg includes dist
# butler push dist ruin/pixsy:html
cp -r README.md LICENSE index.html script.js pkg includes old dist
butler push dist ruin/pixsy:html

View File

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

View File

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