I would like to know how I can avoid writing certain styles twice if they are the same for an element and it's possible pseudo classes:
.element {
color: #a0c225;
&:hover {
color: #a0c225;
}
&:focus {
color: #a0c225;
}
}
and I don't want to repeat the color #a0c225
in SASS?