This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/astro/components/settings/appearance/theme.astro
2023-02-17 00:10:52 -05:00

11 lines
No EOL
549 B
Text

<div class="option">
<div class="option-meta">
<h2>Theme</h2>
<p>Select how you would like the interface to look. You can either select a theme or choose the auto option to sync with your operating system's theme. </p>
</div>
<div class="theme">
<button id="auto" class="theme" onclick="Theme('Auto')"><p>Auto</p></button>
<button id="light" class="theme" onclick="Theme('Light')"><p>Light</p></button>
<button id="dark" class="theme" onclick="Theme('Dark')"><p>Dark</p></button>
</div>
</div>