super-productivity/app-src/scripts/settings/theme-settings/theme-settings-d.html
2018-03-20 20:41:06 +01:00

22 lines
631 B
HTML

<h2 class="md-caption">
<ng-md-icon icon="color_lens"></ng-md-icon>
Select Theme
</h2>
<help-section>
<p>Select the theme you want to use. Themes are always saved on project level, which means that you can use different themes for different projects.</p>
</help-section>
<md-select ng-model="vm.selectedTheme"
placeholder="Select a theme">
<md-option ng-repeat="themeName in vm.themes"
ng-value="themeName"
ng-bind="themeName">
</md-option>
</md-select>
<div>
<md-switch ng-model="vm.isDarkTheme"
aria-label="Use dark theme">
Use dark theme
</md-switch>
</div>