Skip to content

Instantly share code, notes, and snippets.

@Lincest
Last active January 24, 2025 01:20
Show Gist options
  • Save Lincest/80297f88c5525d3f49bdbbbf8a9e5c75 to your computer and use it in GitHub Desktop.
Save Lincest/80297f88c5525d3f49bdbbbf8a9e5c75 to your computer and use it in GitHub Desktop.
memos-css (LXGW Font)
body{font-family: "LXGW WenKai Screen R", sans-serif !important;}
function changeFont() {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'https://cdnjs.cloudflare.com/ajax/libs/lxgw-wenkai-screen-webfont/1.5.0/lxgwwenkaiscreenr.min.css';
document.head.append(link);
}
changeFont()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment