HEX: #C7CECE
RGB: (199,206,206)
#C7CECE contains red, green and blue colors in about the same proportion. Web safe color of #C7CECE is #CCCCCC (or #CCC).
#C7CECE color RGB value is (199,206,206).
RGB: (199,206,206) (78%,81%,81%)
R 199 of 255 = 78%
G 206 of 255 = 81%
B 206 of 255 = 81%
R + G + B ~ 80%. #C7CECE is quite light color.
R + G + B =
199 + 206 + 206 = 611 (100%)
R 199 of 611 ~ 32.57%
G 206 of 611 ~ 33.72%
B 206 of 611 ~ 33.72%
#C7CECE color CMYK value is (3,0,0,19).
CMYK: (3,0,0,19) C3M0Y0K19 (3%,0%,0%,19%) (0.03/0.00/0.00/0.19)
C7 | CE | CE | |
---|---|---|---|
RGB | 199 | 206 | 206 |
HSL | 180° | 6.67% | 79.41% |
HSB/HSV | 180° | 3.40% | 80.78% |
CMYK | 3.40% | 0.00% | 0.00% |
19.22% |
HEX | C7 | CE | CE |
Decimal | 199 | 206 | 206 |
Binary | 11000111 | 11001110 | 11001110 |
Octal | 307 | 316 | 316 |
Examples of css and html codes for elements with #C7CECE color. Also use rgb(199,206,206) instead hex code.
.myTextColor { color: #C7CECE; }
<p style="color:#C7CECE">This sample text font color is #C7CECE.</p>
This text font color is #C7CECE.
.myBgColor { background-color: #C7CECE; }
<div style="background-color:#C7CECE">Inner text</div>
This div background color is #C7CECE.
.myBorderColor { border: 1px solid #C7CECE; }
<div style="border:3px solid #C7CECE">Div</div>
This div border color is #C7CECE.
.myOpacity80 { color: #C7CECE; opacity: 0.8; }
<p style="color:#C7CECE;opacity:0.8;">80%</p>
Text with #C7CECE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7CECE;}
<p style="text-shadow: 3px 3px 1px #C7CECE">Text here.</p>
This text has shadow with #C7CECE color.
.textShadow {text-shadow: 3px 3px 1px #C7CECE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7CECE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7CECE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7CECE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7CECE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7CECE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7CECE; -webkit-box-shadow: 1px 1px 3px 2px #C7CECE; box-shadow: 1px 1px 3px 2px #C7CECE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7CECE; -webkit-box-shadow: 1px 1px 3px 2px #C7CECE; box-shadow:1px 1px 3px 2px #C7CECE;">
Div content here</div>
This text has color #C7CECE on black background.
This text has color #C7CECE on white background.
This text has black color on #C7CECE background.
This text has white color on #C7CECE background.