Customizing the UI Bar

By default, the Saves and Restart buttons—actually styled links—do not have an assigned base background color, instead defaulting to that of their ancestor #ui-bar element.

They do have a base foreground color and a :hover pseudo-class background, and border, color. The relevant default styles:

#menu li a {
	color: #eee;
}
#menu li a:hover {
    background-color: #444;
    border-color: #eee;
}

Downloading the Bleached stylesheet from SugarCube’s website may give you styling ideas. There’s also the CSS > Built-in Stylesheets section of the official docs.