Written by Allen Wyatt (last updated June 25, 2018)
This tip applies to Word 97, 2000, 2002, and 2003
Steve has text in a document that has been formatted in a custom color. He wants to use Find and Replace to change the color throughout, but doesn't know how to specify the custom color in the Find box. He wonders if there is a way to discover the RGB values of a custom color.
There are several ways you can discover the RGB value of a color used on some text. Here's one way:
Figure 1. The Font tab of the Font dialog box.
Figure 2. The Custom tab of the Colors dialog box.
Word also provides another way to display the RGB colors of a text selection: All you need to do is select the text and press Shift+F1. Word displays the Reveal Formatting pane at the right side of the document. This pane shows all the formatting applied to the selected text. In the Font section of the pane you can see an indication of the RGB colors of the text.
You can also use a third-party utility to figure out the RGB colors of your text. Most of these utilities don't really care about the text, they simply show the color of any particular pixel of the screen that you point at. Here are two suggestions for such utilities:
http://instant-eyedropper.com/ http://colorcop.net/
Once you have the RGB values for the existing color, you can easily use Find and Replace to make the change. Just follow these steps:
Finally, if you need to change a lot of colors in this manner, you may want to use a macro to do the actual changes. The following macro can make the change in a single pass:
Sub ChangeCustomColor() CFC = Selection.Font.Color Selection.WholeStory With Selection.Find .Format = True .Text = "" .Font.Color = CFC .Replacement.Text = "" .Replacement.Font.Color = RGB(0, 0, 255) ' Change to BLUE font End With Selection.Find.Execute Replace:=wdReplaceAll End Sub
Before you run the macro, change the RGB setting in the line that controls the replacement color. Then, select the text that uses the custom color you want to change. When you run the macro, all the text that uses the same color as the selected text is modified to whatever color you specified in the macro itself.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (252) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Discovering the RGB Value of a Custom Text Color.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Part of the formatting you can add to your text is underlining. That simple word (underlining) represents quite a few ...
Discover MoreWant to make your text shimmer and dance on the screen? Depending on your version of Word you can easily add snazzy ...
Discover MoreWant to quickly format some text in your document? Select, right-click, and make a selection, and you can get to the ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2022-03-07 06:47:46
Harry
This is such a simple thing but I could not work it out, even after a lifetime of using Word 😂. Thank you for sharing!
2021-06-08 03:08:03
Thank you so much, this was very helpful.
2019-10-09 00:18:21
Dianne
Every time I need help with Word, I ALWAYS find the right answers on your website in articles by Allen Wyatt, with perfect instructions that include photos, so I would just like to say a huge THANK YOU!
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments