super-productivity/app-src/scripts/settings/theme-settings/theme-settings-d.html

16 lines
423 B
HTML

<h2 class="md-title">
<ng-md-icon icon="color_lens"></ng-md-icon>
Select Theme
</h2>
<md-select ng-model="vm.selectedTheme"
placeholder="Select a theme">
<md-option ng-repeat="themeName in vm.themes"
ng-value="themeName">{{ themeName }}
</md-option>
</md-select>
<div>
<md-switch ng-model="vm.isDarkTheme"
aria-label="Use dark theme">
Use dark theme
</md-switch>
</div>