Skip to content

Instantly share code, notes, and snippets.

@yoya
Last active March 1, 2023 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoya/bfef9c02dbc7fef2d2972251b4b37b3a to your computer and use it in GitHub Desktop.
Save yoya/bfef9c02dbc7fef2d2972251b4b37b3a to your computer and use it in GitHub Desktop.
sepia-palette-making.sh
#! /bin/sh
magick -size 64x64 xc:"srgb( 30, 5, 3)" sepia-01.png
magick -size 64x64 xc:"srgb( 55, 23, 13)" sepia-02.png
magick -size 64x64 xc:"srgb( 80, 41, 23)" sepia-03.png
magick -size 64x64 xc:"srgb(102, 60, 37)" sepia-04.png
magick -size 64x64 xc:"srgb(122, 82, 58)" sepia-05.png
magick -size 64x64 xc:"srgb(142,107, 84)" sepia-06.png
magick -size 64x64 xc:"srgb(162,135,114)" sepia-07.png
magick -size 64x64 xc:"srgb(181,158,137)" sepia-08.png
magick -size 64x64 xc:"srgb(198,176,153)" sepia-09.png
magick -size 64x64 xc:"srgb(213,193,168)" sepia-10.png
magick -size 64x64 xc:"srgb(224,207,184)" sepia-11.png
magick -size 64x64 xc:"srgb(235,221,200)" sepia-12.png
montage -geometry +4+4 sepia-??.png sepia-table.png
mogrify -bordercolor white -border 4 sepia-table.png
@yoya
Copy link
Author

yoya commented Mar 1, 2023

sepia-table.png
sepia-table

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment