diff --git a/build.sh b/build.sh index 7ebea92..5d0d13b 100755 --- a/build.sh +++ b/build.sh @@ -32,6 +32,8 @@ fi declare -A names names["Banana"]=$(with_version "The Banana") names["Banana-Green"]=$(with_version "The Green Banana") +names["Banana-Blue"]=$(with_version "The Blue Banana") +names["Banana-Red"]=$(with_version "The Red Banana") # Cleanup old builds rm -rf themes bin diff --git a/render.json b/render.json index 917bfc2..44f7698 100644 --- a/render.json +++ b/render.json @@ -7,8 +7,24 @@ "dir": "svg", "out": "bitmaps/Banana-Green", "colors": [ - { "match": "#FCD900", "replace": "#00FF00" }, - { "match": "#6D3C1B", "replace": "#002211" } + { "match": "#FCD900", "replace": "#54F851" }, + { "match": "#6D3C1B", "replace": "#0C2608" } + ] + }, + "Banana-Blue": { + "dir": "svg", + "out": "bitmaps/Banana-Blue", + "colors": [ + { "match": "#FCD900", "replace": "#64CDCD" }, + { "match": "#6D3C1B", "replace": "#0E2026" } + ] + }, + "Banana-Red": { + "dir": "svg", + "out": "bitmaps/Banana-Red", + "colors": [ + { "match": "#FCD900", "replace": "#E16C6C" }, + { "match": "#6D3C1B", "replace": "#1B0707" } ] } }