View Single Post
 
Old 09-05-2015, 11:06 AM
cyraxote cyraxote is offline Windows 7 64bit Office 2013
Novice
 
Join Date: Sep 2015
Location: Essex, MD
Posts: 24
cyraxote is on a distinguished road
Default

Open a document in Word, select some text, and then record a macro. Click the Font Color icon on the Home tab of the Ribbon. Choose a bunch of different colors, and then stop the macro recording. You'll have the color values in the recorded macro, like this:
Code:
Sub Macro20()
'
' Macro20 Macro
'
'
    Selection.Font.Color = -553582593
    Selection.Font.Color = -704577537
    Selection.Font.Color = -553598977
    Selection.Font.Color = -687800423
    Selection.Font.Color = wdColorRed
End Sub
Reply With Quote