forked from statamic/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Theme (dark mode) toggle (statamic#878)
- Loading branch information
1 parent
64b97d6
commit 846db77
Showing
4 changed files
with
46 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<div class="flex px-2 py-1 top-[-2px]" :class="{ 'bg-mint border-2 shadow rounded relative right-[-2px] w-[282px] dark:bg-gray-darkest dark:text-gray dark:border-gray-darkest': themePickerOpen }" title="Theme"> | ||
<div x-cloak x-show="themePickerOpen" class="flex-1 mr-4"> | ||
<button @click="setThemePreference('light'); themePickerOpen = false" | ||
class="px-2" :class="{ 'font-bold': themePreference === 'light' }"> | ||
Light | ||
</button> | ||
|
||
<button @click="setThemePreference('dark'); themePickerOpen = false" | ||
class="px-2" :class="{ 'font-bold': themePreference === 'dark' }"> | ||
Dark | ||
</button> | ||
|
||
<button @click="setThemePreference('system'); themePickerOpen = false" | ||
class="px-2" :class="{ 'font-bold': themePreference === 'system' }"> | ||
System | ||
</button> | ||
</div> | ||
|
||
<button class="relative top-[-1px]" :class="{ 'top-[1px]': themePickerOpen }" @click="themePickerOpen = !themePickerOpen"> | ||
<svg x-show="!darkMode" viewBox="0 0 24 24" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 text-black"><path d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" class="stroke-current"></path><path d="M12 4v1M17.66 6.344l-.828.828M20.005 12.004h-1M17.66 17.664l-.828-.828M12 20.01V19M6.34 17.664l.835-.836M3.995 12.004h1.01M6 6l.835.836" class="stroke-current"></path></svg> | ||
<svg x-show="darkMode" viewBox="0 0 24 24" fill="none" class="w-6 h-6 relative top-[-2px]" :class="{ 'text-gray-lighter': themePickerOpen, 'text-gray-darker': !themePickerOpen }"><path fill-rule="evenodd" clip-rule="evenodd" d="M17.715 15.15A6.5 6.5 0 0 1 9 6.035C6.106 6.922 4 9.645 4 12.867c0 3.94 3.153 7.136 7.042 7.136 3.101 0 5.734-2.032 6.673-4.853Z" class="fill-current opacity-50"></path><path d="m17.715 15.15.95.316a1 1 0 0 0-1.445-1.185l.495.869ZM9 6.035l.846.534a1 1 0 0 0-1.14-1.49L9 6.035Zm8.221 8.246a5.47 5.47 0 0 1-2.72.718v2a7.47 7.47 0 0 0 3.71-.98l-.99-1.738Zm-2.72.718A5.5 5.5 0 0 1 9 9.5H7a7.5 7.5 0 0 0 7.5 7.5v-2ZM9 9.5c0-1.079.31-2.082.845-2.93L8.153 5.5A7.47 7.47 0 0 0 7 9.5h2Zm-4 3.368C5 10.089 6.815 7.75 9.292 6.99L8.706 5.08C5.397 6.094 3 9.201 3 12.867h2Zm6.042 6.136C7.718 19.003 5 16.268 5 12.867H3c0 4.48 3.588 8.136 8.042 8.136v-2Zm5.725-4.17c-.81 2.433-3.074 4.17-5.725 4.17v2c3.552 0 6.553-2.327 7.622-5.537l-1.897-.632Z" class="fill-current"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M17 3a1 1 0 0 1 1 1 2 2 0 0 0 2 2 1 1 0 1 1 0 2 2 2 0 0 0-2 2 1 1 0 1 1-2 0 2 2 0 0 0-2-2 1 1 0 1 1 0-2 2 2 0 0 0 2-2 1 1 0 0 1 1-1Z" class="fill-current"></path></svg> | ||
</button> | ||
</div> |