If you have Firefox and you'd like the default look-and-feel back, you can do something about it. After all:
How Style Sheets Benefit Accessibility
[...]
CSS allows users to override author styles. This is very important to users who cannot perceive a page with the author's chosen fonts and color. CSS allows users to view documents with their own preferred fonts, colors, etc. by specifying them in a user style sheet.
First, install Stylish
https://addons.mozilla.org/en-US/firefox/addon/2108When Firefox has restarted, you should have a small 'S' icon in the status bar -

- right-click it, then
Write new style/
Blank style. In the winodw that opens up, paste this code in:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("firstgreatwestern.info") {
a:link {color: #476C8E !important; text-decoration: none; }
a:visited {color: #476C8E !important; text-decoration: none; }
a:hover {color: #cc3333 !important; text-decoration: underline; }
a.nav:hover {color: #cc3333 !important; text-decoration: underline; }
body, td, th , tr {font-size: small !important; font-family: verdana, sans-serif !important; }
body {background-color: #E5E5E8 !important; }
.quote {background-color: #D7DAEC !important; }
.code {font-size: x-small !important; }
.quoteheader, .codeheader {font-size: x-small !important; }
.meaction {color: red !important; }
.windowbg, #preview_body {background-color: #ECEDF3 !important; }
.windowbg2 {background-color: #F6F6F6 !important; }
.windowbg3 {background-color: #E0E1E8 !important; }
.titlebg a:hover {color: #404040 !important; }
.titlebg2 a:hover {color: #404040 !important; text-decoration: underline; }
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited {color: white !important; }
.catbg a:link, .catbg a:visited , .catbg2 a:link, .catbg2 a:visited {color: white !important; text-decoration: none; }
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover {color: #e0e0ff !important; }
.smalltext {font-size: x-small !important; font-family: verdana, sans-serif; }
.normaltext {font-size: small !important; }
.error {color: red !important; }
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back, .maintab_active_last {color: white !important; }
.maintab_back, .maintab_active_back {color: white !important; font-size: 9px !important; }
.maintab_back a:hover, .maintab_active_back a:hover {color: #e0e0ff !important; }
.mirrortab_back, .mirrortab_active_back {color: white !important; font-size: 9px !important; }
.mirrortab_back a:hover, .mirrortab_active_back a:hover {color: #e0e0ff !important; }
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/titlebg.jpg') #E9F0F6 repeat-x !important; }
.catbg , tr.catbg td , .catbg3 , tr.catbg3 td {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/catbg.jpg') #88A6C0 repeat-x !important; color: #ffffff !important; }
.catbg2 , tr.catbg2 td {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/catbg2.jpg') #A1BFD9 repeat-x !important; color: #ffffff !important; }
.maintab_first {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/maintab_first.gif') left bottom no-repeat !important; }
.maintab_back {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/maintab_back.gif') left bottom repeat-x !important; }
.maintab_last {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/maintab_last.gif') left bottom no-repeat !important; }
.maintab_active_first {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/maintab_active_first.gif') left bottom no-repeat !important; }
.maintab_active_back {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/maintab_active_back.gif') left bottom repeat-x !important; }
.maintab_active_last {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/maintab_active_last.gif') left bottom no-repeat !important; }
.maintab_back a:link , .maintab_back a:visited, .maintab_active_back a:link , .maintab_active_back a:visited {color: white !important; }
.mirrortab_first, .mirrortab_back, .mirrortab_last, .mirrortab_active_first, .mirrortab_active_back, .mirrortab_active_last {color: white !important; }
.mirrortab_first {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/mirrortab_first.gif') no-repeat !important; }
.mirrortab_back {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/mirrortab_back.gif') repeat-x !important; }
.mirrortab_last {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/mirrortab_last.gif') no-repeat !important; }
.mirrortab_active_first {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/mirrortab_active_first.gif') no-repeat !important; }
.mirrortab_active_back {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/mirrortab_active_back.gif') repeat-x !important; }
.mirrortab_active_last {background: url('http://firstgreatwestern.info/coffeeshop/Themes/default/images/mirrortab_active_last.gif') no-repeat !important; }
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link , .mirrortab_active_back a:visited {color: white !important; }
}
With a page on the Coffeeshop open, click 'Preview' and check everything looks OK. If it does, give your style a name and save it.
Before:
After: