Conversation
|
It would be great to have a version of the logo that works with dark mode, but it's not essential. Simply replacing the blue with a different colour would suffice. |
|
I experimented with a dynamic version using media queries like so (dark mode colors are just an example): <defs>
<style>
@media (prefers-color-scheme: light) {
.yellow {
fill: #d4aa00;
stroke: #d4aa00;
}
.blue {
fill: #163255;
stroke: #163255;
}
}
@media (prefers-color-scheme: dark) {
.yellow {
fill: #d4aaff;
stroke: #d4aaff;
}
.blue {
fill: #a63255;
stroke: #a63255;
}
}
</style>
</defs>However I ended up deciding against this approach because websites can ignore the preferred user color scheme and still use a white background in which case it looks even worse. |
|
Next approach was using SVG parameters so the color scheme can be controlled over the URI as defined in https://www.w3.org/TR/SVGParamPrimer/ and https://tabatkins.github.io/specs/svg-params/. Unfortunately those parameters never got implemented by browsers and the spec has been abandoned. |
|
There are custom CSS properties but they cannot currently be passed into an external SVG. |
|
Since those advanced solutions all don't work well I will just create a separate copy for dark mode background. |
|
@AlexU75 @ChristophB: Please write which light color you prefer. |
|
I have the same impression. The logo also feels a bit cluttered with everything included.
How about "A minimal GFO version"? |
|
Which editor did you use to create the logo? I prefer Inkscape. However, the colours you defined are not working there. |
|
@ChristophB I edit the logo in nvim and test it in Firefox. |
|
Looks like, Inkscape doesn't like comments in the CSS. :D I added a new version with another type of focus and rays. |
|
For the dark-mode version, I suggest to define the .blue {
fill:#476993ff;
stroke:#476993ff;
} |
|
Christoph's new version: I think it's amazing! @AlexU75 what do you think? |
Yes, it's very good! The two nodes closest to the lamp should also be yellow. |
|
So we discard the version with the rays and fully move over to Christoph's version? |
|
@AlexU75: If the two closest two the lamp are also yellow, then they are not in the inner focus circle. Should that still be done? |
|
@ChristophB: Do you have further suggestions or do you approve it with your last changes? |
|
Unfortunately I cannot merge this PR as the checks don't seem to progress. |

Associated with task issue #15.