HEX: #C6BEBC
RGB: (198,190,188)
#C6BEBC contains red, green and blue colors in about the same proportion. Web safe color of #C6BEBC is #CCCCCC (or #CCC).
#C6BEBC color RGB value is (198,190,188).
RGB: (198,190,188) (78%,75%,74%)
R 198 of 255 = 78%
G 190 of 255 = 75%
B 188 of 255 = 74%
R + G + B ~ 76%. #C6BEBC is quite light color.
R + G + B =
198 + 190 + 188 = 576 (100%)
R 198 of 576 ~ 34.38%
G 190 of 576 ~ 32.99%
B 188 of 576 ~ 32.64%
#C6BEBC color CMYK value is (0,4,5,22).
CMYK: (0,4,5,22) C0M4Y5K22 (0%,4%,5%,22%) (0.00/0.04/0.05/0.22)
C6 | BE | BC | |
---|---|---|---|
RGB | 198 | 190 | 188 |
HSL | 12° | 8.06% | 75.69% |
HSB/HSV | 12° | 5.05% | 77.65% |
CMYK | 0.00% | 4.04% | 5.05% |
22.35% |
HEX | C6 | BE | BC |
Decimal | 198 | 190 | 188 |
Binary | 11000110 | 10111110 | 10111100 |
Octal | 306 | 276 | 274 |
Examples of css and html codes for elements with #C6BEBC color. Also use rgb(198,190,188) instead hex code.
.myTextColor { color: #C6BEBC; }
<p style="color:#C6BEBC">This sample text font color is #C6BEBC.</p>
This text font color is #C6BEBC.
.myBgColor { background-color: #C6BEBC; }
<div style="background-color:#C6BEBC">Inner text</div>
This div background color is #C6BEBC.
.myBorderColor { border: 1px solid #C6BEBC; }
<div style="border:3px solid #C6BEBC">Div</div>
This div border color is #C6BEBC.
.myOpacity80 { color: #C6BEBC; opacity: 0.8; }
<p style="color:#C6BEBC;opacity:0.8;">80%</p>
Text with #C6BEBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6BEBC;}
<p style="text-shadow: 3px 3px 1px #C6BEBC">Text here.</p>
This text has shadow with #C6BEBC color.
.textShadow {text-shadow: 3px 3px 1px #C6BEBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6BEBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6BEBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6BEBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6BEBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6BEBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6BEBC; -webkit-box-shadow: 1px 1px 3px 2px #C6BEBC; box-shadow: 1px 1px 3px 2px #C6BEBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6BEBC; -webkit-box-shadow: 1px 1px 3px 2px #C6BEBC; box-shadow:1px 1px 3px 2px #C6BEBC;">
Div content here</div>
This text has color #C6BEBC on black background.
This text has color #C6BEBC on white background.
This text has black color on #C6BEBC background.
This text has white color on #C6BEBC background.