Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

PICO-8 Sepia PaletteView project page

Submitted by bitwisecreative โ€” 8 days, 21 hours before the deadline
Add to collection

Play Palette Cart/Demo

PICO-8 Sepia Palette's itch.io page

Compressed Bytes used
1001

Leave a comment

Log in with itch.io to leave a comment.

Comments

HostSubmitted(+1)

Wow, this palette looks great (+the examples look amazing!) ๐Ÿคฉ๐Ÿ‘Œ

FWIW, I put together a couple of "minified" versions of the palette initialisation, as I can definitely see others wanting to use this nice scheme
(the snippet below uses the recent PICO-8 updates that allow a table of values to be passed in one go)

-- sepia palette
-- (+rgby utility)
--pal({128,130,133,141,4,142,14,143,15,7,  8,139,12,10,1},1)

-- even smaller ver
pal({-16,-14,-11,-3,4,-2,14,-1,15,7,  8,-5,12,10,1},1)

-- test draw using pal
function _update()
cls()
for i=0,15 do
rectfill(i*8,50,i*8+7,58,i)
?i,i*8+1,60,10
end
end

...or just run this online example of this code.

'grats again on such a nice entry ๐Ÿ˜Ž๐Ÿ‘

Developer(+1)

Thank you so much! You are so nice :D

Oh! That shorthand is cool, I must have missed that note :P

It was a really fun (and challenging) jam. My first attempt was a maze game that accidentally became this: https://www.lexaloffle.com/bbs/?tid=49312 (oops)