1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 23:59:47 +02:00
documize/gui/app/templates/components/ui/theme-picker.hbs

8 lines
268 B
Handlebars
Raw Normal View History

2018-11-24 18:39:43 +00:00
<div class="theme-picker">
{{#each themes as |theme|}}
2022-01-11 12:40:52 -05:00
<div class="theme {{if theme.selected "selected"}}" style={{concat "background-color: " theme.primary}} {{action "onSelect" theme.name}} role="button" tabindex="0">
2018-11-24 18:39:43 +00:00
{{theme.name}}
</div>
{{/each}}
2022-01-11 12:40:52 -05:00
</div>