====== Color Text ======
[[doku>plugin:color|Color Text Plugin]]
Place this code sample in your playground:
text
text
text
text
text
text
and you will see something like this:
text
text
text
text
text
text
The foreground or background color specification can be any valid CSS color specification. Beware that some older browsers will not recognise all color specs in the latest CSS version.
If you use a color specification that contains a slash (''/''), you must use a colon ('':'') to separate the foreground and background color specs.
The precise syntax is as follows. Square brackets (''[]'') indicate optional parts, and should //not// be included literally:
⟨text⟩
⟨text⟩
You //must// use the second form if either color spec includes a slash.
Note that in that case, the colon separater ('':'') is mandatory.
No valid color spec including a colon is known at this time, but if you need to use one in the future, you //must// use the first form. This plugin does not provide a way to combine these.
The result is ⟨text⟩ shown with foreground color ⟨fg-color⟩ and background color ⟨bg-color⟩. If either color is omitted or empty, the foreground or background color of the surrounding text is used.
Example – note the mandatory colon here:
some faded dark green semi-transparent text
Harmless restriction:
This plugin now allows any color specification not containing single or double quotes or any of the symbols ''%%< > & ; %%''. It does not try to check if the specification is valid CSS. This is to accommodate the CSS 4 color specifications, as well as any future color specifications – so long as they do not use any of the “forbidden” characters.
For a reference of usable color specifications, see
[[https://developer.mozilla.org/en-US/docs/Web/CSS/color_value|the color page]] at developer.mozilla.org.
Beware that not all color specifications work on all browsers.
See the bottom of the referenced page for more information, or
check [[https://caniuse.com/|Can I Use]] if in doubt.
* The plugin works by wrapping contents in a %%%% element with a suitable %%style%% attribute. Therefore, you cannot wrap it around block level items such as headers, lists, and tables.
* You cannot use it //inside// headers either, since [[faq:headerlinks|you can't use wiki syntax]] within a header.
* The use of two or more separators (slashes in the first syntax, colons in the second) within %%''''%% results in undefined behaviour.