Toggle menu
15
236
74
27.6K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 22:04, 22 February 2025 by Prd (talk | contribs) (Created page with "{{Documentation subpage}} {{Lua|Module:HexShade}} <noinclude>:''This is the documentation of Template:HexShade.''</noinclude> This template takes an hex color code as first argument and a lightness between 0 and 1 as second argument, and returns a color with the same hue and saturation as the initial color but with its lightness overriden by the second argument. ;Syntax : <code><nowiki>{{</nowiki>HexShade|</code>''Hex''<code>|</code>''L''<code><nowiki>}}</nowiki></c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This is the documentation of Template:HexShade.

This template takes an hex color code as first argument and a lightness between 0 and 1 as second argument, and returns a color with the same hue and saturation as the initial color but with its lightness overriden by the second argument.

Syntax
{{HexShade|Hex|L}}
To lighten the color to L
Hex is a 6-character hexadecimal color code (this template currently cannot handle 3-character), which can have a leading '#'
L is a number between 0 and 1 expressing the lightness
{{HexShade|Hex|L|#}}
Same as above, but automatically adds a leading #
Hex is a 6-character hexadecimal color code (this template currently cannot handle 3-character), which can have a leading '#'
L is a number between 0 and 1 expressing the lightness
Examples
Code Result

{{colorbox|#{{HexShade|FFEB00|0.0}}}}
{{colorbox|#{{HexShade|FFEB00|0.1}}}}
{{colorbox|#{{HexShade|FFEB00|0.2}}}}
{{colorbox|#{{HexShade|FFEB00|0.3}}}}
{{colorbox|#{{HexShade|FFEB00|0.4}}}}
{{colorbox|#{{HexShade|FFEB00|0.5}}}}
{{colorbox|#{{HexShade|FFEB00|0.6}}}}
{{colorbox|#{{HexShade|FFEB00|0.7}}}}
{{colorbox|#{{HexShade|FFEB00|0.8}}}}
{{colorbox|#{{HexShade|FFEB00|0.9}}}}
{{colorbox|#{{HexShade|FFEB00|1.0}}}}

 
 
 
 
 
 
 
 
 
 
 

{{colorbox|#{{HexShade|FFEB00}}}}
{{colorbox|{{HexShade|FFEB00||#}}}}
Color alone (does nothing)
 
{{colorbox|#{{HexShade|FFEB00|0.8}}}}
{{colorbox|{{HexShade|FFEB00|0.8|#}}}}
Color and lightness
 
{{colorbox|#{{HexShade|#FFEB00|0.8}}}}
{{colorbox|{{HexShade|#FFEB00|0.8|#}}}}
Color and lightness, with leading #
 
{{colorbox|#{{HexShade|{{party color|Independent Democratic Action}}|0.8}}}}
{{colorbox|{{HexShade|{{party color|Independent Democratic Action}}|0.8|#}}}}
Color and lightness, with leading # from {{party color}}