Install and use Juice to inline CSS
masterJuice takes HTML and inlines its CSS properties directly into the style attribute of the elements. This is primarily used for preparing HTML emails or embedding HTML in 3rd-party websites where external stylesheets might not be supported or loaded.
import juice from 'juice';
const result = juice("<style>div{color:red;}</style><div/>");
// result: <div style="color: red;"></div>