Art Lab 🎨

Create pixel art with code

Tools

Colors

#6366f1
🖼️Canvas (16x16)
Click to draw
Art Code
art.js

Example Art

Drawing Functions

fill(x, y, color)

Fill single pixel

rect(x, y, w, h, color)

Draw rectangle

line(x1, y1, x2, y2, c)

Draw line

circle(cx, cy, r, c)

Draw circle

clear(color)

Clear canvas

random(min, max)

Random number

Tip: Use for loops to create patterns! Canvas is 16x16 pixels (x: 0-15, y: 0-15).