[299] 옵시디언에서 특정 폰트를 설치하는 방법 소개
S
shunnna (39.♡.222.244)
2025년 2월 9일 PM 12:37
조회 599 공감 0

https://github.com/microsoft/cascadia-code/releases
/* 기본 텍스트에 Noto Sans Nerd Font 적용 */
body {
font-family: 'Noto Sans Nerd Font', sans-serif !important;
}
/* 코드 블록에 Cascadia Code 적용 */
code, pre {
font-family: 'Cascadia Code', monospace !important;
}
https://www.nerdfonts.com/cheat-sheet
https://hellogreg.github.io/woff2base/
@font-face {
font-family: 'CustomFont';
src: url(data:font/woff2;base64,<Base64-코드>) format('woff2');
}
body {
font-family: 'CustomFont', sans-serif !important;
}
댓글 (0)
- 아직 댓글이 없습니다. 첫 댓글을 작성해보세요!
댓글을 작성하려면 이 필요합니다.