Skip to content

Commit

Permalink
Replace $gold2 with $gold1 - 10% lighter than a gold-ish color.
Browse files Browse the repository at this point in the history
  • Loading branch information
0x1eef committed Oct 24, 2023
1 parent e140d38 commit 6179b89
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/css/themes/blue/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
$gold1: #ECB200;
$gold2: lighten($gold1, 5%);
$gold1: lighten(#ECB200, 10%);
$blue1: darken(#e4eff8, 35%);
$white: #FFF;
2 changes: 1 addition & 1 deletion src/css/themes/blue/components/_Icon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
}

.stalled.icon {
div { background: $gold2; }
div { background: $gold1; }
}
}
6 changes: 3 additions & 3 deletions src/css/themes/blue/pages/_SurahIndex.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}

div:first-child {
.id { color: $gold2; }
.id { color: $gold1; }
}
}

Expand All @@ -28,7 +28,7 @@
.root .content.theme.blue.en {
@import "themes/blue/colors";
.row.details span {
color: $gold2;
color: $gold1;
}
}

Expand All @@ -37,7 +37,7 @@
ul.body.index {
li.surah a {
div:first-child .id {
color: $gold2;
color: $gold1;
}
div:first-child .name {
color: $blue1;
Expand Down

0 comments on commit 6179b89

Please sign in to comment.