I'm working on a angularjs project and I need to use a user-define(dynamic) color in CSS, Is there any way to use this dynamic color in my CSS using Angularjs, core JS or SASS?
Something like...
Interal CSS in HTML Page:
<style>
.button, .link {
background:{{ ColorTheme }};
}
</style>
AngularJS Controller:
app.controller('myController', function($scope) {
$scope.ColorTheme = '#f00'};
});