SkyHops

Results 5 comments of SkyHops

> > > You can _almost_ achieve this by using the settings like this, though testing it out, it has some odd behaviors when changing the `viewBox`: > > ```json...

@vincerubinetti I saw that "svgPreview.scaleToFit":true made the image stretch if it's not a square so, I disable it. Only problem now with it at false is we have to adjust...

```CSS /* Remove -color from background-color to make it more concistent on all website. background override background-color if set by the website. */ * { background: black !important; color: white...

For all case scenario I ended up using a bookmarklet I wrote for dark theme. (Javascript inside a bookmark) An extension would be better for having it all the time....

Some CSS I wrote which make a dark theme with the page. ```CSS :root { --background: #000000; --foreground: #00ff00; --code-color: #00cdff; } body { margin: 0 !important; padding: 0 !important;...