The main window of my terminal is surrounded with a large transparent border when I use the material-theme plugin. I tried to modify opacity settings to fix the problem but it does'nt work.
When I add "hyper-material-theme" to the config manually without reloading the configuration file, every thing is OK. But when i quit hyper and restart it, the problem is back.

I don't know oh to fix it ^^. If someone can help.
+1
@dpyzo0o @seisenreich @sousandrei Use +1 button on the reported issue, instead of spamming with "me too" comments.
@Igloczek ok. Sorry. Did not see that I could do that. Thanks for your advise.
I was able to fix it on my local machine by editing the .hyper.js file. You can open it by going to your Mac OS top bar Hyper -> Preferences.
I made the edit:
module.exports = {
config: {
...,
css: '.hyper_main { background: rgb(38, 50, 56); }',
...,
},
...,
};
Probably would be better to not have to add this to the config though?
Facing the same issue, doing the css fix above doesn't really change the color to the right color, as there seems to be still some transparancy setup in the theme.
When I reinstall hyper and reinstall the themes, it seems to be fixed. After I close hyper and restart it, it reappears.
How can this be resolved in V3?
Most helpful comment
I was able to fix it on my local machine by editing the
.hyper.jsfile. You can open it by going to your Mac OS top bar Hyper -> Preferences.I made the edit:
Probably would be better to not have to add this to the config though?