Thunderbirdの0.7RCを入れるついでにCharamelなるテーマを試す。テーマのでき自体はかなりよいんであるが、黒字に白という配色だと、メール一覧で列ごとに白い下線が入ってしまう。というわけで、userChrome.cssを触って、テーマの設定を上書きするとうまくいく。

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* background-color */
treerows {
color: white !important;
background-color: #200020 !important;
}

/* for Charamel theme*/
treechildren::-moz-tree-row {
  min-height: 18px;
  height: 1.3em;
  border-bottom:1px solid #200020 !important;/*row separators*/
}