Forum Discussion

mtthomasm516's avatar
mtthomasm516
Copper Contributor
Sep 15, 2025
Solved

Save Recent Font Color

Is there a way to save recent font colors so that they don't need to be selected with each new Word session?  I use the deep blue color shown below constantly, and not just as cosmetic thing.  That color has good contrast with other text and is easy for my eyes to pick up.  I would just like it if I didn't have to go select it all the time.  I'm hoping maybe there's a registry setting that will make that color automatically available in the below list, or maybe it can be made part of a template or something.

Thanks in advance for any help that you can offer!

 

 

--Tom

4 Replies

    • mtthomasm516's avatar
      mtthomasm516
      Copper Contributor

      Sorry for the delay in responding.  I was out all last week, and didn't have a lot of time to work with your suggestions prior to that.

      The solutions that you suggest are not exactly what I'm looking for.  I would prefer to just right-click and have the color pinned right there, but that might not be possible, so one of your suggestions may be the best that I can do.  I work with them a bit more and see what works best for me.

      Thanks for the reply!

      • cdrgreg's avatar
        cdrgreg
        Copper Contributor

        Right click and pinned where?  If you create a character or paragraph style (where that color is set as the font color property), then you can apply that style to selected text using several methods..

        You could add that style to the style gallery, you could apply the style using a macro:

        Sub ApplyMyStyle()
        'A basic Word Macro coded by Gregory K. Maxey
          Selection.Style = "MyDarkBlueFontColor"
        lbl_Exit:
          Exit Sub
        End Sub

        You can create a keyboard shortcut to apply that style or you could modify the text shortcut menu to apply that style. See: https://gregmaxey.com/word_tip_pages/customize_shortcut_menu.html

         

Resources