Add configurable theme colours to filesystem

This commit is contained in:
2024-09-05 14:58:26 +02:00
parent 41a157ae9e
commit 04efcb6505
9 changed files with 81 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
<script>
export let toggle = false;
</script>
<button class="button small_button round"
class:button_highlight={toggle}
style="margin: 0;"
on:click={() => toggle = !toggle}
>
<i class="icon">help</i>
</button>
<style>
.button {
flex: 0 0 content;
background: none;
color: var(--body_text_color);
box-shadow: none;
}
</style>