Thunderbirdの設定変更(色)

「設定エディタ」の確認
検索エリアに”toolkit.legacyUserProfileCustomizations.stylesheets”を検索し”true”へ変更

”userChrome.css”を作成
注意「文字コード」を「UTF-8」
下記とコピペ

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

/* スレッドペインの未読メッセージの表示色を青色に変える */
treechildren::-moz-tree-cell-text(unread) {
  color: #0000ff !important;
}

/* フォルダペインの未読メッセージの表示色を青色に変える */
/* single folder with unread messages */
#folderTree > treechildren::-moz-tree-cell-text(hasUnreadMessages-true) {
  color: #0000ff !important;
}

/* closed folder containing subfolder with unread messages */
#folderTree > treechildren::-moz-tree-cell-text(closed, subfoldersHaveUnreadMessages-true) {
  color: #0000ff !important;
}
   
/* open folder containing subfolder with unread messages */
#folderTree > treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true) {
  color: #0000ff !important;
}

C:\Users\【ユーザー名】\AppData\Roaming\Thunderbird\Profiles\xxxxx.default\chrome
を作成し、CSSを置く。