Template:ItemColor/doc
From Project: Gorgon Wiki
Contents
Description
Returns the inline-css-style to make the color the correct one for an item of the given rarity. Used in Template:ITEM infobox and Template:ItemRarity; it is unlikely you will want to use this template directly, though in some cases it may be useful where you wish to create a similar effect to Template:ItemRarity, but with additional inline styles or without the linking behavior in that template.
Syntax
- Single parameter for use on standard "parchment color" background:
{{ItemColor|rarity}}
- Two parameters for use in wikitables, ITEM infoboxes, or other light/dark backgrounds:
{{ItemColor|rarity|backgroundShade}}
Parameters
- First parameter (required): The rarity whose color you wish to express. This can be any of:
- The full word description of the rarity: Common, Uncommon, Rare, Exceptional, Epic, Legendary (capitalized or not)
- The number of mods on an item of that rarity: 0, 1, 2, 3, 4, 5
- A one letter abbreviation for that rarity: c, u, r, x, p, l (capitalized or not)
- Any other values default to the color grey.
- Second parameter (optional): Used to select a palette with better contrast against the background color. Possible parameters "Light" (or "L") or "Dark" (or "D"), captialized or not. Leave this parameter out for a palette designed for the default "parchment color" wiki background.
Examples
Code | Result |
---|---|
<span style="{{ItemColor|Legendary}}">This is a legendary item.</span> |
This is a legendary item. |
<span style="{{ItemColor|4|Light}}">And this one has four mods.</span> |
And this one has four mods. |
<span style="font-family:Courier;{{ItemColor|L|Dark}}font-size:24px;">Can also be combined with other inline css styles.</span> |
Can also be combined with other inline css styles. |