Skip to content

Commit

Permalink
Update link colors in light mode
Browse files Browse the repository at this point in the history
Resolves #2228
  • Loading branch information
Gerrit0 committed Apr 15, 2023
1 parent 1ccbd0d commit 7284c54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Correct padding for navigation elements with a displayed icon, #2229.
- Fixed `source-order` sort strategy failing to compare reflections within a file.
- Added `enum-member-source-order` specialization of the `source-order` sort strategy which only compares enum members, #2237.
- Updated highlight colors for semantic links to meet WCAG AA contrast requirements, #2228.

### Thanks!

Expand Down
12 changes: 6 additions & 6 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
--light-color-accent: #c5c7c9;
--light-color-text: #222;
--light-color-text-aside: #707070;
--light-color-link: #4da6ff;
--light-color-ts: #db1373;
--light-color-ts-interface: #139d2c;
--light-color-ts-enum: #9c891a;
--light-color-ts-class: #2484e5;
--light-color-link: #1f70c2;
--light-color-ts: #d51270;
--light-color-ts-interface: #108024;
--light-color-ts-enum: #7e6f15;
--light-color-ts-class: #1f70c2;
--light-color-ts-function: #572be7;
--light-color-ts-namespace: #b111c9;
--light-color-ts-private: #707070;
--light-color-ts-variable: #4d68ff;
--light-color-ts-variable: #4760ec;
--light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
--light-color-scheme: light;

Expand Down

0 comments on commit 7284c54

Please sign in to comment.