Skip to content

Commit

Permalink
Merge pull request #14 from UniMagic-VRC/fix/link-color
Browse files Browse the repository at this point in the history
リンク色を見やすいように変更
  • Loading branch information
o-tr authored Oct 20, 2024
2 parents 02eabe4 + 193d36c commit fc56b15
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
[data-theme="dark"] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
Expand All @@ -28,3 +28,15 @@
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

a {
--ifm-link-color: #00aaff;
--ifm-link-hover-color: #0077cc;
--ifm-link-decoration: underline;
}

a[class] {
--ifm-link-color: #25c2a0;
--ifm-link-hover-color: #25c2a0;
--ifm-link-decoration: none;
}

0 comments on commit fc56b15

Please sign in to comment.