site/src/content/docs/helpers/colored-links.mdx
import { getData } from '@libs/data'
You can use the .link-* classes to colorize links. Unlike the .text-* classes, these classes have a :hover and :focus state. Some of the link styles use a relatively light foreground color, and should only be used on a dark background in order to have sufficient contrast.
<Example code={[
...getData('theme-colors').map((themeColor) => <p><a href="#" class="link-${themeColor.name}">${themeColor.title} link</a></p>),
<p><a href="#" class="link-body-emphasis">Emphasis link</a></p>
]} />
Colored links can also be modified by our link utilities.
<Example code={[
...getData('theme-colors').map((themeColor) => <p><a href="#" class="link-${themeColor.name} link-offset-2 link-underline-opacity-25 link-underline-opacity-100-hover">${themeColor.title} link</a></p>),
<p><a href="#" class="link-body-emphasis link-offset-2 link-underline-opacity-25 link-underline-opacity-75-hover">Emphasis link</a></p>
]} />