How can I create custom colors beyond what comes with Word / Publ.

P

pennym

I need to use some hard to find colors that I can't replicate with the color
options in Word or Publisher.
 
D

Dawn Crosier

If you know a little VBA you can use the function of RGB to apply your
colors.

An example is:

Sub ChangeColor()
With ActiveDocument.Styles(wdStyleNormal).Font
.Color = RGB(255, 16, 100)
End With
End Sub

--
Dawn Crosier
Microsoft MVP
"Education Lasts a Lifetime"

This message is posted to a newsgroup. Please post replies and
questions to the newsgroup so that others can learn as well.
 
P

pennym

I don't know "a little VBA." But I've used the color modification options in
Publisher (the ones that change the RGB) and still can't get the colors I'm
looking to replicate. The colors are fluorescent orange and fluorescent green.
 
D

Dawn Crosier

Maybe you can find the RGB equivalent to what you are looking for at:

http://tx4.us/mo/moac-y.htm

--
Dawn Crosier
Microsoft MVP
"Education Lasts a Lifetime"

This message is posted to a newsgroup. Please post replies and
questions to the newsgroup so that others can learn as well.
 
B

Bob Buckland ?:-\)

Hi Penny,

Word and Publisher are 'limited' to 16 million colors. Fluorescene though would be an 'ink' limitation of the printer. That is,
most color printers are using 'matte' (flat finish) inks to produce the colors.

Reproduced 'fluorescent' colors are often not one solid color but a graphic with multiple shades. For fluorescent green, for
example, you can start with a lime green with RGB values of around 24,255,24 (among others). In printing, Fluorescent colors can be
achieved in offset rather than digital printing use specific inks. You may want to check with your local printshop. (Hexachrome
colors [6 'channel'] are used to support Fluorescent color printing.

Adding black background or borders will 'brighten' the green to appear more fluorescent.


======
I don't know "a little VBA." But I've used the color modification options in
Publisher (the ones that change the RGB) and still can't get the colors I'm
looking to replicate. The colors are fluorescent orange and fluorescent green. >>
--
Let us know if this helped you,

Bob Buckland ?:)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*

For Everyday MS Office tips to "use right away" -
http://microsoft.com/events/series/administrativetipsandtricks.mspx
 
Top