mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:41:08 +02:00
- apps/bauntown: Developer community website (Astro landing) - apps/presi: Presentation project - games/voxel-lava: Voxel lava game (SvelteKit) - games/whopixels: Whopixels game 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
829 B
HTML
27 lines
829 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tile Image</title>
|
|
<style>
|
|
body { margin: 0; background: #333; display: flex; justify-content: center; align-items: center; height: 100vh; }
|
|
canvas { display: block; border: 1px solid #fff; background: #000; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" width="32" height="32"></canvas>
|
|
<script>
|
|
const canvas = document.getElementById('canvas');
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
// Draw tile
|
|
ctx.fillStyle = '#ffffff';
|
|
ctx.fillRect(0, 0, 32, 32);
|
|
ctx.strokeStyle = '#cccccc';
|
|
ctx.lineWidth = 1;
|
|
ctx.strokeRect(0.5, 0.5, 31, 31);
|
|
|
|
// Instructions (shown in console)
|
|
console.log('Right-click and save this image as tile.png');
|
|
</script>
|
|
</body>
|
|
</html>
|