Firefoxアドオンのbbs2chreaderで、板ツリーの背景色や、スレッド一覧表示の背景色が「白」なので、長時間見ていると目が疲れる。 表示色をカスタマイズする方法のメモ。
Linuxの場合のフォルダ位置で書いているが、Windowsの場合はDocument and Settings のユーザフォルダ下で検索すれば同じファイル名が見付かるはず。
なお、Firefoxインストール直後は、userChrome-example.css となっていたりするので、リネームする。
/home/'user'/.mozilla/firefox/wz.../chrome/userChrome.css
/* b2rのサイドバーの板一覧に色をつける */
#treeBbsMenu treechildren:-moz-tree-row(even){
background-color: gainsboro !important;
}
#treeBbsMenu treechildren:-moz-tree-row(odd){
background-color: gainsboro !important;
}
#treeBbsMenu treechildren {
background-color: lavendar !important;
}
#treeBbsMenu treechildren:-moz-tree-row(selected){
background-color: darksalmon !important;
}
/home/'user'/.mozilla/firefox/wz.../chrome/userContent.css
/* b2rのスレッド一覧に色をつける */
#treeSubject treechildren:-moz-tree-row(even) {
background-color: lightgrey !important;
color: black !important;
}
#treeSubject treechildren:-moz-tree-row(odd) {
background-color: gainsboro !important;
color: black !important;
}
#treeSubject treechildren {
background-color: lavendar !important;
color: black !important;
}
#treeSubject treechildren:-moz-tree-row(selected) {
background-color: darksalmon !important;
color: black !important;
}