Skip to content

Commit 5367cf8

Browse files
committed
Merge branch 'main' of github.com:kando-menu/design
2 parents 296e601 + 57ec5be commit 5367cf8

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
# SPDX-License-Identifier: CC0-1.0
33

44
icons/tmp
5-
icons/output
5+
icons/output
6+
.codegpt

icons/create.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,17 @@ rm "$TMP_DIR/blossom_tiny_dark.svg"
200200
composite_svgs source/bg_tiny_square.svg source/blossom_tiny.svg $TMP_DIR/trayColor.svg 0 24
201201
convert_svg_to_png "$TMP_DIR/trayColor.svg" "$OUTPUT_DIR/trayColor.png" 64
202202

203+
# Pure black icon
204+
ICON=$(sed 's/#f0cece/#000000/g' < source/blossom_tiny.svg)
205+
echo "$ICON" > "$TMP_DIR/blossom_tiny_pure_black.svg"
206+
convert_svg_to_png "$TMP_DIR/blossom_tiny_pure_black.svg" "$OUTPUT_DIR/trayBlack.png" 64
207+
rm "$TMP_DIR/blossom_tiny_pure_black.svg"
208+
209+
# Pure white icon
210+
ICON=$(sed 's/#f0cece/#FFFFFF/g' < source/blossom_tiny.svg)
211+
echo "$ICON" > "$TMP_DIR/blossom_tiny_pure_white.svg"
212+
convert_svg_to_png "$TMP_DIR/blossom_tiny_pure_white.svg" "$OUTPUT_DIR/trayWhite.png" 64
213+
rm "$TMP_DIR/blossom_tiny_pure_white.svg"
203214

204215
# ------------------------------------------ Favicon --------------------------------------------- #
205216

0 commit comments

Comments
 (0)