ckeditor / ckeditor5

Powerful rich text editor framework with a modular architecture, modern integrations, and features like collaborative editing.
https://ckeditor.com/ckeditor-5
Other
9.35k stars 3.68k forks source link

Modify default font family. #16722

Open BESoft33 opened 2 months ago

BESoft33 commented 2 months ago

📝 How can I modify the default font family?

I wanted to override the default fontfamily ckeditor5 comes with. To be specific, I want to use (https://fonts.google.com/specimen/Inconsolata. Is there any way I can modify the default for fontfamily?

Thanks.

Massa-Albani4 commented 2 months ago

try setting a css variable and set the variable as your font family:

p { font-size: var(--fontSize); font-family: var(--fontFamily); }