n8x0b7T

Results 19 comments of n8x0b7T

Yes, this would be a great addition.

I did a bit of digging and this part of the documentation details how to display images. [https://sw.kovidgoyal.net/kitty/kittens/icat/#icat](https://sw.kovidgoyal.net/kitty/kittens/icat/#icat) I tested this in `kitty 0.27.0` I'm probably not fully understanding the...

![Screenshot](https://user-images.githubusercontent.com/25648252/145869189-0ff6fb19-9201-4791-8837-16506e2fafc6.jpg)

as you can see the tile uses the default colors

`--newtab-background-color-secondary` is the css variable being used to color the element. This can be defined in the `userChrome.css` file. I'm not sure how this would integrate with your current theme...

[https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json) Maybe there is an option to set css in the `manifest.json`

[https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/theme_experiment](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/theme_experiment)

It should be the same color that it is now, but just desaturated. I think the `theme_experiment` key in the json file is experimental and wont work without enabling dev...

``` .tile { --newtab-background-color-secondary: #242424 !important; } ``` I found this solution in `userContent.css` Sorry for bothering you.