Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KenjiOhtsuka/9c127044023710de90b7e91432eba363 to your computer and use it in GitHub Desktop.
Save KenjiOhtsuka/9c127044023710de90b7e91432eba363 to your computer and use it in GitHub Desktop.
How to change Theme fonts in Microsoft Word

How to change Theme fonts in Microsoft Word

Here, I explain how to change headings and body font in Microsoft Word. I used Microsoft Word for Mac Version 16.70. In Microsoft Word, there are default fonts and I couldn’t find a way to change them via GUI. When I change the theme, they are changed but it was hard to find a theme that uses the font I wanted to use. Then, I changed them with VBA. Code

I changed the default font as follows.

To change fonts to Times New Roman

ActiveDocument.DocumentTheme.ThemeFontScheme.MajorFont(msoThemeLatin).Name = "Times New Roman"
ActiveDocument.DocumentTheme.ThemeFontScheme.MinorFont(msoThemeLatin).Name = "Times New Roman"

You can use msoThemeEastAsian for Asian fonts instead of msoThemeLatin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment