How to make some object be always "Accent" colored

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);
1 Like

Works great, thank you!

1 Like