From Brotato Wiki
Creates text with the specific color. Makes it possible to easily add/edit coloured text from the visual editor.
The template uses a basic switch, so it's easy to add new color options.
Examples
Preview | Code (Shorthand) | Code (Longform) | Hex | Name in the code |
---|---|---|---|---|
■ Green (Positive Stat) | {{Color|green|TEXT}}
|
{{Color|color=green|text=TEXT}}
|
#00FF00
|
Utils.POS_COLOR_STR
|
■ Red (Negative Stat) | {{Color|red|TEXT}}
|
{{Color|color=red|text=TEXT}}
|
red
|
Utils.NEG_COLOR_STR
|
■ Pastel Green (Good Text) | {{Color|pastelgreen|TEXT}}
|
{{Color|color=pastelgreen|text=TEXT}}
|
#66B966
|
n/a
|
■ Pastel Red (Bad Text) | {{Color|pastelred|TEXT}}
|
{{Color|color=pastelred|text=TEXT}}
|
#BF5959
|
n/a
|
■ Cream | {{Color|cream|TEXT}}
|
{{Color|color=cream|text=TEXT}}
|
#EAE2B0
|
n/a
|
■ Gray / Grey | {{Color|gray|TEXT}}
|
{{Color|color=grey|text=TEXT}}
|
grey
|
n/a
|
■ Tier 1 (I) | {{Color|tier1|TEXT}}
|
{{Color|color=tier1|text=TEXT}}
|
#C8C8C8
|
n/a
|
■ Tier 2 (II) | {{Color|tier2|TEXT}}
|
{{Color|color=tier2|text=TEXT}}
|
#4A9BD1
|
ItemService.TIER_UNCOMMON_COLOR
|
■ Tier 3 (III) | {{Color|tier3|TEXT}}
|
{{Color|color=tier3|text=TEXT}}
|
#AD5AFF
|
ItemService.TIER_RARE_COLOR
|
■ Tier 4 (IV) | {{Color|tier4|TEXT}}
|
{{Color|color=tier4|text=TEXT}}
|
#FF3B3B
|
ItemService.TIER_LEGENDARY_COLOR
|
■ Curse | {{Color|curse|TEXT}}
|
{{Color|color=curse|text=TEXT}}
|
#A30000
|
Utils.CURSE_COLOR
|
■ Charm | {{Color|charm|TEXT}}
|
{{Color|color=charm|text=TEXT}}
|
#9BC6DD
|
Utils.CHARM_COLOR
|
■ DLC | {{Color|dlc|TEXT}}
|
{{Color|color=dlc|text=TEXT}}
|
#5D6A9F
|
n/a
|
No description.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Color | color 1 | Supported: green, red, cream, tier1, tier2, tier3, tier4, pastelgreen, pastelred, curse
| String | required |
Text | text 2 | no description | String | required |