From 22f9aedbdfcabcbe751c085d4a174ec07887fcdf Mon Sep 17 00:00:00 2001 From: CrispyBaguette Date: Thu, 5 May 2022 15:32:11 +0200 Subject: [PATCH] Added a couple palettes --- client/src/Palette.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/client/src/Palette.ts b/client/src/Palette.ts index acf575c..68e39f2 100644 --- a/client/src/Palette.ts +++ b/client/src/Palette.ts @@ -77,6 +77,22 @@ const dracula = new Palette("Dracula", [ "f1fa8c", ]); +// https://lospec.com/palette-list/ice-cream-gb +const iceCream = new Palette("Ice Cream GB", [ + "7c3f58", + "eb6b6f", + "f9a875", + "fff6d3", +]); + +// https://lospec.com/palette-list/kirokaze-gameboy +const kirokaze = new Palette("Kirokaze GameBoy", [ + "332c50", + "46878f", + "94e344", + "e2f3e4", +]); + const palettes = [ nord, monokai, @@ -84,6 +100,8 @@ const palettes = [ grayScale2bits, grayScale2bitsGamma, dracula, + iceCream, + kirokaze, ]; palettes.sort((a, b) => a.label.localeCompare(b.label));