diff options
author | EuAndreh <eu@euandre.org> | 2024-11-03 10:59:57 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-03 10:59:57 -0300 |
commit | 9d22e54ce6b4f10233345a75e8688a6d7206b29e (patch) | |
tree | 8e374bea364d537f65d7e272f0015dafa3fd84df /src/content/img/icon/code-file | |
parent | Add aliases for missing icons (diff) | |
download | chat.papo.im-9d22e54ce6b4f10233345a75e8688a6d7206b29e.tar.gz chat.papo.im-9d22e54ce6b4f10233345a75e8688a6d7206b29e.tar.xz |
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
Diffstat (limited to 'src/content/img/icon/code-file')
-rw-r--r-- | src/content/img/icon/code-file/dark.svg | 52 |
1 files changed, 52 insertions, 0 deletions
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 @@ +<svg + xmlns="http://www.w3.org/2000/svg" + viewBox="0 0 24 24" + fill="none" +> + <path + d=" + M 13.5 3 + H 12 + H 8 + C 6.34315 3 5 4.34315 5 6 + V 18 + C 5 19.6569 6.34315 21 8 21 + H 16 + C 17.6569 21 19 19.6569 19 18 + V 10.8125 + V 8.625 + M 13.5 3 + L 19 8.625 + M 13.5 3 + V 7.625 + C 13.5 8.17728 13.9477 8.625 14.5 8.625 + H 19 + " + stroke="white" + stroke-width="2" + stroke-linecap="round" + stroke-linejoin="round" + /> + <path + d=" + M 10 12 + L 8 14 + L 10 16 + " + stroke="white" + stroke-width="2" + stroke-linecap="round" + stroke-linejoin="round" + /> + <path + d=" + M 14 12 + L 16 14 + L 14 16 + " + stroke="white" + stroke-width="2" + stroke-linecap="round" + stroke-linejoin="round" + /> +</svg> |