Template:Color/doc: Difference between revisions
(Created page with "{{Documentation subpage}} <includeonly>{{high-use| 33,000+ }}</includeonly> <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> The quick '''[[Template:Colo...") |
No edit summary |
||
Line 19: | Line 19: | ||
</pre> | </pre> | ||
See: | See: Web colors, for a list of colors. A misspelled color name will not be reported, but will cause the text to remain as black text. | ||
=== Performance considerations === | === Performance considerations === | ||
The template merely uses a span tag: <code><span style="color:{{{1}}}">{{{2}}}</span></code>. It runs at speeds in excess of 700 per second, and so it is functionally identical to the longer span-tag markup. | The template merely uses a span tag: <code><span style="color:{{{1}}}">{{{2}}}</span></code>. It runs at speeds in excess of 700 per second, and so it is functionally identical to the longer span-tag markup. | ||
<includeonly> | <includeonly> |
Revision as of 18:06, 5 June 2013
The quick Template:Color can be used to add a span of text with any given text color, such as an RGB hex code, #C9E72A, or any of the web colors: red, blue, green, moccasin, or darkorchid, etc. The foreground text color is set, but to reset the background color, see: {{bg}}.
Usage
{{color|name of color or hex code of color|Text}}
For example:
{{color|red|Hello, world!}}
gives: Hello, world!
{{color|#00F000|Hello, world!}}
gives: Hello, world!
Wikitext generated:
<span style="color:{{{1|}}}">{{{2|}}}</span>
See: Web colors, for a list of colors. A misspelled color name will not be reported, but will cause the text to remain as black text.
Performance considerations
The template merely uses a span tag: <span style="color:{{{1}}}">{{{2}}}</span>
. It runs at speeds in excess of 700 per second, and so it is functionally identical to the longer span-tag markup.