diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-08-25 14:54:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 14:54:34 +0200 |
commit | 742f96bdf5c0b842e68dfaf43f4ab3446e87e3df (patch) | |
tree | 8c8553f21f8175f298ace4005973d482b1f0be13 /plugins/base/src/main/resources/dokka/images | |
parent | 06650909dbce632bd92d3a10c2887b69555edbfc (diff) | |
download | dokka-742f96bdf5c0b842e68dfaf43f4ab3446e87e3df.tar.gz dokka-742f96bdf5c0b842e68dfaf43f4ab3446e87e3df.tar.bz2 dokka-742f96bdf5c0b842e68dfaf43f4ab3446e87e3df.zip |
Dark mode (#2081)
Diffstat (limited to 'plugins/base/src/main/resources/dokka/images')
3 files changed, 5 insertions, 4 deletions
diff --git a/plugins/base/src/main/resources/dokka/images/arrow_down.svg b/plugins/base/src/main/resources/dokka/images/arrow_down.svg index 0d8eb3b4..c0388dee 100755 --- a/plugins/base/src/main/resources/dokka/images/arrow_down.svg +++ b/plugins/base/src/main/resources/dokka/images/arrow_down.svg @@ -1,3 +1,3 @@ <svg width="24" height="24" viewBox="-5 -3 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M11 9l-6 5.25V3.75z" fill="black"/> + <path d="M11 9l-6 5.25V3.75z" fill="currentColor"/> </svg>
\ No newline at end of file diff --git a/plugins/base/src/main/resources/dokka/images/arrow_down_white.svg b/plugins/base/src/main/resources/dokka/images/arrow_down_white.svg deleted file mode 100644 index 41bda9bf..00000000 --- a/plugins/base/src/main/resources/dokka/images/arrow_down_white.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="24" height="24" viewBox="-5 -3 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M11 9l-6 5.25V3.75z" fill="#fff"/> -</svg>
\ No newline at end of file diff --git a/plugins/base/src/main/resources/dokka/images/theme-toggle.svg b/plugins/base/src/main/resources/dokka/images/theme-toggle.svg new file mode 100644 index 00000000..2a8d750e --- /dev/null +++ b/plugins/base/src/main/resources/dokka/images/theme-toggle.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"> + <path fill="white" fill-rule="evenodd" clip-rule="evenodd" + d="M0 9a9 9 0 1018 0A9 9 0 000 9zm16 0a7 7 0 01-7 7V2a7 7 0 017 7z" transform="translate(3, 3)"></path> +</svg>
\ No newline at end of file |