更改主题颜色angular2 sass

时间:2016-12-22 05:34:15

标签: angular typescript sass angular2-template

我将允许用户选择一个主题,基本上是一组带有新颜色的SASS颜色变量。当用户从下拉列表中选择时,如何更改此更改的最佳方式是什么? 在sass文件中我有5个主题文件 如何在角度2中实现

它可能吗?

@import 'mixins';
@import 'colorSchemes/material';
// @import 'colorSchemes/darktheme';
// @import 'colorSchemes/redtheme';
// @import 'colorSchemes/bluetheme';
// @import 'colorSchemes/greentheme';
@import 'variables';


<div class="form-group">
  <label for="exampleSelect1">Select Theme</label>
  <select class="form-control" id="exampleSelect1">
    <option>material</option>
    <option>darktheme</option>
    <option>redtheme</option>
    <option>bluetheme</option>
    <option>Greentheme</option>
  </select>
</div>

0 个答案:

没有答案