Text with multiple styles (WIP)
<div style="color: grey">
Hello<span style="color: black">Universe,</span> Nice to meet you.
</div>
Clean code strategy
Usage with styled-components
For multi style inlined text use with styled-components, it's redundant to maintain each unique style as new variable.
// WIP