Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, and 2016. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Discovering the RGB Value of a Custom Text Color.

Discovering the RGB Value of a Custom Text Color

Written by Allen Wyatt (last updated November 25, 2020)
This tip applies to Word 2007, 2010, 2013, and 2016


1

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:

  1. Select the text whose color you want examine.
  2. Make sure the Home tab of the ribbon is displayed.
  3. Click the down-arrow that is next to the Font Color tool in Font group. Word displays a palette of possible colors.
  4. Click More Colors. Word displays the Colors dialog box.
  5. Make sure the Custom tab is displayed. (See Figure 1.)
  6. Figure 1. The Custom tab of the Colors dialog box.

  7. At the bottom of the dialog box you can see the RGB values for the text color.

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:

  1. Press Ctrl+H. Word displays the Replace tab of the Find and Replace dialog box.
  2. Make sure that there is nothing in either the Find What or Replace With boxes.
  3. If there is any formatting specified for either Find What or Replace With, put the insertion point in the appropriate box and click No Formatting.
  4. Place the insertion point in the Find What box.
  5. Click Format | Font. Word displays the Font tab of the Find Font dialog box.
  6. Click the Font Color drop-down list and then choose More Colors. Word displays the Colors dialog box.
  7. Make sure the Custom tab is displayed.
  8. At the bottom of the dialog box you can set the RGB values for the text color you want to find.
  9. Click OK to dismiss the Colors dialog box.
  10. Click OK to dismiss the Find Font dialog box.
  11. Place the insertion point in the Replace With box.
  12. Repeat steps 5 through 10 to set the desired color for the replacement. (You don't have to repeat the same steps if you want to replace the color with some other permutation of formatting. Use the controls in the dialog box to set what you want.)
  13. Click Replace All.

Of course, there is a way to change custom colors without even worrying about RGB values. Follow these steps:

  1. Select the text whose color you want examine.
  2. Right-click on the text and then choose Styles | Select Text with Similar Formatting. Word selects all the text in the document that is formatting like the text you selected in step 1.
  3. Change the color of the selected text, as desired.

This approach only works, of course, if the only distinguishing formatting of the text is its color. For example, if the text you selected in step 1 is a certain font size and boldface, then those factors will be taken into account in step 2. Word may not select some text in the document that uses the same color as the text in step 1 but isn't the same font size and non-bold.

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:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (261) applies to Microsoft Word 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Word here: Discovering the RGB Value of a Custom Text Color.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Using Very Large Font Sizes

You can format your text to use some very, very large font sizes. The results you see from formatting with large fonts ...

Discover More

Extracting Street Numbers from an Address

Want to know how to move pieces of information contained in one cell into individual cells? This option exists in using ...

Discover More

Enforcing Moving Cells Up

When you design your worksheets, you probably want users to interact with those worksheets in specific ways. What ...

Discover More

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!

More WordTips (ribbon)

Changing the Underline Color

Word provides quite a bit of latitude when it comes to formatting your underlines. This tip looks at how to best change ...

Discover More

Changing the Default Font

Don't like the font that Word uses for a default in your new documents? You can pick a different font, but the way you ...

Discover More

Font Substitution Problems

When your document uses fonts that are not available on your computer system, Word substitutes other fonts that it feels ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 8 - 2?

2017-04-22 10:59:21

Sheryl Lucas

I love the Shift-F1 solution! Much better than the cumbersome way I had of selecting the text and setting it as a new custom color without changing the color.

But I'm having trouble with the second solution. When I right-click on the selected text and choose Styles, "Select Text with Similar Formatting," is not one of the options available to me. All I have, besides the styles themselves, are: Create a style, Clear formatting, and Apply styles.


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.