【随時更新】 Notion を見やすくするためのスタイルの上書き (ブラウザ限定・ライト/ダークモード対応)
2024-12-18T15:35:00+09:00 | 1分で読めます | 更新日時 2024-12-22T07:28:21Z
この記事は Unipos Advent Calendar 2024の8日目の記事として執筆しました。
仕事上のタスクなどの管理を Notion で行っているのですが、個人的に視認性が悪いと感じることがあります。 私はそのような箇所をブラウザの拡張機能などでスタイルを上書きすることで対応しているので、上書き用の css を共有します。(ライトテーマとダークテーマの両方に対応してます)
上書きの仕方
ブラウザの Notion に css を当てられる方法であればなんでも良いです
- 拡張機能を使う
- (Arc ユーザー向け) Boost 機能を使う
ちょっと解説
モード対応について
Notion はライトモードとダークモードの設定によって、上位の要素に notion-light-theme
または notion-dark-theme
というクラスが付与されます。
それぞれで同じ名前の CSS変数を定義してそれを利用したスタイルを当てることで、モードの対応をしています。
コピーした上で色を調整する際などの参考にしてください。
上書きするスタイル
タイムライン
上書き後のイメージ
土日をわかりやすく
.notion-light-theme {
--cstm-timeline-saturday: #ebf3fe;
--cstm-timeline-sunday: #ffebe9;
}
.notion-dark-theme {
--cstm-timeline-saturday: #272f3a;
--cstm-timeline-sunday: #312524;
}
.notion-timeline-view > .notion-selectable.notion-collection_view_page-block > div:first-child div,
.notion-timeline-view > .notion-selectable.notion-collection_view-block > div:first-child div {
background: linear-gradient(
90deg,
var(--cstm-timeline-saturday) 0%,
var(--cstm-timeline-saturday) 50%,
var(--cstm-timeline-sunday) 50%,
var(--cstm-timeline-sunday) 100%
) !important;
}
各アイテムの境界を見やすく
.notion-light-theme {
--cstm-timeline-border: #d6d6d6;
}
.notion-dark-theme {
--cstm-timeline-border: #606060;
}
.notion-timeline-item {
border: 1px solid var(--cstm-timeline-border) !important;
}