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