Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit a5e6f02

Browse files
authored
Address color and contrast 1
Add accent colors for emphasis and improve quote styling.
1 parent ba39676 commit a5e6f02

1 file changed

Lines changed: 27 additions & 1 deletion

File tree

docs/stylesheets/extra.css

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
--md-code-fg-color: #1b1b1b;
66
--md-code-hl-variable-color: #565c65;
77
--md-code-hl-comment-color: #565c65;
8+
--md-accent-fg-color: #3F57A6;
9+
--md-accent-fg-color--transparent: #3F57A6;
10+
811
}
912

1013
/* add affordance to article links */
@@ -51,4 +54,27 @@ li a:hover {
5154
.md-nav--primary .md-nav__title,
5255
.md-nav--secondary .md-nav__title {
5356
box-shadow: none;
54-
}
57+
}
58+
59+
/* Addresses Row 17 in Nov 2025 Audit */
60+
.md-typeset .admonition.quote,.md-typeset details.quote {
61+
border-color: #757575
62+
}
63+
64+
.md-typeset .admonition.quote:focus-within,.md-typeset details.quote:focus-within {
65+
box-shadow: 0 0 0 .2rem #757575a
66+
}
67+
68+
.md-typeset .quote>.admonition-title,.md-typeset .quote>summary {
69+
background-color: #757575a
70+
}
71+
72+
.md-typeset .quote>.admonition-title:before,.md-typeset .quote>summary:before {
73+
background-color: #757575;
74+
-webkit-mask-image: var(--md-admonition-icon--quote);
75+
mask-image: var(--md-admonition-icon--quote)
76+
}
77+
78+
.md-typeset .quote>.admonition-title:after,.md-typeset .quote>summary:after {
79+
color: #757575
80+
}

0 commit comments

Comments
 (0)