Skip to content

Commit 545ac28

Browse files
committed
fix pixel art editor colors
1 parent 2268810 commit 545ac28

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

public/sw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const cacheName = "luizbills.litecanvas-editor-v1";
2-
const version = "2.16.3";
2+
const version = "2.16.4";
33

44
const precacheResources = [
55
"/",

public/tools/pixel-art-editor.html

+11-9
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145

146146
@media (prefers-color-scheme: dark) {
147147
body {
148-
background: #000;
148+
background: #111;
149149
color: #fff;
150150
}
151151

@@ -236,18 +236,20 @@ <h1>litepixel</h1>
236236
const $ = (selector) => document.querySelector(selector);
237237
// color palette
238238
const colors = [
239-
"#18161c",
239+
"#000",
240240
"#6a7799",
241241
"#aec2c2",
242-
"#f3eade",
243-
"#f04f78",
244-
"#fcf660",
245-
"#2f328f",
246-
"#4b80ca",
242+
"#FFF1E8",
243+
244+
"#d82800",
245+
"#f8d878",
246+
"#155fd9",
247+
"#3cbcfc",
248+
247249
"#327345",
248250
"#63c64d",
249-
"#703075",
250-
"#a56243",
251+
"#6844fc",
252+
"#ac7c00",
251253
];
252254
// local storage wrapper
253255
const storage = {

0 commit comments

Comments
 (0)