--- title: Memos界面配置 date: 2024-11-28T15:53:36+08:00 lastmod: 2024-11-28T16:01:15+08:00 --- # Memos界面配置   自定义样式 ```bash body{font-family: "LXGW WenKai Screen", sans-serif !important;} /* 修改特殊字体颜色 */ .text-blue-600 { --tw-text-opacity: 1; color: rgb(11 96 176 / var(--tw-text-opacity)); } /* 修改标签样式 */ .dark .inline-block { border: 1px solid rgb(110,110,110); border-radius: 8px; background-color: rgb(90, 90, 90); padding: 0px 4px; } .inline-block { border: 1px solid rgb(230,230,230); border-radius: 8px; background-color: rgb(245, 245, 245); padding: 0px 4px; } /* 修改Memo字号 */ .memo-wrapper .text-base { font-size: 0.95rem; } /* 修改代码块字号 */ .text-sm { font-size: 0.85rem; } /* 隐藏 通知 选项卡 */ #header-inbox { display: none; } /* 隐藏 个人资料 选项卡 */ #header-profile { display: none; } /* 隐藏 探索 选项卡 */ #header-explore { display: none; } /* 修改编辑器字体为等宽 原始字体Courier New */ textarea { font-family: 'LXGW WenKai Screen', Courier, monospace; } ```   自定义脚本 ```bash function changeFont() { const link = document.createElement("link"); link.rel = "stylesheet"; link.type = "text/css"; link.href = "https://cdn.staticfile.org/lxgw-wenkai-screen-webfont/1.6.0/lxgwwenkaiscreen.css"; document.head.append(link); }; changeFont() ```   ‍