Modding:Colors & Object Rendering

From Caves of Qud Wiki
Revision as of 18:24, 2 July 2019 by Sol (talk | contribs) (wrong header level)
Jump to navigation Jump to search
This page is about modding. See the modding overview for an abstract on modding.
This page is about modding. See the modding overview for an abstract on modding.

Overview

Colors are defined in display.text.

Each color is defined by a single letter. &<code> means to set the foreground color, ^<code> means to set the background color.

Only the preset letter codes are allowed, adding new colors isn't totally trivial at the moment.

Code Color Hex
r dark red #a64a2e
R bright red #d74200
o dark orange #f15f22
O bright orange #e99f10
w brown #98875f
W yellow #cfc041
g dark green #009403
G bright green #00c420
b dark blue #0048bd
B bright blue #0096ff
c dark cyan #40a4b9
C bright cyan #77bfcf
m dark magenta #b154cf
M bright magenta #da5bd6
k black #0f3b3a
K dark grey #155352
y bright grey #b1c9c3
Y white #FFFFFF

In XML files, such as ObjectBlueprints.xml, the ampersand (&) must be replaced by the encoded ampersand (&amp;)

Prefix Text Xml
Foreground &<code> &amp;<code>
Background ^<code> ^<code>

Render Part

ColorString contains the foreground and (optionally) the background string for the ascii and tiles. Examples: &B or &B^r

DetailColor changes the "third" color used only for tiles, not the ascii. DetailColor is always just a single character. Example: g

So ColorString="&M^g" would be foreground bright magenta with a background color of green.

TileColor overrides ColorString when tiles are being used.

If you want to color an item's display name, you enter color codes directly in the display name itself, for example the beaded bracelet:

<part Name="Render" DisplayName="&amp;Cb&amp;Be&amp;ba&amp;cd&amp;Ce&amp;Bd&amp;y bracelet" ColorString="&amp;C"></part>

Additional Notes

Most default text in the game is colored with the bright grey (&y) color, so you'll often see an &y at the end of strings to reset the color back to normal.

For help formatting a string with colors, check out the super-useful qud-colorgen utility (created by crayon).

See Also