Can anyone suggest a more efficient way to write the following CSS in SCSS using parent selectors?
.tabs--boxs {
.blue-color-box .box-title:after {
border-bottom-color: #1a4b84;
}
.green-color-box .box-title:after {
border-bottom-color: #1e8334
}
.orange-color-box .box-title:after {
border-bottom-color: #fe5722
}
.purple-color-box .box-title:after {
border-bottom-color: #5926a6
}
}