List of Colors with Maximized Red

This page uses a Hashtag List to show all standardized color names supported by web browsers.   The Row Template includes Hashtag Markup to Set a Local Template variable.   Every Hex Color is recalculated with the maximum value for Red, leaving Green and Blue unchanged.   The maximum Hex value is FF, or 255 in decimal.
Color Name Hex Red Green Blue
  Pink — MAX RED! #ffc0cb 255 192 203
  LightPink — MAX RED! #ffb6c1 255 182 193
  HotPink — MAX RED! #ff69b4 255 105 180
  DeepPink — MAX RED! #ff1493 255 20 147
  PaleVioletRed — MAX RED! #ff7093 255 112 147
  MediumVioletRed — MAX RED! #ff1585 255 21 133
  LightSalmon — MAX RED! #ffa07a 255 160 122



Processed this Hashtag Markup:
<# start list for colors; #>

<# start header #>
<table class="table table-striped table-hover">
	<thead>
	<tr>
		<th>Color</th>
		<th>Name</th>
		<th>Hex</th>
		<th class="text-right">Red</th>
		<th class="text-right">Green</th>
		<th class="text-right">Blue</th>
	</tr>
	</thead>
<# end header #>

<# start row #>
	<# set max_red to "#ff<# g as hex #><# b as hex #>"; #>
	<tr>
		<td style="background-color:<# max_red #>"> </td>
		<td><# name #> — MAX RED!</td>
		<td class="monospace"><# max_red #></td>
		<td class="text-right">255</td>
		<td class="text-right"><# g #></td>
		<td class="text-right"><# b #></td>
	</tr>
<# end row #>

<# start footer #>
</table>
<# end footer #>

<# no results #>
<# redirect to "/lists/purge?land=process-template"; #>
<# end no results #>

<# end list #>

The Hashtag Markup Language provides List Templates to process a series of Records.  

The examples in this section cover the various List Directives, and demonstrate the capabilities of Hashtag Markup in List Templates.