HEX: #C7BBBE
RGB: (199,187,190)
#C7BBBE contains red, green and blue colors in about the same proportion. Web safe color of #C7BBBE is #CCCCCC (or #CCC).
#C7BBBE color RGB value is (199,187,190).
RGB: (199,187,190) (78%,73%,75%)
R 199 of 255 = 78%
G 187 of 255 = 73%
B 190 of 255 = 75%
R + G + B ~ 75%. #C7BBBE is quite light color.
R + G + B =
199 + 187 + 190 = 576 (100%)
R 199 of 576 ~ 34.55%
G 187 of 576 ~ 32.47%
B 190 of 576 ~ 32.99%
#C7BBBE color CMYK value is (0,6,5,22).
CMYK: (0,6,5,22) C0M6Y5K22 (0%,6%,5%,22%) (0.00/0.06/0.05/0.22)
C7 | BB | BE | |
---|---|---|---|
RGB | 199 | 187 | 190 |
HSL | 345° | 9.68% | 75.69% |
HSB/HSV | 345° | 6.03% | 78.04% |
CMYK | 0.00% | 6.03% | 4.52% |
21.96% |
HEX | C7 | BB | BE |
Decimal | 199 | 187 | 190 |
Binary | 11000111 | 10111011 | 10111110 |
Octal | 307 | 273 | 276 |
Examples of css and html codes for elements with #C7BBBE color. Also use rgb(199,187,190) instead hex code.
.myTextColor { color: #C7BBBE; }
<p style="color:#C7BBBE">This sample text font color is #C7BBBE.</p>
This text font color is #C7BBBE.
.myBgColor { background-color: #C7BBBE; }
<div style="background-color:#C7BBBE">Inner text</div>
This div background color is #C7BBBE.
.myBorderColor { border: 1px solid #C7BBBE; }
<div style="border:3px solid #C7BBBE">Div</div>
This div border color is #C7BBBE.
.myOpacity80 { color: #C7BBBE; opacity: 0.8; }
<p style="color:#C7BBBE;opacity:0.8;">80%</p>
Text with #C7BBBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7BBBE;}
<p style="text-shadow: 3px 3px 1px #C7BBBE">Text here.</p>
This text has shadow with #C7BBBE color.
.textShadow {text-shadow: 3px 3px 1px #C7BBBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7BBBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7BBBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7BBBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7BBBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7BBBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7BBBE; -webkit-box-shadow: 1px 1px 3px 2px #C7BBBE; box-shadow: 1px 1px 3px 2px #C7BBBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7BBBE; -webkit-box-shadow: 1px 1px 3px 2px #C7BBBE; box-shadow:1px 1px 3px 2px #C7BBBE;">
Div content here</div>
This text has color #C7BBBE on black background.
This text has color #C7BBBE on white background.
This text has black color on #C7BBBE background.
This text has white color on #C7BBBE background.