HEX: #C6CCCC
RGB: (198,204,204)
#C6CCCC contains red, green and blue colors in about the same proportion. Web safe color of #C6CCCC is #CCCCCC (or #CCC).
#C6CCCC color RGB value is (198,204,204).
RGB: (198,204,204)
(78%, 80%, 80%)
R 198 of 255 = 78%
G 204 of 255 = 80%
B 204 of 255 = 80%
R + G + B ~ 79%. #C6CCCC is quite light color.
R + G + B = 198 + 204 + 204 = 606 (100%)
R 198 of 606 ~ 32.67%
G 204 of 606 ~ 33.66%
B 204 of 606 ~ 33.66'%
#C6CCCC color CMYK value is (3,0,0,20).
CMYK: (3,0,0,20)
C3M0Y0K20 (3%, 0%, 0%, 20%)
(0.03 / 0.00 / 0.00 / 0.20)
Color #C6CCCC in popluar color models
C6 | CC | CC | |
---|---|---|---|
RGB | 198 | 204 | 204 |
HSL | 180° | 5.56% | 78.82% |
HSB/HSV | 180° | 2.94% | 80.00% |
CMYK | 2.94% | 0.00% | 0.00% |
20.00% |
Color #C6CCCC in popluar number systems.
HEX | C6 | CC | CC |
Decimal | 198 | 204 | 204 |
Binary | 11000110 | 11001100 | 11001100 |
Octal | 306 | 314 | 314 |
Shades of #C6CCCC
Tints of #C6CCCC
Examples of css and html codes for elements with #C6CCCC color. Also use rgb(198,204,204) instead hex code.
.myTextColor { color: #C6CCCC; }
<p style="color:#C6CCCC">This sample text font color is #C6CCCC.</p>
This text font color is #C6CCCC.
.myBgColor { background-color: #C6CCCC; }
<div style="background-color:#C6CCCC">Inner text</div>
This div background color is #C6CCCC.
.myBorderColor { border: 1px solid #C6CCCC; }
<div style="border:3px solid #C6CCCC">Div</div>
This div border color is #C6CCCC.
.myOpacity80 { color: #C6CCCC; opacity: 0.8; }
<p style="color:#C6CCCC;opacity:0.8;">80%</p>
Text with #C6CCCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6CCCC;}
<p style="text-shadow: 3px 3px 1px #C6CCCC">Text here.</p>
This text has shadow with #C6CCCC color.
.textShadow {text-shadow: 3px 3px 1px #C6CCCC', 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6CCCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6CCCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6CCCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6CCCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6CCCC and red colors in old Internet Explorer.
/* css code */
.divShadow
{
-moz-box-shadow: 1px 1px 3px 2px #C6CCCC;
-webkit-box-shadow: 1px 1px 3px 2px #C6CCCC;
box-shadow: 1px 1px 3px 2px #C6CCCC;
}
/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #C6CCCC; -webkit-box-shadow: 1px 1px 3px 2px #C6CCCC; box-shadow:1px 1px 3px 2px #C6CCCC;">
Div content here
</div>
This text has color #C6CCCC on black background.
This text has color #C6CCCC on white background.
This text has black color on #C6CCCC background.
This text has white color on #C6CCCC background.