Hi there!
Let’s say I have css describing hr
.footnotes hr {
margin-top: 4em;
margin-bottom: 2.2em;
border-color: goldenrod;
}
What should I write to make border-color
be always of Accent? is there some variable?
Hi there!
Let’s say I have css describing hr
.footnotes hr {
margin-top: 4em;
margin-bottom: 2.2em;
border-color: goldenrod;
}
What should I write to make border-color
be always of Accent? is there some variable?
border-color: var(--color-accent);
Works great, thank you!