Skip to content

Commit

Permalink
[app:var.module.scss] Add a darkBlue to $colors map for use on links
Browse files Browse the repository at this point in the history
[app:global.module.scss] Change anchor tag color to `$colors.darkBlue`
  • Loading branch information
chichiwang committed Jul 5, 2024
1 parent 73c5c8f commit 8f8fa3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/global.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
:global a:hover,
:global a:focus,
:global a:visited {
color: map.get(var.$colors, "blue");
color: map.get(var.$colors, "darkBlue");
text-decoration: none;
font-weight: bold;
}
Expand Down
1 change: 1 addition & 0 deletions app/var.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ $colors: (
"orange": #FFC470,
"red": #DD5746,
"maroon": #8B322C,
"darkBlue": #005675,
);

$code-colors: (
Expand Down

0 comments on commit 8f8fa3b

Please sign in to comment.