1
0
mirror of https://github.com/danbee/danbarber.me.hugo.git synced 2025-03-04 08:59:18 +00:00

Desaturate logo colors

This commit is contained in:
Daniel Barber 2019-10-16 22:27:28 -04:00
parent edb92a7550
commit c3cb433f73
2 changed files with 15 additions and 8 deletions

View File

@ -1,3 +1,10 @@
$_desaturate_amount: 35%;
$_color_1: desaturate(#ff6800, $_desaturate_amount);
$_color_2: desaturate(#e8ff00, $_desaturate_amount);
$_color_3: desaturate(#00a9ff, $_desaturate_amount);
$_color_4: desaturate(#b346e2, $_desaturate_amount);
.logo__wrapper {
width: 7rem;
line-height: 0;
@ -5,18 +12,18 @@
}
.logo__color_1 {
fill: #ff6800;
fill: $_color_1;
}
.logo__color_2 {
fill: #e8ff00;
fill: $_color_2;
}
.logo__color_3 {
fill: #00a9ff;
fill: $_color_3;
}
.logo__color_4 {
fill: #b346e2;
fill: $_color_4;
}

View File

@ -459,13 +459,13 @@ pre {
margin-bottom: 1em; }
.logo__color_1 {
fill: #ff6800; }
fill: #d2702d; }
.logo__color_2 {
fill: #e8ff00; }
fill: #c3d22d; }
.logo__color_3 {
fill: #00a9ff; }
fill: #2d9ad2; }
.logo__color_4 {
fill: #b346e2; }
fill: #a46bbd; }