Two things:
1. If you change weewx.css in /home/weewx/public_html (or /var/www/weewx if you installed using the DEB package), then it will get overwritten. Change it in /home/weewx/skins/Standard (or /etc/weewx/skins/Standard if installed using DEB).
2. If you look in weewx.css, you'll see that the masthead color gets overridden by the h1 CSS directive:
#masthead {
...
color: red;
}
#masthead h1 {
color: #3d6c87; // This will override the color specification above!
}
In a similar manner, the h2 color gets overridden by a h2 style (see the bottom of weewx.css). So, either change the overrides, or change it explicitly in the template index.html.tmpl.
-tk
-tk