Skip to content

Commit

Permalink
Slightly darker text colors (the grays) on dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrla committed Apr 13, 2022
1 parent 6efcdae commit 6cbb6bd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions _sass/base/_color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
:root {
// @include define-color("txt", #dedede);
@include define-color("txt", #d1d1d1);
@include define-color("txt-muted", darken(#dedede, 20%)); // #ababab
@include define-color("txt-muted", darken(#d1d1d1, 20%)); // #9e9e9e

@include define-color("headings", lighten(#ccc, 10%)); // #e6e6e6

Expand All @@ -107,12 +107,12 @@
@include define-color("link-visited", desaturate(#2997ff, 33%));
@include define-color("link-active", darken(#2997ff, 33%));

@include define-color("muted", darken(#dedede, 37%)); // #808080
@include define-color("muted-hover", lighten(#808080, 10%));
@include define-color("muted-visited", desaturate(#808080, 25%));
@include define-color("muted-active", darken(#808080, 25%));
@include define-color("muted", darken(#d1d1d1, 32%)); // #7f7f7f
@include define-color("muted-hover", lighten(#7f7f7f, 10%));
@include define-color("muted-visited", desaturate(#7f7f7f, 25%));
@include define-color("muted-active", darken(#7f7f7f, 25%));

@include define-color("marker-muted", darken(#dedede, 57%)); // #4d4d4d
@include define-color("marker-muted", darken(#d1d1d1, 50%)); // #515151

@include define-color("bg", #111);
@include define-color("ui-bg", darken(#111, 3%)); // #090909
Expand Down

0 comments on commit 6cbb6bd

Please sign in to comment.