@uswds/web-components
Version:
> [!CAUTION] > Work on the next version of the Design System is happening in this repo. The code in this repository is not yet ready for production use.
29 lines (24 loc) • 620 B
JavaScript
import { css } from "lit";
export default css`
:host {
a {
color: var(--theme-link-color, #005ea2);
text-decoration: underline;
}
a:visited {
color: var(--theme-link-visited-color, #54278f);
}
a:hover {
color: var(--theme-link-hover-color, #1a4480);
}
a:active {
color: var(--theme-link-active-color, #162e51);
}
a:focus {
/* @include focus-outline; */
outline: var(--theme-focus-width, 0.25rem) var(--theme-focus-style, solid)
var(--theme-focus-color, #2491ff);
outline-offset: var(--theme-focus-offset, 0);
}
}
`;