Pages

x
1
2
3
4
5
6
7
8
<!-- Accent -->
<a class="underline hover:no-underline focus:no-underline text-accent hover:text-accent-hover" href="#path">Link</a>
<!-- Secondary -->
<a class="underline hover:no-underline focus:no-underline text-secondary hover:text-primary" href="#path">Link</a>
<!-- Critical -->
<a class="underline hover:no-underline focus:no-underline text-critical hover:text-critical-hover" href="#path">Link</a>
1
2
3
4
5
6
7
8
# Accent
anchor_link("Link", href: "#path", variant: :accent)
# Secondary
anchor_link("Link", href: "#path", variant: :secondary)
# Critical
anchor_link("Link", href: "#path", variant: :critical)