Firefoxで、アクティブなタブを強調して分かりやすくする

http://www.mozilla-japan.org/support/firefox/tips#app-tab

アクティブなタブの、文字を青く背景を赤くした。
背景色は、タブの上下端にしか効かない。
Tab Mix Plusでもタブの文字の色等は変更できる。
テーマによっては、アクティブなタブがわかりやすいものがあるので、以下の設定は必要ない。

/* アクティブなタブの色を変える */
tab{
   -moz-appearance: none !important; 
} 
tab[selected="true"] { 
   background-color: rgb(255,0,0) !important; 
   color: blue !important; 
} 
 
/* 通常のタブの色を変える */
tab:not([selected="true"]) { 
   background-color: rgb(200,196,188) !important; 
   color: gray !important; 
}