diff --git a/client/images/p5js-logo-small.svg b/client/images/p5js-logo-small.svg index 164ef67fff..132c0b89e4 100644 --- a/client/images/p5js-logo-small.svg +++ b/client/images/p5js-logo-small.svg @@ -1,20 +1,5 @@ - - - - - - - - - - - - - - - - + - + \ No newline at end of file diff --git a/client/styles/components/_nav.scss b/client/styles/components/_nav.scss index 2d3e25844f..69f267955e 100644 --- a/client/styles/components/_nav.scss +++ b/client/styles/components/_nav.scss @@ -162,21 +162,26 @@ position: absolute; } } -.svg__logo g > path { + +.svg__logo { + @include themify() { - fill: getThemifyVariable('logo-color'); + // Set background color of the logo + background-color: getThemifyVariable('logo-color'); } -} -.svg__logo g g:first-of-type path { - fill: none; + } -.svg__logo g g:first-of-type use { +.svg__logo g path{ + @include themify() { + // Set internal color of the logo; fill: getThemifyVariable('logo-background-color'); } + } + .nav__keyboard-shortcut { font-size: #{12 / $base-font-size}rem; font-family: Inconsololata, monospace; diff --git a/client/styles/components/_toolbar.scss b/client/styles/components/_toolbar.scss index e4b9b86742..7fd3243ed1 100644 --- a/client/styles/components/_toolbar.scss +++ b/client/styles/components/_toolbar.scss @@ -125,8 +125,12 @@ } .toolbar__autorefresh-label { + cursor: pointer; @include themify() { color: getThemifyVariable('secondary-text-color'); + &:hover { + color: getThemifyVariable('logo-color'); + } } margin-left: #{5 / $base-font-size}rem; font-size: #{12 / $base-font-size}rem;