Notion Custom Font

Change Notion Default Font

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        Notion Custom Font
// @namespace   Violentmonkey Scripts
// @match       *://www.notion.so/*
// @grant       none
// @version     1.0
// @author      reonokiy
// @description Change Notion Default Font
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

   // 更改为想要的字体
    const sansSerifFont = 'ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "PingFang SC", "思源黑体", "Microsoft YaHei", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"';
    const serifFont = ' Lyon-Text, Georgia, "Songti SC", "思源宋体", serif';
    const monoFont = ' iawriter-mono, Nitti, Menlo, Courier, "思源等宽", monospace';

    const style = document.createElement('style');
    style.textContent = `
        .notion-app-inner {
            font-family: ${sansSerifFont} !important;
        }

        .notion-app-inner [style*="serif"] {
            font-family: ${serifFont} !important;
        }

        .notion-app-inner [style*="monospace"] {
            font-family: ${monoFont} !important;
        }
    `;

    document.head.appendChild(style);

    const observer = new MutationObserver(() => {
        document.querySelectorAll('.notion-app-inner').forEach(el => {
            el.style.fontFamily = sansSerifFont;
        });
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });

})();