Jump to content

Requests for technical support from the VASP team should be posted in the VASP Forum.

Template:C: Difference between revisions

From VASP Wiki
Singraber (talk | contribs)
mNo edit summary
No edit summary
 
Line 1: Line 1:
{{#switch: {{{1}}}
{{#switch: {{{1}}}
  | vcyan    = <span style="color:#2FB5AB">{{{2}}}</span>
  | vcyan    = <span style="color:var(--vasp-cyan)">{{{2}}}</span>
  | vgrey    = <span style="color:#808080">{{{2}}}</span>
  | vgrey    = <span style="color:var(--vasp-grey)">{{{2}}}</span>
  | vblue    = <span style="color:#2C68FC">{{{2}}}</span>
  | vblue    = <span style="color:var(--vasp-blue)">{{{2}}}</span>
  | vred    = <span style="color:#A82C35">{{{2}}}</span>
  | vred    = <span style="color:var(--vasp-red)">{{{2}}}</span>
  | vpurple  = <span style="color:#4C265F">{{{2}}}</span>
  | vpurple  = <span style="color:var(--vasp-purple)">{{{2}}}</span>
  | #default = <span style="color:{{{1}}}">{{{2}}}</span>
  | #default = <span style="color:{{{1}}}">{{{2}}}</span>
}}<noinclude>
}}<noinclude>

Latest revision as of 13:10, 13 April 2026

{{{2}}}

Purpose

This template colors text, given either predefined color names or hex values.

Parameters

 {{C|<color>|<text>}}
  • color: One of vcyan,vgrey,vblue,vred,vpurple, selects the color from the palette demonstrated in the examples below. Alternatively, pass a RGB color given in hex, e.g. #A8762C.
  • text: The text to be colored.

Examples

 {{C|vcyan|Text colored in "vcyan".}}

 {{C|vgrey|Text colored in "vgrey".}}

 {{C|vblue|Text colored in "vblue".}}

 {{C|vred|Text colored in "vred".}}

 {{C|vpurple|Text colored in "vpurple".}}

 {{C|#A8762C|Text colored in "#A8762C".}}

will produce

Text colored in "vcyan".

Text colored in "vgrey".

Text colored in "vblue".

Text colored in "vred".

Text colored in "vpurple".

Text colored in "#A8762C".