HEX: #C7BCCD
RGB: (199,188,205)
#C7BCCD contains red, green and blue colors in about the same proportion. Web safe color of #C7BCCD is #CCCCCC (or #CCC).
#C7BCCD color RGB value is (199,188,205).
RGB: (199,188,205) (78%,74%,80%)
R 199 of 255 = 78%
G 188 of 255 = 74%
B 205 of 255 = 80%
R + G + B ~ 77%. #C7BCCD is quite light color.
R + G + B =
199 + 188 + 205 = 592 (100%)
R 199 of 592 ~ 33.61%
G 188 of 592 ~ 31.76%
B 205 of 592 ~ 34.63%
#C7BCCD color CMYK value is (3,8,0,20).
CMYK: (3,8,0,20) C3M8Y0K20 (3%,8%,0%,20%) (0.03/0.08/0.00/0.20)
C7 | BC | CD | |
---|---|---|---|
RGB | 199 | 188 | 205 |
HSL | 279° | 14.53% | 77.06% |
HSB/HSV | 279° | 8.29% | 80.39% |
CMYK | 2.93% | 8.29% | 0.00% |
19.61% |
HEX | C7 | BC | CD |
Decimal | 199 | 188 | 205 |
Binary | 11000111 | 10111100 | 11001101 |
Octal | 307 | 274 | 315 |
Examples of css and html codes for elements with #C7BCCD color. Also use rgb(199,188,205) instead hex code.
.myTextColor { color: #C7BCCD; }
<p style="color:#C7BCCD">This sample text font color is #C7BCCD.</p>
This text font color is #C7BCCD.
.myBgColor { background-color: #C7BCCD; }
<div style="background-color:#C7BCCD">Inner text</div>
This div background color is #C7BCCD.
.myBorderColor { border: 1px solid #C7BCCD; }
<div style="border:3px solid #C7BCCD">Div</div>
This div border color is #C7BCCD.
.myOpacity80 { color: #C7BCCD; opacity: 0.8; }
<p style="color:#C7BCCD;opacity:0.8;">80%</p>
Text with #C7BCCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7BCCD;}
<p style="text-shadow: 3px 3px 1px #C7BCCD">Text here.</p>
This text has shadow with #C7BCCD color.
.textShadow {text-shadow: 3px 3px 1px #C7BCCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7BCCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7BCCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7BCCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7BCCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7BCCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7BCCD; -webkit-box-shadow: 1px 1px 3px 2px #C7BCCD; box-shadow: 1px 1px 3px 2px #C7BCCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7BCCD; -webkit-box-shadow: 1px 1px 3px 2px #C7BCCD; box-shadow:1px 1px 3px 2px #C7BCCD;">
Div content here</div>
This text has color #C7BCCD on black background.
This text has color #C7BCCD on white background.
This text has black color on #C7BCCD background.
This text has white color on #C7BCCD background.