Skip to content

Commit

Permalink
[app:var.module.scss] Lighten $colors.grey and $colors.darkBlue,
Browse files Browse the repository at this point in the history
darken `$code-colors.background`

[pages:Documentation:styles] Change color to `$colors.black` for
`.highlight` class
  • Loading branch information
chichiwang committed Jul 6, 2024
1 parent a92b6dd commit e0d340a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/var.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ $breakpoint-small-max: 39.9375rem;
$colors: (
"black": #000,
"white": #fff,
"grey": #595959,
"grey": #e8e8e8,
"blue": #4793AF,
"orange": #FFC470,
"red": #DD5746,
"maroon": #8B322C,
"darkBlue": #005675,
"darkBlue": #3D7D94,
);

$code-colors: (
"background": #434343,
"background": #161B22,
"blue": #A5D6FF,
"darkBlue": #79c0ff,
"green": #7EE787,
Expand Down
2 changes: 1 addition & 1 deletion pages/Documentation/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $indent-unit: map.get(var.$content, 'padding');

.highlight {
padding: calc(map.get(var.$content, 'padding') / 8) calc(map.get(var.$content, 'padding') / 4);
color: map.get(var.$colors, 'white');
color: map.get(var.$colors, 'black');
border-radius: 0.25rem;
background-color: map.get(var.$colors, 'grey');
}
Expand Down

0 comments on commit e0d340a

Please sign in to comment.