Providing per-Document styles
The CSS custom properties technique
{
"color": "#db2777"
}<style>
:root {
--color: {{color}};
}
</style>h1 {
color: var(--color);
}Last updated
Was this helpful?
{
"color": "#db2777"
}<style>
:root {
--color: {{color}};
}
</style>h1 {
color: var(--color);
}Last updated
Was this helpful?
Was this helpful?