CSS Color Chart: Gray Scale : Color « Reference « HTML / CSS

Home
HTML / CSS
1.CSS
2.CSS Controls
3.Form
4.IE Firefox
5.Layout
6.Marquee Attributes
7.Meta Tags
8.Microsoft Attributes
9.Object
10.Reference
11.Style Basics
12.Tags
13.Templates
14.XML
HTML / CSS » Reference » Color 
CSS Color Chart: Gray Scale
 

<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>Gray Scale</h2>
<table>
<tr>
<th>0% Red, Green, Blue</th>
<th>20% Red, Green, Blue</th>
<th>40% Red, Green, Blue</th>
<th>60% Red, Green, Blue</th>
<th>80% Red, Green, Blue</th>
<th>100% Red, Green, Blue</th>
</tr>

<tr><!-- Row -->
<td style="background-color: rgb(0%0%0%)">?/td>
<!-- Col -->
<td style="background-color: rgb(20%20%20%)">?/td>
<!-- Col -->
<td style="background-color: rgb(40%40%40%)">?/td>
<!-- Col -->
<td style="background-color: rgb(60%60%60%)">?/td>
<!-- Col -->
<td style="background-color: rgb(80%80%80%)">?/td>
<!-- Col -->
<td style="background-color: rgb(100%100%100%)">?/td>
<!-- Col -->
</tr>
</table>

<br>


</div>
</body>
</html>


           
         
  
Related examples in the same category
1.Color Names: 140 color names are listed alphabetically.
2.The Web Palette
3.HTML Color Names
4.Shades of Gray
5.Colors Sorted Alphabetically
6.Fixed Red value: #FF
7.Fixed Red value: #00
8.Colors are displayed combining: RED, GREEN, and BLUE light sources
9.CSS Color Chart: Pure Colors
10.CSS Color Chart: Mixture of Red and Green
11.CSS Color Chart: Mixtures of Blue and Red
12.CSS Color Chart: Mixtures of Blue and Green
13.CSS Color Chart:Mixtures of Red, Blue, and Green
14.A table of color names that are supported by most browsers
15.Cross Platform Colors
16.Color Names List
17.CSS2.1 colors and their corresponding decimal, percentage, and hexadecimal values.
18.color constant name
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.