Do Justly, Love Mercy, Walk Humbly

for preserved versions and original descriptions of the game's 40 levels.

Diamond Rush Jar 320x240 New is a puzzle game that challenges players to swap and match diamonds in a grid-based layout. The game features stunning 320x240 pixel graphics, making it easy to play on a variety of devices. With simple yet engaging gameplay, Diamond Rush Jar 320x240 New is the perfect game for those looking for a fun and casual gaming experience.

/* JAR shaped wrapper - 320x240 viewport */ .jar-wrapper position: relative; width: 320px; height: 240px; background: radial-gradient(ellipse at 30% 20%, #e9f5e0, #c8dfb5); border-radius: 0 0 80px 80px; box-shadow: inset 0 0 0 4px #f9eec1, inset 0 0 0 8px #b98f5a, 0 10px 20px rgba(0,0,0,0.3); overflow: hidden; cursor: pointer; transition: all 0.1s ease;

Are you playing on an , PC , or original hardware ?

// check collision with existing diamonds (so they don't overlap too much, giving messy look but natural) function isOverlapping(newX, newY, existingDiamonds, minDist = 24) for (let d of existingDiamonds) const dx = d.x - newX; const dy = d.y - newY; const dist = Math.sqrt(dx*dx + dy*dy); if (dist < minDist) return true;