I really like the Fallout theme but the green doesn't match the theme of my case. How do I change the color of the theme? Or better yet is their anyone who has already done this and has a theme file?
Replies
1 - 1 (1)
Open an Explorer in Windows and go to %alocalappdata%\MoBro\app-1.0.0-beta5\resources\resources\public\theme\fallout\assets\.
Open mobro-applet.css in your favorite text editor.
The green text and lines have color value #09f646, so you'll want to change these values.
Furthermore, the body has a background, so change the background-image radial-gradient values to something you like:
body {
background-color: black;
background-image: radial-gradient(rgba(0, 150, 0, 0.75), black 120%);
height: 100vh;
text-shadow: 0 0 5px #C8C8C8;
overflow: hidden;
}