【随時更新】 Notion を見やすくするためのスタイルの上書き (ブラウザ限定・ライト/ダークモード対応)

2024-12-18T15:35:00+09:00 | 1分で読めます | 更新日時 2025-03-25T19:04:39+09:00

@

Note

この記事は Unipos Advent Calendar 2024 の8日目の記事として執筆しました。

仕事上のタスクなどの管理を Notion で行っているのですが、個人的に視認性が悪いと感じることがあります。 私はそのような箇所をブラウザの拡張機能などでスタイルを上書きすることで対応しているので、上書き用の css を共有します。(ライトテーマとダークテーマの両方に対応してます)

上書きの仕方

ブラウザの Notion に css を当てられる方法であればなんでも良いです

ちょっと解説

モード対応について

Notion はライトモードとダークモードの設定によって、上位の要素に notion-light-theme または notion-dark-theme というクラスが付与されます。
それぞれで同じ名前の CSS変数を定義してそれを利用したスタイルを当てることで、モードの対応をしています。

コピーした上で色を調整する際などの参考にしてください。

上書きするスタイル

全体

通常時の横幅を広げる

テーブルなどの表示は狭いまま。(なんとかしたい)

.layout:not(.layout-wide) {
  --cstm-content-width: minmax(auto,1200px); /* ここで横幅を調整。デフォルトだと 900px くらい */
  --cstm-margin-width: minmax(96px,1fr);
  display: grid;
  grid-template-columns: [full-start] var(--cstm-margin-width) [content-start] var(--cstm-content-width) [content-end] var(--cstm-margin-width) [full-end] !important;
  width: 100%
}

タイムライン

上書き後のイメージ

スタイルを当てた後のタイムラインの画像

土日をわかりやすく

.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;
}

© 2024 - 2025 nabekou29 Blog

🌱 Powered by Hugo with theme Dream.

About Me

ソフトウェアエンジニア4年目。 主にフロントエンドの開発をしてます。

プロフィールのアイコンは昔に北海道で飲んだコーヒーです。