cdk-admin
cdk-admin copied to clipboard
Icon Color
How can i give color for an icon in side menu nav list.
If you put this in your style.scss file.
$colors: (
red: #ff0000,
green: 'green'
);
@each $key, $value in $colors { #{"[color=" + $key + "]"} { color: $value !important; } }
in the html
this will render red color for the icon.
No i want to show each and every icon in different color.