タブ
89にしたらタブの高さが高くなった
/* タブとタブバーの高さを調整 */
:root {--tab-min-height: 26px !important;}
:root[uidensity="compact"] {--tab-min-height: 26px !important;}

新規タブとツールバーの間の影のような無駄なスペースを無くす方法はないのかな?
.tab-background {border-radius: 0 !important; margin: 0px -2px 0px -2px !important;}

protonでタブがボタンっぽく見える問題は
userChrome.cssに以下を追記したら幾分マシになった
.tab-background {border-radius: 4px 4px 0 0 !important;margin-block: 0 !important;}

/* タブの形状を長方形に変更 */
.tab-background {border-radius: 0px !important; margin-block: 0px !important;}

タブとタブの間の隙間空いてるの間隔調整できませんかね
.tabbrowser-tab {padding-left: 0px !important; padding-right: 0px !important;}

/* アクティブタブの背景色 */
#TabsToolbar .tabbrowser-tab[selected="true"] .tab-background {background: #797979 !important;}

/* アクティブタブの文字色 */
label.tab-text.tab-label[selected="true"]{color:black !important;}

/* バックグラウンドのタブの色 */
#TabsToolbar .tabbrowser-tab:not([selected]) .tab-background {background: #797979 !important;}

タブとタブの間の枠が消えてる
/* タブ間のセパレータ表示 */
.tabbrowser-tab {border-left: 1px solid rgba(255,255,255,.3) !important; padding-inline: 0px !important;}