View Single Post
  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey
 
Posts: n/a
Default make it possible to change (lighten) WORD highlighter colors

You could choose you shading color and create a couple of macros to
easily apply and remove it from selected text:

Sub ApplyMyShade()
Dim oRng As Word.Range
Set oRng = Selection.Range
oRng.Shading.BackgroundPatternColor = wdColorLightTurquoise
End Sub

Sub RemoveMyShade()
Dim oRng As Word.Range
Set oRng = Selection.Range
oRng.Shading.BackgroundPatternColor = wdColorAutomatic
End Sub