HEX: #ADCA62
RGB: (173,202,98)
#ADCA62 contains mainly red and green colors. Web safe color of #ADCA62 is #99CC66 (or #9C6).
#ADCA62 color RGB value is (173,202,98).
RGB: (173,202,98) (68%,79%,38%)
R 173 of 255 = 68%
G 202 of 255 = 79%
B 98 of 255 = 38%
R + G + B ~ 62%. #ADCA62 is quite light color.
R + G + B =
173 + 202 + 98 = 473 (100%)
R 173 of 473 ~ 36.58%
G 202 of 473 ~ 42.71%
B 98 of 473 ~ 20.72%
#ADCA62 color CMYK value is (14,0,51,21).
CMYK: (14,0,51,21) C14M0Y51K21 (14%,0%,51%,21%) (0.14/0.00/0.51/0.21)
AD | CA | 62 | |
---|---|---|---|
RGB | 173 | 202 | 98 |
HSL | 77° | 49.52% | 58.82% |
HSB/HSV | 77° | 51.49% | 79.22% |
CMYK | 14.36% | 0.00% | 51.49% |
20.78% |
HEX | AD | CA | 62 |
Decimal | 173 | 202 | 98 |
Binary | 10101101 | 11001010 | 1100010 |
Octal | 255 | 312 | 142 |
Examples of css and html codes for elements with #ADCA62 color. Also use rgb(173,202,98) instead hex code.
.myTextColor { color: #ADCA62; }
<p style="color:#ADCA62">This sample text font color is #ADCA62.</p>
This text font color is #ADCA62.
.myBgColor { background-color: #ADCA62; }
<div style="background-color:#ADCA62">Inner text</div>
This div background color is #ADCA62.
.myBorderColor { border: 1px solid #ADCA62; }
<div style="border:3px solid #ADCA62">Div</div>
This div border color is #ADCA62.
.myOpacity80 { color: #ADCA62; opacity: 0.8; }
<p style="color:#ADCA62;opacity:0.8;">80%</p>
Text with #ADCA62 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCA62;}
<p style="text-shadow: 3px 3px 1px #ADCA62">Text here.</p>
This text has shadow with #ADCA62 color.
.textShadow {text-shadow: 3px 3px 1px #ADCA62, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCA62, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCA62 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCA62, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCA62, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCA62 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCA62; -webkit-box-shadow: 1px 1px 3px 2px #ADCA62; box-shadow: 1px 1px 3px 2px #ADCA62; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCA62; -webkit-box-shadow: 1px 1px 3px 2px #ADCA62; box-shadow:1px 1px 3px 2px #ADCA62;">
Div content here</div>
This text has color #ADCA62 on black background.
This text has color #ADCA62 on white background.
This text has black color on #ADCA62 background.
This text has white color on #ADCA62 background.