Change colors applied from theme to customized colors

antaeusguy

Board Regular
Joined
Mar 8, 2010
Messages
81
In Excel 2007/2010, when a color is applied to a cell interior from the theme colors, the cell color will change if the theme is changed.

For customized colors (applied from "More colors..." > choosing from standard colors (the hexagon shaped palette) or custom colors (by defining the RGB/HSL values)), the cell color will not change according to the changed theme.

If I applied colors from themes to my fonts/cell interior, how do I convert it to customized colors so that it will not change according to the themes?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
You could set a custom color to the color of the cell
Code:
With Range("A1")
    .Parent.Parent.Colors(10) = .Interior.Color
    .Interior.ColorIndex = 10
End With
Of course that would change all colorindex 10 cells in the workbook
 
Upvote 0

Forum statistics

Threads
1,224,595
Messages
6,179,798
Members
452,943
Latest member
Newbie4296

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top