From 9d22e54ce6b4f10233345a75e8688a6d7206b29e Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 3 Nov 2024 10:59:57 -0300 Subject: Generate dark variation of light SVG icons for f in src/content/img/icon/*/light.svg; do sed \ -e 's/white/WHITE/g' \ -e 's/black/white/g' \ -e 's/WHITE/black/g' \ < "$f" > "$(dirname "$f")"/dark.svg done --- src/content/img/icon/add/dark.svg | 22 ++ src/content/img/icon/archive/dark.svg | 43 +++ src/content/img/icon/arrow-down/dark.svg | 20 + src/content/img/icon/bookmark/dark.svg | 30 ++ src/content/img/icon/calendar/dark.svg | 32 ++ src/content/img/icon/check/dark.svg | 17 + src/content/img/icon/chevron-down/dark.svg | 17 + src/content/img/icon/chevron-left/dark.svg | 18 + src/content/img/icon/chevron-right/dark.svg | 18 + src/content/img/icon/clipboard/dark.svg | 41 +++ src/content/img/icon/close/dark.svg | 26 ++ src/content/img/icon/code-file/dark.svg | 52 +++ src/content/img/icon/code/dark.svg | 28 ++ src/content/img/icon/crop/dark.svg | 49 +++ src/content/img/icon/delete/dark.svg | 46 +++ src/content/img/icon/download/dark.svg | 26 ++ src/content/img/icon/edit/dark.svg | 29 ++ src/content/img/icon/filter/dark.svg | 28 ++ src/content/img/icon/folder/dark.svg | 27 ++ src/content/img/icon/fullscreen/dark.svg | 30 ++ src/content/img/icon/hash-sign/dark.svg | 22 ++ src/content/img/icon/heart/dark.svg | 23 ++ src/content/img/icon/help/dark.svg | 44 +++ src/content/img/icon/info/dark.svg | 23 ++ src/content/img/icon/launch/dark.svg | 28 ++ src/content/img/icon/link/dark.svg | 28 ++ src/content/img/icon/lock/dark.svg | 38 ++ src/content/img/icon/logout/dark.svg | 30 ++ src/content/img/icon/needs-update/dark.svg | 38 ++ src/content/img/icon/notifications-off/dark.svg | 75 ++++ src/content/img/icon/notifications/dark.svg | 114 ++++++ src/content/img/icon/offline/dark.svg | 61 ++++ src/content/img/icon/online/dark.svg | 99 +++++ src/content/img/icon/password/dark.svg | 60 +++ src/content/img/icon/payment-card/dark.svg | 37 ++ src/content/img/icon/photo/dark.svg | 35 ++ src/content/img/icon/pin/dark.svg | 57 +++ src/content/img/icon/remove/dark.svg | 13 + src/content/img/icon/sad/dark.svg | 48 +++ src/content/img/icon/save/dark.svg | 57 +++ src/content/img/icon/scissors/dark.svg | 55 +++ src/content/img/icon/search/dark.svg | 21 ++ src/content/img/icon/settings/dark.svg | 462 ++++++++++++++++++++++++ src/content/img/icon/share/dark.svg | 38 ++ src/content/img/icon/shield-bad/dark.svg | 36 ++ src/content/img/icon/shield-good/dark.svg | 31 ++ src/content/img/icon/shield-info/dark.svg | 36 ++ src/content/img/icon/shield-off/dark.svg | 51 +++ src/content/img/icon/shopping-cart/dark.svg | 54 +++ src/content/img/icon/star-full/dark.svg | 36 ++ src/content/img/icon/star/dark.svg | 36 ++ src/content/img/icon/support/dark.svg | 40 ++ src/content/img/icon/tag/dark.svg | 32 ++ src/content/img/icon/threads/dark.svg | 27 ++ src/content/img/icon/upload/dark.svg | 26 ++ src/content/img/icon/user-add/dark.svg | 32 ++ src/content/img/icon/user-check/dark.svg | 27 ++ src/content/img/icon/user-circle/dark.svg | 32 ++ src/content/img/icon/user-group/dark.svg | 33 ++ src/content/img/icon/user-remove/dark.svg | 32 ++ src/content/img/icon/user/dark.svg | 26 ++ src/content/img/icon/warning/dark.svg | 38 ++ src/content/img/icon/zoom-in/dark.svg | 41 +++ src/content/img/icon/zoom-out/dark.svg | 29 ++ 64 files changed, 2800 insertions(+) create mode 100644 src/content/img/icon/add/dark.svg create mode 100644 src/content/img/icon/archive/dark.svg create mode 100644 src/content/img/icon/arrow-down/dark.svg create mode 100644 src/content/img/icon/bookmark/dark.svg create mode 100644 src/content/img/icon/calendar/dark.svg create mode 100644 src/content/img/icon/check/dark.svg create mode 100644 src/content/img/icon/chevron-down/dark.svg create mode 100644 src/content/img/icon/chevron-left/dark.svg create mode 100644 src/content/img/icon/chevron-right/dark.svg create mode 100644 src/content/img/icon/clipboard/dark.svg create mode 100644 src/content/img/icon/close/dark.svg create mode 100644 src/content/img/icon/code-file/dark.svg create mode 100644 src/content/img/icon/code/dark.svg create mode 100644 src/content/img/icon/crop/dark.svg create mode 100644 src/content/img/icon/delete/dark.svg create mode 100644 src/content/img/icon/download/dark.svg create mode 100644 src/content/img/icon/edit/dark.svg create mode 100644 src/content/img/icon/filter/dark.svg create mode 100644 src/content/img/icon/folder/dark.svg create mode 100644 src/content/img/icon/fullscreen/dark.svg create mode 100644 src/content/img/icon/hash-sign/dark.svg create mode 100644 src/content/img/icon/heart/dark.svg create mode 100644 src/content/img/icon/help/dark.svg create mode 100644 src/content/img/icon/info/dark.svg create mode 100644 src/content/img/icon/launch/dark.svg create mode 100644 src/content/img/icon/link/dark.svg create mode 100644 src/content/img/icon/lock/dark.svg create mode 100644 src/content/img/icon/logout/dark.svg create mode 100644 src/content/img/icon/needs-update/dark.svg create mode 100644 src/content/img/icon/notifications-off/dark.svg create mode 100644 src/content/img/icon/notifications/dark.svg create mode 100644 src/content/img/icon/offline/dark.svg create mode 100644 src/content/img/icon/online/dark.svg create mode 100644 src/content/img/icon/password/dark.svg create mode 100644 src/content/img/icon/payment-card/dark.svg create mode 100644 src/content/img/icon/photo/dark.svg create mode 100644 src/content/img/icon/pin/dark.svg create mode 100644 src/content/img/icon/remove/dark.svg create mode 100644 src/content/img/icon/sad/dark.svg create mode 100644 src/content/img/icon/save/dark.svg create mode 100644 src/content/img/icon/scissors/dark.svg create mode 100644 src/content/img/icon/search/dark.svg create mode 100644 src/content/img/icon/settings/dark.svg create mode 100644 src/content/img/icon/share/dark.svg create mode 100644 src/content/img/icon/shield-bad/dark.svg create mode 100644 src/content/img/icon/shield-good/dark.svg create mode 100644 src/content/img/icon/shield-info/dark.svg create mode 100644 src/content/img/icon/shield-off/dark.svg create mode 100644 src/content/img/icon/shopping-cart/dark.svg create mode 100644 src/content/img/icon/star-full/dark.svg create mode 100644 src/content/img/icon/star/dark.svg create mode 100644 src/content/img/icon/support/dark.svg create mode 100644 src/content/img/icon/tag/dark.svg create mode 100644 src/content/img/icon/threads/dark.svg create mode 100644 src/content/img/icon/upload/dark.svg create mode 100644 src/content/img/icon/user-add/dark.svg create mode 100644 src/content/img/icon/user-check/dark.svg create mode 100644 src/content/img/icon/user-circle/dark.svg create mode 100644 src/content/img/icon/user-group/dark.svg create mode 100644 src/content/img/icon/user-remove/dark.svg create mode 100644 src/content/img/icon/user/dark.svg create mode 100644 src/content/img/icon/warning/dark.svg create mode 100644 src/content/img/icon/zoom-in/dark.svg create mode 100644 src/content/img/icon/zoom-out/dark.svg diff --git a/src/content/img/icon/add/dark.svg b/src/content/img/icon/add/dark.svg new file mode 100644 index 0000000..dc329c3 --- /dev/null +++ b/src/content/img/icon/add/dark.svg @@ -0,0 +1,22 @@ + + + diff --git a/src/content/img/icon/archive/dark.svg b/src/content/img/icon/archive/dark.svg new file mode 100644 index 0000000..dab43d7 --- /dev/null +++ b/src/content/img/icon/archive/dark.svg @@ -0,0 +1,43 @@ + + + + + diff --git a/src/content/img/icon/arrow-down/dark.svg b/src/content/img/icon/arrow-down/dark.svg new file mode 100644 index 0000000..f82c038 --- /dev/null +++ b/src/content/img/icon/arrow-down/dark.svg @@ -0,0 +1,20 @@ + + + diff --git a/src/content/img/icon/bookmark/dark.svg b/src/content/img/icon/bookmark/dark.svg new file mode 100644 index 0000000..f8784e3 --- /dev/null +++ b/src/content/img/icon/bookmark/dark.svg @@ -0,0 +1,30 @@ + + + diff --git a/src/content/img/icon/calendar/dark.svg b/src/content/img/icon/calendar/dark.svg new file mode 100644 index 0000000..4ad8e9e --- /dev/null +++ b/src/content/img/icon/calendar/dark.svg @@ -0,0 +1,32 @@ + + + diff --git a/src/content/img/icon/check/dark.svg b/src/content/img/icon/check/dark.svg new file mode 100644 index 0000000..a79e7c1 --- /dev/null +++ b/src/content/img/icon/check/dark.svg @@ -0,0 +1,17 @@ + + + diff --git a/src/content/img/icon/chevron-down/dark.svg b/src/content/img/icon/chevron-down/dark.svg new file mode 100644 index 0000000..606c08a --- /dev/null +++ b/src/content/img/icon/chevron-down/dark.svg @@ -0,0 +1,17 @@ + + + diff --git a/src/content/img/icon/chevron-left/dark.svg b/src/content/img/icon/chevron-left/dark.svg new file mode 100644 index 0000000..fcfc769 --- /dev/null +++ b/src/content/img/icon/chevron-left/dark.svg @@ -0,0 +1,18 @@ + + + diff --git a/src/content/img/icon/chevron-right/dark.svg b/src/content/img/icon/chevron-right/dark.svg new file mode 100644 index 0000000..88ce134 --- /dev/null +++ b/src/content/img/icon/chevron-right/dark.svg @@ -0,0 +1,18 @@ + + + diff --git a/src/content/img/icon/clipboard/dark.svg b/src/content/img/icon/clipboard/dark.svg new file mode 100644 index 0000000..38f6cb3 --- /dev/null +++ b/src/content/img/icon/clipboard/dark.svg @@ -0,0 +1,41 @@ + + + + diff --git a/src/content/img/icon/close/dark.svg b/src/content/img/icon/close/dark.svg new file mode 100644 index 0000000..2193ab4 --- /dev/null +++ b/src/content/img/icon/close/dark.svg @@ -0,0 +1,26 @@ + + + + diff --git a/src/content/img/icon/code-file/dark.svg b/src/content/img/icon/code-file/dark.svg new file mode 100644 index 0000000..7c091e7 --- /dev/null +++ b/src/content/img/icon/code-file/dark.svg @@ -0,0 +1,52 @@ + + + + + diff --git a/src/content/img/icon/code/dark.svg b/src/content/img/icon/code/dark.svg new file mode 100644 index 0000000..398959c --- /dev/null +++ b/src/content/img/icon/code/dark.svg @@ -0,0 +1,28 @@ + + + + diff --git a/src/content/img/icon/crop/dark.svg b/src/content/img/icon/crop/dark.svg new file mode 100644 index 0000000..4fe64fc --- /dev/null +++ b/src/content/img/icon/crop/dark.svg @@ -0,0 +1,49 @@ + + + + diff --git a/src/content/img/icon/delete/dark.svg b/src/content/img/icon/delete/dark.svg new file mode 100644 index 0000000..2807e90 --- /dev/null +++ b/src/content/img/icon/delete/dark.svg @@ -0,0 +1,46 @@ + + + + + diff --git a/src/content/img/icon/download/dark.svg b/src/content/img/icon/download/dark.svg new file mode 100644 index 0000000..3cf4f22 --- /dev/null +++ b/src/content/img/icon/download/dark.svg @@ -0,0 +1,26 @@ + + + diff --git a/src/content/img/icon/edit/dark.svg b/src/content/img/icon/edit/dark.svg new file mode 100644 index 0000000..f2e9d3c --- /dev/null +++ b/src/content/img/icon/edit/dark.svg @@ -0,0 +1,29 @@ + + + diff --git a/src/content/img/icon/filter/dark.svg b/src/content/img/icon/filter/dark.svg new file mode 100644 index 0000000..575ca18 --- /dev/null +++ b/src/content/img/icon/filter/dark.svg @@ -0,0 +1,28 @@ + + + diff --git a/src/content/img/icon/folder/dark.svg b/src/content/img/icon/folder/dark.svg new file mode 100644 index 0000000..bbd71cb --- /dev/null +++ b/src/content/img/icon/folder/dark.svg @@ -0,0 +1,27 @@ + + + diff --git a/src/content/img/icon/fullscreen/dark.svg b/src/content/img/icon/fullscreen/dark.svg new file mode 100644 index 0000000..802b9cf --- /dev/null +++ b/src/content/img/icon/fullscreen/dark.svg @@ -0,0 +1,30 @@ + + + diff --git a/src/content/img/icon/hash-sign/dark.svg b/src/content/img/icon/hash-sign/dark.svg new file mode 100644 index 0000000..22f01f2 --- /dev/null +++ b/src/content/img/icon/hash-sign/dark.svg @@ -0,0 +1,22 @@ + + + diff --git a/src/content/img/icon/heart/dark.svg b/src/content/img/icon/heart/dark.svg new file mode 100644 index 0000000..43a3c38 --- /dev/null +++ b/src/content/img/icon/heart/dark.svg @@ -0,0 +1,23 @@ + + + diff --git a/src/content/img/icon/help/dark.svg b/src/content/img/icon/help/dark.svg new file mode 100644 index 0000000..2ea2601 --- /dev/null +++ b/src/content/img/icon/help/dark.svg @@ -0,0 +1,44 @@ + + + + diff --git a/src/content/img/icon/info/dark.svg b/src/content/img/icon/info/dark.svg new file mode 100644 index 0000000..c5e44c7 --- /dev/null +++ b/src/content/img/icon/info/dark.svg @@ -0,0 +1,23 @@ + + + + diff --git a/src/content/img/icon/launch/dark.svg b/src/content/img/icon/launch/dark.svg new file mode 100644 index 0000000..a213c60 --- /dev/null +++ b/src/content/img/icon/launch/dark.svg @@ -0,0 +1,28 @@ + + + diff --git a/src/content/img/icon/link/dark.svg b/src/content/img/icon/link/dark.svg new file mode 100644 index 0000000..e8a54f6 --- /dev/null +++ b/src/content/img/icon/link/dark.svg @@ -0,0 +1,28 @@ + + + diff --git a/src/content/img/icon/lock/dark.svg b/src/content/img/icon/lock/dark.svg new file mode 100644 index 0000000..90f26a0 --- /dev/null +++ b/src/content/img/icon/lock/dark.svg @@ -0,0 +1,38 @@ + + + diff --git a/src/content/img/icon/logout/dark.svg b/src/content/img/icon/logout/dark.svg new file mode 100644 index 0000000..c32368e --- /dev/null +++ b/src/content/img/icon/logout/dark.svg @@ -0,0 +1,30 @@ + + + diff --git a/src/content/img/icon/needs-update/dark.svg b/src/content/img/icon/needs-update/dark.svg new file mode 100644 index 0000000..064b401 --- /dev/null +++ b/src/content/img/icon/needs-update/dark.svg @@ -0,0 +1,38 @@ + + + + diff --git a/src/content/img/icon/notifications-off/dark.svg b/src/content/img/icon/notifications-off/dark.svg new file mode 100644 index 0000000..8a16d65 --- /dev/null +++ b/src/content/img/icon/notifications-off/dark.svg @@ -0,0 +1,75 @@ + + + + + + diff --git a/src/content/img/icon/notifications/dark.svg b/src/content/img/icon/notifications/dark.svg new file mode 100644 index 0000000..312f127 --- /dev/null +++ b/src/content/img/icon/notifications/dark.svg @@ -0,0 +1,114 @@ + + + + + diff --git a/src/content/img/icon/offline/dark.svg b/src/content/img/icon/offline/dark.svg new file mode 100644 index 0000000..caf626c --- /dev/null +++ b/src/content/img/icon/offline/dark.svg @@ -0,0 +1,61 @@ + + + + diff --git a/src/content/img/icon/online/dark.svg b/src/content/img/icon/online/dark.svg new file mode 100644 index 0000000..7991b39 --- /dev/null +++ b/src/content/img/icon/online/dark.svg @@ -0,0 +1,99 @@ + + + diff --git a/src/content/img/icon/password/dark.svg b/src/content/img/icon/password/dark.svg new file mode 100644 index 0000000..2046f64 --- /dev/null +++ b/src/content/img/icon/password/dark.svg @@ -0,0 +1,60 @@ + + + + + + diff --git a/src/content/img/icon/payment-card/dark.svg b/src/content/img/icon/payment-card/dark.svg new file mode 100644 index 0000000..b2c5cab --- /dev/null +++ b/src/content/img/icon/payment-card/dark.svg @@ -0,0 +1,37 @@ + + + + + diff --git a/src/content/img/icon/photo/dark.svg b/src/content/img/icon/photo/dark.svg new file mode 100644 index 0000000..86a84b0 --- /dev/null +++ b/src/content/img/icon/photo/dark.svg @@ -0,0 +1,35 @@ + + + + diff --git a/src/content/img/icon/pin/dark.svg b/src/content/img/icon/pin/dark.svg new file mode 100644 index 0000000..a2e3f57 --- /dev/null +++ b/src/content/img/icon/pin/dark.svg @@ -0,0 +1,57 @@ + + + + diff --git a/src/content/img/icon/remove/dark.svg b/src/content/img/icon/remove/dark.svg new file mode 100644 index 0000000..66e88e2 --- /dev/null +++ b/src/content/img/icon/remove/dark.svg @@ -0,0 +1,13 @@ + + + diff --git a/src/content/img/icon/sad/dark.svg b/src/content/img/icon/sad/dark.svg new file mode 100644 index 0000000..dd89282 --- /dev/null +++ b/src/content/img/icon/sad/dark.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + diff --git a/src/content/img/icon/save/dark.svg b/src/content/img/icon/save/dark.svg new file mode 100644 index 0000000..7366e30 --- /dev/null +++ b/src/content/img/icon/save/dark.svg @@ -0,0 +1,57 @@ + + + + + diff --git a/src/content/img/icon/scissors/dark.svg b/src/content/img/icon/scissors/dark.svg new file mode 100644 index 0000000..695eebb --- /dev/null +++ b/src/content/img/icon/scissors/dark.svg @@ -0,0 +1,55 @@ + + + + + + diff --git a/src/content/img/icon/search/dark.svg b/src/content/img/icon/search/dark.svg new file mode 100644 index 0000000..4781787 --- /dev/null +++ b/src/content/img/icon/search/dark.svg @@ -0,0 +1,21 @@ + + + + diff --git a/src/content/img/icon/settings/dark.svg b/src/content/img/icon/settings/dark.svg new file mode 100644 index 0000000..f00ded7 --- /dev/null +++ b/src/content/img/icon/settings/dark.svg @@ -0,0 +1,462 @@ + + + + diff --git a/src/content/img/icon/share/dark.svg b/src/content/img/icon/share/dark.svg new file mode 100644 index 0000000..9902ef9 --- /dev/null +++ b/src/content/img/icon/share/dark.svg @@ -0,0 +1,38 @@ + + + diff --git a/src/content/img/icon/shield-bad/dark.svg b/src/content/img/icon/shield-bad/dark.svg new file mode 100644 index 0000000..5498caf --- /dev/null +++ b/src/content/img/icon/shield-bad/dark.svg @@ -0,0 +1,36 @@ + + + diff --git a/src/content/img/icon/shield-good/dark.svg b/src/content/img/icon/shield-good/dark.svg new file mode 100644 index 0000000..cfa8e16 --- /dev/null +++ b/src/content/img/icon/shield-good/dark.svg @@ -0,0 +1,31 @@ + + + diff --git a/src/content/img/icon/shield-info/dark.svg b/src/content/img/icon/shield-info/dark.svg new file mode 100644 index 0000000..43b472b --- /dev/null +++ b/src/content/img/icon/shield-info/dark.svg @@ -0,0 +1,36 @@ + + + + diff --git a/src/content/img/icon/shield-off/dark.svg b/src/content/img/icon/shield-off/dark.svg new file mode 100644 index 0000000..9ac03d2 --- /dev/null +++ b/src/content/img/icon/shield-off/dark.svg @@ -0,0 +1,51 @@ + + + + diff --git a/src/content/img/icon/shopping-cart/dark.svg b/src/content/img/icon/shopping-cart/dark.svg new file mode 100644 index 0000000..1b4040a --- /dev/null +++ b/src/content/img/icon/shopping-cart/dark.svg @@ -0,0 +1,54 @@ + + + + + + diff --git a/src/content/img/icon/star-full/dark.svg b/src/content/img/icon/star-full/dark.svg new file mode 100644 index 0000000..d83cc78 --- /dev/null +++ b/src/content/img/icon/star-full/dark.svg @@ -0,0 +1,36 @@ + + + diff --git a/src/content/img/icon/star/dark.svg b/src/content/img/icon/star/dark.svg new file mode 100644 index 0000000..122d7d5 --- /dev/null +++ b/src/content/img/icon/star/dark.svg @@ -0,0 +1,36 @@ + + + diff --git a/src/content/img/icon/support/dark.svg b/src/content/img/icon/support/dark.svg new file mode 100644 index 0000000..81f605e --- /dev/null +++ b/src/content/img/icon/support/dark.svg @@ -0,0 +1,40 @@ + + + diff --git a/src/content/img/icon/tag/dark.svg b/src/content/img/icon/tag/dark.svg new file mode 100644 index 0000000..d85f2ba --- /dev/null +++ b/src/content/img/icon/tag/dark.svg @@ -0,0 +1,32 @@ + + + + diff --git a/src/content/img/icon/threads/dark.svg b/src/content/img/icon/threads/dark.svg new file mode 100644 index 0000000..32aad61 --- /dev/null +++ b/src/content/img/icon/threads/dark.svg @@ -0,0 +1,27 @@ + + + + + diff --git a/src/content/img/icon/upload/dark.svg b/src/content/img/icon/upload/dark.svg new file mode 100644 index 0000000..5914b8b --- /dev/null +++ b/src/content/img/icon/upload/dark.svg @@ -0,0 +1,26 @@ + + + diff --git a/src/content/img/icon/user-add/dark.svg b/src/content/img/icon/user-add/dark.svg new file mode 100644 index 0000000..e9aefa1 --- /dev/null +++ b/src/content/img/icon/user-add/dark.svg @@ -0,0 +1,32 @@ + + + diff --git a/src/content/img/icon/user-check/dark.svg b/src/content/img/icon/user-check/dark.svg new file mode 100644 index 0000000..9bf6cb7 --- /dev/null +++ b/src/content/img/icon/user-check/dark.svg @@ -0,0 +1,27 @@ + + + diff --git a/src/content/img/icon/user-circle/dark.svg b/src/content/img/icon/user-circle/dark.svg new file mode 100644 index 0000000..2aebae3 --- /dev/null +++ b/src/content/img/icon/user-circle/dark.svg @@ -0,0 +1,32 @@ + + + diff --git a/src/content/img/icon/user-group/dark.svg b/src/content/img/icon/user-group/dark.svg new file mode 100644 index 0000000..45ceecb --- /dev/null +++ b/src/content/img/icon/user-group/dark.svg @@ -0,0 +1,33 @@ + + + diff --git a/src/content/img/icon/user-remove/dark.svg b/src/content/img/icon/user-remove/dark.svg new file mode 100644 index 0000000..2a3127b --- /dev/null +++ b/src/content/img/icon/user-remove/dark.svg @@ -0,0 +1,32 @@ + + + diff --git a/src/content/img/icon/user/dark.svg b/src/content/img/icon/user/dark.svg new file mode 100644 index 0000000..12cdd00 --- /dev/null +++ b/src/content/img/icon/user/dark.svg @@ -0,0 +1,26 @@ + + + diff --git a/src/content/img/icon/warning/dark.svg b/src/content/img/icon/warning/dark.svg new file mode 100644 index 0000000..bd8ed82 --- /dev/null +++ b/src/content/img/icon/warning/dark.svg @@ -0,0 +1,38 @@ + + + + + diff --git a/src/content/img/icon/zoom-in/dark.svg b/src/content/img/icon/zoom-in/dark.svg new file mode 100644 index 0000000..77f5f4d --- /dev/null +++ b/src/content/img/icon/zoom-in/dark.svg @@ -0,0 +1,41 @@ + + + + + diff --git a/src/content/img/icon/zoom-out/dark.svg b/src/content/img/icon/zoom-out/dark.svg new file mode 100644 index 0000000..11e58cf --- /dev/null +++ b/src/content/img/icon/zoom-out/dark.svg @@ -0,0 +1,29 @@ + + + + + -- cgit v1.2.3