HEX: #C5BE89
RGB: (197,190,137)
#C5BE89 contains mainly red and green colors. Web safe color of #C5BE89 is #CCCC99 (or #CC9).
#C5BE89 color RGB value is (197,190,137).
RGB: (197,190,137) (77%,75%,54%)
R 197 of 255 = 77%
G 190 of 255 = 75%
B 137 of 255 = 54%
R + G + B ~ 69%. #C5BE89 is quite light color.
R + G + B =
197 + 190 + 137 = 524 (100%)
R 197 of 524 ~ 37.6%
G 190 of 524 ~ 36.26%
B 137 of 524 ~ 26.15%
#C5BE89 color CMYK value is (0,4,30,23).
CMYK: (0,4,30,23) C0M4Y30K23 (0%,4%,30%,23%) (0.00/0.04/0.30/0.23)
C5 | BE | 89 | |
---|---|---|---|
RGB | 197 | 190 | 137 |
HSL | 53° | 34.09% | 65.49% |
HSB/HSV | 53° | 30.46% | 77.25% |
CMYK | 0.00% | 3.55% | 30.46% |
22.75% |
HEX | C5 | BE | 89 |
Decimal | 197 | 190 | 137 |
Binary | 11000101 | 10111110 | 10001001 |
Octal | 305 | 276 | 211 |
Examples of css and html codes for elements with #C5BE89 color. Also use rgb(197,190,137) instead hex code.
.myTextColor { color: #C5BE89; }
<p style="color:#C5BE89">This sample text font color is #C5BE89.</p>
This text font color is #C5BE89.
.myBgColor { background-color: #C5BE89; }
<div style="background-color:#C5BE89">Inner text</div>
This div background color is #C5BE89.
.myBorderColor { border: 1px solid #C5BE89; }
<div style="border:3px solid #C5BE89">Div</div>
This div border color is #C5BE89.
.myOpacity80 { color: #C5BE89; opacity: 0.8; }
<p style="color:#C5BE89;opacity:0.8;">80%</p>
Text with #C5BE89 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5BE89;}
<p style="text-shadow: 3px 3px 1px #C5BE89">Text here.</p>
This text has shadow with #C5BE89 color.
.textShadow {text-shadow: 3px 3px 1px #C5BE89, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5BE89, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5BE89 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5BE89, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5BE89, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5BE89 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5BE89; -webkit-box-shadow: 1px 1px 3px 2px #C5BE89; box-shadow: 1px 1px 3px 2px #C5BE89; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5BE89; -webkit-box-shadow: 1px 1px 3px 2px #C5BE89; box-shadow:1px 1px 3px 2px #C5BE89;">
Div content here</div>
This text has color #C5BE89 on black background.
This text has color #C5BE89 on white background.
This text has black color on #C5BE89 background.
This text has white color on #C5BE89 background.