HEX: #A9C15D
RGB: (169,193,93)
#A9C15D contains mainly red and green colors. Web safe color of #A9C15D is #99CC66 (or #9C6).
#A9C15D color RGB value is (169,193,93).
RGB: (169,193,93) (66%,76%,36%)
R 169 of 255 = 66%
G 193 of 255 = 76%
B 93 of 255 = 36%
R + G + B ~ 59%. #A9C15D is middle color (not dark and not light).
R + G + B =
169 + 193 + 93 = 455 (100%)
R 169 of 455 ~ 37.14%
G 193 of 455 ~ 42.42%
B 93 of 455 ~ 20.44%
#A9C15D color CMYK value is (12,0,52,24).
CMYK: (12,0,52,24) C12M0Y52K24 (12%,0%,52%,24%) (0.12/0.00/0.52/0.24)
A9 | C1 | 5D | |
---|---|---|---|
RGB | 169 | 193 | 93 |
HSL | 74° | 44.64% | 56.08% |
HSB/HSV | 74° | 51.81% | 75.69% |
CMYK | 12.44% | 0.00% | 51.81% |
24.31% |
HEX | A9 | C1 | 5D |
Decimal | 169 | 193 | 93 |
Binary | 10101001 | 11000001 | 1011101 |
Octal | 251 | 301 | 135 |
Examples of css and html codes for elements with #A9C15D color. Also use rgb(169,193,93) instead hex code.
.myTextColor { color: #A9C15D; }
<p style="color:#A9C15D">This sample text font color is #A9C15D.</p>
This text font color is #A9C15D.
.myBgColor { background-color: #A9C15D; }
<div style="background-color:#A9C15D">Inner text</div>
This div background color is #A9C15D.
.myBorderColor { border: 1px solid #A9C15D; }
<div style="border:3px solid #A9C15D">Div</div>
This div border color is #A9C15D.
.myOpacity80 { color: #A9C15D; opacity: 0.8; }
<p style="color:#A9C15D;opacity:0.8;">80%</p>
Text with #A9C15D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9C15D;}
<p style="text-shadow: 3px 3px 1px #A9C15D">Text here.</p>
This text has shadow with #A9C15D color.
.textShadow {text-shadow: 3px 3px 1px #A9C15D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9C15D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9C15D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9C15D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9C15D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9C15D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9C15D; -webkit-box-shadow: 1px 1px 3px 2px #A9C15D; box-shadow: 1px 1px 3px 2px #A9C15D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9C15D; -webkit-box-shadow: 1px 1px 3px 2px #A9C15D; box-shadow:1px 1px 3px 2px #A9C15D;">
Div content here</div>
This text has color #A9C15D on black background.
This text has color #A9C15D on white background.
This text has black color on #A9C15D background.
This text has white color on #A9C15D background.