doc

From Botnets.fr
Jump to navigation Jump to search

Lua error: Cannot create process: proc_open(/dev/null): failed to open stream: Operation not permitted


This template can be used to specify the foreground color of a span of text. Acceptable values are RGB hex codes, e.g. #C9E72A, or any of the web colors: red, blue, green, moccasin, darkorchid, etc. To set the background color of a span of text, use {{background color}}.

Usage

  • {{color|name of color or hex code of color|Text}}

For example:

  • {{color|red|Hello, world!}} → Hello, world!
  • {{color|#00F000|Hello, world!}} → Hello, world!

Performance considerations

The template generates an HTML span tag:

<syntaxhighlight lang="text" enclose="none"><span style="color:{{{1}}}">{{{2}}}</span></syntaxhighlight>

It runs at speeds in excess of 700 per second, and so is functionally identical to using the HTML markup directly.

Template data

This is the TemplateData documentation for this template used by VisualEditor and other tools.

See the monthly error report for this template.

TemplateData for Color

<templatedata> {

       "description": "The color template can be used to add a span of text with any given text color",
       "params": {
               "1": {
                       "label": "Color",
                       "description": "CSS name of color or hex code of color, e.g. 'red' or '#00F000'.",
                       "type": "string",
                       "required": true
               },
               "2": {
                       "label": "Text",
                       "description": "The string of text to be formatted in the desired color",
                       "type": "string",
                       "required": true
               }
       }

} </templatedata>

See also