mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 10:40:12 +00:00
21 lines
611 B
HTML
21 lines
611 B
HTML
<h2 class="md-title">
|
|
<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">{{ themeName }}
|
|
</md-option>
|
|
</md-select>
|
|
<div>
|
|
<md-switch ng-model="vm.isDarkTheme"
|
|
aria-label="Use dark theme">
|
|
Use dark theme
|
|
</md-switch>
|
|
</div>
|