HEX: #C7CBCB
RGB: (199,203,203)
#C7CBCB contains red, green and blue colors in about the same proportion. Web safe color of #C7CBCB is #CCCCCC (or #CCC).
#C7CBCB color RGB value is (199,203,203).
RGB: (199,203,203) (78%,80%,80%)
R 199 of 255 = 78%
G 203 of 255 = 80%
B 203 of 255 = 80%
R + G + B ~ 79%. #C7CBCB is quite light color.
R + G + B =
199 + 203 + 203 = 605 (100%)
R 199 of 605 ~ 32.89%
G 203 of 605 ~ 33.55%
B 203 of 605 ~ 33.55%
#C7CBCB color CMYK value is (2,0,0,20).
CMYK: (2,0,0,20) C2M0Y0K20 (2%,0%,0%,20%) (0.02/0.00/0.00/0.20)
C7 | CB | CB | |
---|---|---|---|
RGB | 199 | 203 | 203 |
HSL | 180° | 3.70% | 78.82% |
HSB/HSV | 180° | 1.97% | 79.61% |
CMYK | 1.97% | 0.00% | 0.00% |
20.39% |
HEX | C7 | CB | CB |
Decimal | 199 | 203 | 203 |
Binary | 11000111 | 11001011 | 11001011 |
Octal | 307 | 313 | 313 |
Examples of css and html codes for elements with #C7CBCB color. Also use rgb(199,203,203) instead hex code.
.myTextColor { color: #C7CBCB; }
<p style="color:#C7CBCB">This sample text font color is #C7CBCB.</p>
This text font color is #C7CBCB.
.myBgColor { background-color: #C7CBCB; }
<div style="background-color:#C7CBCB">Inner text</div>
This div background color is #C7CBCB.
.myBorderColor { border: 1px solid #C7CBCB; }
<div style="border:3px solid #C7CBCB">Div</div>
This div border color is #C7CBCB.
.myOpacity80 { color: #C7CBCB; opacity: 0.8; }
<p style="color:#C7CBCB;opacity:0.8;">80%</p>
Text with #C7CBCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7CBCB;}
<p style="text-shadow: 3px 3px 1px #C7CBCB">Text here.</p>
This text has shadow with #C7CBCB color.
.textShadow {text-shadow: 3px 3px 1px #C7CBCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7CBCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7CBCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7CBCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7CBCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7CBCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7CBCB; -webkit-box-shadow: 1px 1px 3px 2px #C7CBCB; box-shadow: 1px 1px 3px 2px #C7CBCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7CBCB; -webkit-box-shadow: 1px 1px 3px 2px #C7CBCB; box-shadow:1px 1px 3px 2px #C7CBCB;">
Div content here</div>
This text has color #C7CBCB on black background.
This text has color #C7CBCB on white background.
This text has black color on #C7CBCB background.
This text has white color on #C7CBCB background.