Skip to content

Commit

Permalink
feat: Support Green, Blue, and Red Banana
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Jul 24, 2024
1 parent da160d7 commit 124242b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 18 additions & 2 deletions render.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
]
}
}

0 comments on commit 124242b

Please sign in to comment.