/**
 * Set Span element dim style.
 *
 * @return self Returns instance of the Span element class.
 *
 * @access public
 */
public function dim(): self

Examples

Set dim style using fluent interface

use function Thermage\span;
use function Thermage\render;

// ...

render( 
  span('Stay RAD!')->dim()
);

Set dim style using magic classes pipeline

use function Thermage\span;
use function Thermage\render;

// ...

render( 
  span('Stay RAD!', 'dim')
);

Set dim style using shortcodes

use function Thermage\span;
use function Thermage\render;

// ...

render( 
  span('[dim]Stay RAD![/dim]')
);
Terminal
$ php thermage.php
Stay RAD!