I am new to Angular and I am trying to learn it by using ngx-admin theme. It uses Sass for styling and in one of my components I want to set background color of div. However I want to use one of the colors provided by the theme so that if user toggles the theme the color can change. I cannot figure out how to use global colors of the theme in my component's scss file.
This is what I want
.product-container{
background:#3d3780; // Instead of using a hard coded color, I want to use theme color here
}