[Paper] Google Docs Dark Mode

Google Docs Dark Mode - Paper

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
/* ==UserStyle==
@name         [Paper] Google Docs Dark Mode
@version      1.5.0
@namespace    theusaf.org
@license      MIT
@description  Google Docs Dark Mode - Paper
@author       theusaf
==/UserStyle== */

@-moz-document url-prefix("https://docs.google.com/document") {
  :root {
    --gray-50: #dddddd;
    --gray-100: #bdbdbd;
    --gray-150: #646464;
    --gray-200: #555555;
    --gray-300: #444444;
    --gray-400: #313131;
    --gray-500: #1C1C1C;
    --gray-600: #171717;
    --white-100: #f5f5f5;
    --white-200: #ededed;
    --white-300: #e3e3e3;
  }

  /* background/text */
  .kix-zoomdocumentplugin-outer,
  .kix-appview-editor > div {
    background-color: var(--gray-100) !important;
    filter: invert(1);
  }

  .kix-appview-clipped-ui-elements-container {
    filter: invert(1);
  }

  /* images */
  .kix-lineview-text-block image,
  .kix-lineview-text-block img,
  #link-bubble-thumbnail-image,
  .docs-link-bubble-favicon img {
    filter: invert(1);
  }

  /* grammarly support */
  [data-grammarly-shadow-root="true"] {
    mix-blend-mode: normal !important;
  }
}