HEX: #C0AE59
RGB: (192,174,89)
#C0AE59 contains mainly red and green colors. Web safe color of #C0AE59 is #CC9966 (or #C96).
#C0AE59 color RGB value is (192,174,89).
RGB: (192,174,89) (75%,68%,35%)
R 192 of 255 = 75%
G 174 of 255 = 68%
B 89 of 255 = 35%
R + G + B ~ 59%. #C0AE59 is middle color (not dark and not light).
R + G + B =
192 + 174 + 89 = 455 (100%)
R 192 of 455 ~ 42.2%
G 174 of 455 ~ 38.24%
B 89 of 455 ~ 19.56%
#C0AE59 color CMYK value is (0,9,54,25).
CMYK: (0,9,54,25) C0M9Y54K25 (0%,9%,54%,25%) (0.00/0.09/0.54/0.25)
C0 | AE | 59 | |
---|---|---|---|
RGB | 192 | 174 | 89 |
HSL | 50° | 44.98% | 55.10% |
HSB/HSV | 50° | 53.65% | 75.29% |
CMYK | 0.00% | 9.38% | 53.65% |
24.71% |
HEX | C0 | AE | 59 |
Decimal | 192 | 174 | 89 |
Binary | 11000000 | 10101110 | 1011001 |
Octal | 300 | 256 | 131 |
Examples of css and html codes for elements with #C0AE59 color. Also use rgb(192,174,89) instead hex code.
.myTextColor { color: #C0AE59; }
<p style="color:#C0AE59">This sample text font color is #C0AE59.</p>
This text font color is #C0AE59.
.myBgColor { background-color: #C0AE59; }
<div style="background-color:#C0AE59">Inner text</div>
This div background color is #C0AE59.
.myBorderColor { border: 1px solid #C0AE59; }
<div style="border:3px solid #C0AE59">Div</div>
This div border color is #C0AE59.
.myOpacity80 { color: #C0AE59; opacity: 0.8; }
<p style="color:#C0AE59;opacity:0.8;">80%</p>
Text with #C0AE59 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C0AE59;}
<p style="text-shadow: 3px 3px 1px #C0AE59">Text here.</p>
This text has shadow with #C0AE59 color.
.textShadow {text-shadow: 3px 3px 1px #C0AE59, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C0AE59, 5px 5px 20px red">Text here.</p>
This text has shadow with #C0AE59 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C0AE59, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C0AE59, Direction=45, Strength=4)">Text</p>
This text has shadow with #C0AE59 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C0AE59; -webkit-box-shadow: 1px 1px 3px 2px #C0AE59; box-shadow: 1px 1px 3px 2px #C0AE59; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C0AE59; -webkit-box-shadow: 1px 1px 3px 2px #C0AE59; box-shadow:1px 1px 3px 2px #C0AE59;">
Div content here</div>
This text has color #C0AE59 on black background.
This text has color #C0AE59 on white background.
This text has black color on #C0AE59 background.
This text has white color on #C0AE59 background.