HEX: #C6BEA4
RGB: (198,190,164)
#C6BEA4 contains red, green and blue colors in about the same proportion. Web safe color of #C6BEA4 is #CCCC99 (or #CC9).
#C6BEA4 color RGB value is (198,190,164).
RGB: (198,190,164) (78%,75%,64%)
R 198 of 255 = 78%
G 190 of 255 = 75%
B 164 of 255 = 64%
R + G + B ~ 72%. #C6BEA4 is quite light color.
R + G + B =
198 + 190 + 164 = 552 (100%)
R 198 of 552 ~ 35.87%
G 190 of 552 ~ 34.42%
B 164 of 552 ~ 29.71%
#C6BEA4 color CMYK value is (0,4,17,22).
CMYK: (0,4,17,22) C0M4Y17K22 (0%,4%,17%,22%) (0.00/0.04/0.17/0.22)
C6 | BE | A4 | |
---|---|---|---|
RGB | 198 | 190 | 164 |
HSL | 46° | 22.97% | 70.98% |
HSB/HSV | 46° | 17.17% | 77.65% |
CMYK | 0.00% | 4.04% | 17.17% |
22.35% |
HEX | C6 | BE | A4 |
Decimal | 198 | 190 | 164 |
Binary | 11000110 | 10111110 | 10100100 |
Octal | 306 | 276 | 244 |
Examples of css and html codes for elements with #C6BEA4 color. Also use rgb(198,190,164) instead hex code.
.myTextColor { color: #C6BEA4; }
<p style="color:#C6BEA4">This sample text font color is #C6BEA4.</p>
This text font color is #C6BEA4.
.myBgColor { background-color: #C6BEA4; }
<div style="background-color:#C6BEA4">Inner text</div>
This div background color is #C6BEA4.
.myBorderColor { border: 1px solid #C6BEA4; }
<div style="border:3px solid #C6BEA4">Div</div>
This div border color is #C6BEA4.
.myOpacity80 { color: #C6BEA4; opacity: 0.8; }
<p style="color:#C6BEA4;opacity:0.8;">80%</p>
Text with #C6BEA4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6BEA4;}
<p style="text-shadow: 3px 3px 1px #C6BEA4">Text here.</p>
This text has shadow with #C6BEA4 color.
.textShadow {text-shadow: 3px 3px 1px #C6BEA4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6BEA4, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6BEA4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6BEA4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6BEA4, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6BEA4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6BEA4; -webkit-box-shadow: 1px 1px 3px 2px #C6BEA4; box-shadow: 1px 1px 3px 2px #C6BEA4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6BEA4; -webkit-box-shadow: 1px 1px 3px 2px #C6BEA4; box-shadow:1px 1px 3px 2px #C6BEA4;">
Div content here</div>
This text has color #C6BEA4 on black background.
This text has color #C6BEA4 on white background.
This text has black color on #C6BEA4 background.
This text has white color on #C6BEA4 background.