You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it me or the extension doesn't detect when using a dark theme? I don't know if it's made to be this way but the contrast looks really bad. Wish the nodes were brighter, like in the default graph.
The text was updated successfully, but these errors were encountered:
This appears to be part of a broader issue with pulling colors from the current theme. I've observed this behavior using the native and Minimal themes.
Currently, src/util/ObsidianTheme.ts attempts to extract colors from the CSS theme using the getComputedStyle function, which should theoretically resolve any arithmetic inside CSS calc() expressions.
However, getComputedStyle is failing to do so for some reason, so it is returning strings like hsl(calc(195 - 3), 100, 23). ForceGraph has no idea how to compute these calc expressions, so it defaults to rendering these colors as black.
Is it me or the extension doesn't detect when using a dark theme? I don't know if it's made to be this way but the contrast looks really bad. Wish the nodes were brighter, like in the default graph.
The text was updated successfully, but these errors were encountered: