about summary refs log tree commit diff stats
path: root/js/pixel-art/index.html
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-08-22 21:34:43 -0400
committerelioat <elioat@tilde.institute>2024-08-22 21:34:43 -0400
commita04981476d9f3d282f76969bd55f7f32d65dda06 (patch)
treea7e819f519c79c04c91cfcd9566bbcd16fc6df94 /js/pixel-art/index.html
parent219801d28401d7283bf2e133cc16f0dc80999b49 (diff)
downloadtour-a04981476d9f3d282f76969bd55f7f32d65dda06.tar.gz
*
Diffstat (limited to 'js/pixel-art/index.html')
-rw-r--r--js/pixel-art/index.html27
1 files changed, 19 insertions, 8 deletions
diff --git a/js/pixel-art/index.html b/js/pixel-art/index.html
index abae244..87f240e 100644
--- a/js/pixel-art/index.html
+++ b/js/pixel-art/index.html
@@ -6,19 +6,30 @@
 	<title>pixel art</title>
 	<script type="text/javascript" src="app.js"></script>
 	<style type="text/css">
-		.editor {
-			max-width: 80em;
-			padding: 1em;
+		body {
+			padding: 1.75em 1em;
 			margin: 0 auto;
 			display: block;
 		}
 	</style>
+	<link rel="icon" href="apple-icon-180x180.png" type="image/x-icon">
 </head>
 <body>
-<div class="editor"></div>
-<script>
-  document.querySelector("div")
-    .appendChild(startPixelEditor({}));
-</script>
+	<!-- <input type="number" name="size" value="16" min="8" max="200"> -->
+	<div class="editor"></div>
+	<script>
+	  document.querySelector("div")
+	    .appendChild(startPixelEditor({}));
+	</script>
+	<p><a href="./pixel/index.html">Check out a more advanced pixel art tool that I made after this one.</a></p>
+	<p>
+		Gameboy colors:
+		<ul>
+			<li><span style="background-color: #071821;">&nbsp;&nbsp;&nbsp;&nbsp;</span>   <code>#071821</code></li>
+			<li><span style="background-color: #86c06c;">&nbsp;&nbsp;&nbsp;&nbsp;</span>   <code>#86c06c</code></li>
+			<li><span style="background-color: #e0f8cf;">&nbsp;&nbsp;&nbsp;&nbsp;</span>   <code>#e0f8cf</code></li>
+			<li><span style="background-color: #65ff00;">&nbsp;&nbsp;&nbsp;&nbsp;</span>   <code>#65ff00</code></li>
+		</ul>
+	</p>
 </body>
 </html>
\ No newline at end of file