Template:Color: Difference between revisions
From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
m (Text replacement - ";background:{{{bg|none}}}" to ";{{#if:{{{darkcolor|}}}|--darkcolor:{{{darkcolor}}};}}{{#if:{{{bg|}}}|background:{{{bg}}};}}{{#if:{{{darkbg|}}}|--darkbg:{{{darkbg}}};}}") |
mNo edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<span {{#if:{{{class|}}}|class="{{{class}}}"}} style="color:{{{1|unset}}};{{#if:{{{dark|}}}|--darkcolor:{{{dark}}};}}{{#if:{{{bg|}}}|background:{{{bg}}};}}{{#if:{{{darkbg|}}}|--darkbg:{{{darkbg}}};}}">{{{2|}}}</span><noinclude> | |||
== Usage == | == Usage == | ||
<code><nowiki>{{color|green|Text goes here}}</nowiki></code> | <code><nowiki>{{color|green|Text goes here}}</nowiki></code> | ||
Line 8: | Line 8: | ||
== About == | == About == | ||
Changes the color of some text from the default. | Changes the color of some text from the default. You can use a color name or a hexadecimal, but if it's hex be sure to include a <code>#</code> before the alphanumeric sequence. | ||
=== Parameters === | |||
;Required | |||
*<code>1</code> - The text color. | |||
*<code>2</code> - The text. | |||
;Optional | |||
*<code>bg</code> - The background color. | |||
*<code>dark</code> - The text color in dark mode, if different. | |||
*<code>darkbg</code> - The background color in dark mode, if different. | |||
*<code>class</code> - One or more classes to apply to the <tt>span</tt> element. | |||
== See also == | == See also == |
Latest revision as of 18:39, March 11, 2025
Usage
{{color|green|Text goes here}}
- Text goes here
{{color|green|bg=orange|Text goes here}}
- Text goes here
About
Changes the color of some text from the default. You can use a color name or a hexadecimal, but if it's hex be sure to include a #
before the alphanumeric sequence.
Parameters
- Required
1
- The text color.2
- The text.
- Optional
bg
- The background color.dark
- The text color in dark mode, if different.darkbg
- The background color in dark mode, if different.class
- One or more classes to apply to the span element.