CSS Color Chart: Mixture of Red and Green
<html>
<head>
<title>CSS Color Chart</title>
<meta name="description" content="">
<meta name="keywords" content="">
<style type="text/css">
body {background-color: rgb(60%,60%,60%); color: rgb(0%,0%,0%);}
h1, h2 {color: rgb(80%80%80%)}
th {background-color: rgb(65%65%65%)}
</style>
</head>
<body>
<div align="center">
<h1>"Browser-Safe" Color Mixing Chart</h1>
<h2>Mixture of Red and Green</h2>
<br>
<table border="3" cellpadding="15" width="90%">
<tr>
<th>Color Mixture</th>
<th>0% Red</th>
<th>20% Red</th>
<th>40% Red</th>
<th>60% Red</th>
<th>80% Red</th>
<th>100% Red</th>
</tr>
<tr>
<th>0% Green</th>
<td style="background-color: rgb(0%0%0%)">?/td>
<!-- Col 1 -->
<td style="background-color: rgb(20%0%0%)">?/td>
<!-- Col 2 -->
<td style="background-color: rgb(40%0%0%)">?/td>
<!-- Col 3 -->
<td style="background-color: rgb(60%0%0%)">?/td>
<!-- Col 4 -->
<td style="background-color: rgb(80%0%0%)">?/td>
<!-- Col 5 -->
<td style="background-color: rgb(100%0%0%)">?/td>
<!-- Col 6 -->
</tr>
<tr><!-- Row 6 -->
<th>20% Green</th>
<td style="background-color: rgb(0%20%0%)">?/td>
<!-- Col 1 -->
<td style="background-color: rgb(20%20%0%)">?/td>
<!-- Col 2 -->
<td style="background-color: rgb(40%20%0%)">?/td>
<!-- Col 3 -->
<td style="background-color: rgb(60%20%0%)">?/td>
<!-- Col 4 -->
<td style="background-color: rgb(80%20%0%)">?/td>
<!-- Col 5 -->
<td style="background-color: rgb(100%20%0%)">?/td>
<!-- Col 6 -->
</tr>
<tr><!-- Row 6 -->
<th>40% Green</th>
<td style="background-color: rgb(0%40%0%)">?/td>
<!-- Col 1 -->
<td style="background-color: rgb(20%40%0%)">?/td>
<!-- Col 2 -->
<td style="background-color: rgb(40%40%0%)">?/td>
<!-- Col 3 -->
<td style="background-color: rgb(60%40%0%)">?/td>
<!-- Col 4 -->
<td style="background-color: rgb(80%40%0%)">?/td>
<!-- Col 5 -->
<td style="background-color: rgb(100%40%0%)">?/td>
<!-- Col 6 -->
</tr>
<tr><!-- Row 6 -->
<th>60% Green</th>
<td style="background-color: rgb(0%60%0%)">?/td>
<!-- Col 1 -->
<td style="background-color: rgb(20%60%0%)">?/td>
<!-- Col 2 -->
<td style="background-color: rgb(40%60%0%)">?/td>
<!-- Col 3 -->
<td style="background-color: rgb(60%60%0%)">?/td>
<!-- Col 4 -->
<td style="background-color: rgb(80%60%0%)">?/td>
<!-- Col 5 -->
<td style="background-color: rgb(100%60%0%)">?/td>
<!-- Col 6 -->
</tr>
<tr><!-- Row 6 -->
<th>80% Green</th>
<td style="background-color: rgb(0%80%0%)">?/td>
<!-- Col 1 -->
<td style="background-color: rgb(20%80%0%)">?/td>
<!-- Col 2 -->
<td style="background-color: rgb(40%80%0%)">?/td>
<!-- Col 3 -->
<td style="background-color: rgb(60%80%0%)">?/td>
<!-- Col 4 -->
<td style="background-color: rgb(80%80%0%)">?/td>
<!-- Col 5 -->
<td style="background-color: rgb(100%80%0%)">?/td>
<!-- Col 6 -->
</tr>
<tr><!-- Row 6 -->
<th>100% Green</th>
<td style="background-color: rgb(0%100%0%)">?/td>
<!-- Col 1 -->
<td style="background-color: rgb(20%100%0%)">?/td>
<!-- Col 2 -->
<td style="background-color: rgb(40%100%0%)">?/td>
<!-- Col 3 -->
<td style="background-color: rgb(60%100%0%)">?/td>
<!-- Col 4 -->
<td style="background-color: rgb(80%100%0%)">?/td>
<!-- Col 5 -->
<td style="background-color: rgb(100%100%0%)">?/td>
<!-- Col 6 -->
</tr>
</table>
</div>
</body>
</html>
Related examples in the same category