HEX: #C5B992
RGB: (197,185,146)
#C5B992 contains red, green and blue colors in about the same proportion. Web safe color of #C5B992 is #CCCC99 (or #CC9).
#C5B992 color RGB value is (197,185,146).
RGB: (197,185,146) (77%,73%,57%)
R 197 of 255 = 77%
G 185 of 255 = 73%
B 146 of 255 = 57%
R + G + B ~ 69%. #C5B992 is quite light color.
R + G + B =
197 + 185 + 146 = 528 (100%)
R 197 of 528 ~ 37.31%
G 185 of 528 ~ 35.04%
B 146 of 528 ~ 27.65%
#C5B992 color CMYK value is (0,6,26,23).
CMYK: (0,6,26,23) C0M6Y26K23 (0%,6%,26%,23%) (0.00/0.06/0.26/0.23)
C5 | B9 | 92 | |
---|---|---|---|
RGB | 197 | 185 | 146 |
HSL | 46° | 30.54% | 67.25% |
HSB/HSV | 46° | 25.89% | 77.25% |
CMYK | 0.00% | 6.09% | 25.89% |
22.75% |
HEX | C5 | B9 | 92 |
Decimal | 197 | 185 | 146 |
Binary | 11000101 | 10111001 | 10010010 |
Octal | 305 | 271 | 222 |
Examples of css and html codes for elements with #C5B992 color. Also use rgb(197,185,146) instead hex code.
.myTextColor { color: #C5B992; }
<p style="color:#C5B992">This sample text font color is #C5B992.</p>
This text font color is #C5B992.
.myBgColor { background-color: #C5B992; }
<div style="background-color:#C5B992">Inner text</div>
This div background color is #C5B992.
.myBorderColor { border: 1px solid #C5B992; }
<div style="border:3px solid #C5B992">Div</div>
This div border color is #C5B992.
.myOpacity80 { color: #C5B992; opacity: 0.8; }
<p style="color:#C5B992;opacity:0.8;">80%</p>
Text with #C5B992 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5B992;}
<p style="text-shadow: 3px 3px 1px #C5B992">Text here.</p>
This text has shadow with #C5B992 color.
.textShadow {text-shadow: 3px 3px 1px #C5B992, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5B992, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5B992 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5B992, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5B992, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5B992 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5B992; -webkit-box-shadow: 1px 1px 3px 2px #C5B992; box-shadow: 1px 1px 3px 2px #C5B992; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5B992; -webkit-box-shadow: 1px 1px 3px 2px #C5B992; box-shadow:1px 1px 3px 2px #C5B992;">
Div content here</div>
This text has color #C5B992 on black background.
This text has color #C5B992 on white background.
This text has black color on #C5B992 background.
This text has white color on #C5B992 background.