Skip to content

Commit 8ef23e3

Browse files
committed
FIX: make linsk different colors than headings
1 parent 5ff7752 commit 8ef23e3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

mpl_sphinx_theme/static/css/style.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1+
/* rgb #11557c */
12
html[data-theme="light"] {
2-
--pst-color-primary: #11557c;
3+
--pst-color-primary: hsl(202, 76%, 28%);
34
--pst-color-text-base: rgb(51, 51, 51);
45
--sd-color-primary-text: rgb(250, 250, 250);
6+
--pst-color-link: hsl(202, 76%, 25%);
57
}
68

79
html[data-theme="dark"] {
8-
--pst-color-primary: rgb(92, 150, 194);
10+
--pst-color-primary: rgb(70, 152, 198);
911
--pst-color-text-base: rgb(250, 250, 250);
1012
--sd-color-primary-text: rgb(51, 51, 51);
13+
--pst-color-link: hsl(202, 53%, 80%);
1114
}
1215

1316
:root {
14-
--pst-color-link: var(--pst-color-primary);
1517
--pst-color-link-hover: var(--pst-color-secondary);
1618
}
1719

0 commit comments

Comments
 (0)