HEX: #A5FFAE
RGB: (165,255,174)
#A5FFAE contains mainly green color. Web safe color of #A5FFAE is #99FF99 (or #9F9).
#A5FFAE color RGB value is (165,255,174).
RGB: (165,255,174) (65%,100%,68%)
R 165 of 255 = 65%
G 255 of 255 = 100%
B 174 of 255 = 68%
R + G + B ~ 78%. #A5FFAE is quite light color.
R + G + B =
165 + 255 + 174 = 594 (100%)
R 165 of 594 ~ 27.78%
G 255 of 594 ~ 42.93%
B 174 of 594 ~ 29.29%
#A5FFAE color CMYK value is (35,0,32,0).
CMYK: (35,0,32,0) C35M0Y32K0 (35%,0%,32%,0%) (0.35/0.00/0.32/0.00)
A5 | FF | AE | |
---|---|---|---|
RGB | 165 | 255 | 174 |
HSL | 126° | 100.00% | 82.35% |
HSB/HSV | 126° | 35.29% | 100.00% |
CMYK | 35.29% | 0.00% | 31.76% |
0.00% |
HEX | A5 | FF | AE |
Decimal | 165 | 255 | 174 |
Binary | 10100101 | 11111111 | 10101110 |
Octal | 245 | 377 | 256 |
Examples of css and html codes for elements with #A5FFAE color. Also use rgb(165,255,174) instead hex code.
.myTextColor { color: #A5FFAE; }
<p style="color:#A5FFAE">This sample text font color is #A5FFAE.</p>
This text font color is #A5FFAE.
.myBgColor { background-color: #A5FFAE; }
<div style="background-color:#A5FFAE">Inner text</div>
This div background color is #A5FFAE.
.myBorderColor { border: 1px solid #A5FFAE; }
<div style="border:3px solid #A5FFAE">Div</div>
This div border color is #A5FFAE.
.myOpacity80 { color: #A5FFAE; opacity: 0.8; }
<p style="color:#A5FFAE;opacity:0.8;">80%</p>
Text with #A5FFAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5FFAE;}
<p style="text-shadow: 3px 3px 1px #A5FFAE">Text here.</p>
This text has shadow with #A5FFAE color.
.textShadow {text-shadow: 3px 3px 1px #A5FFAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5FFAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5FFAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5FFAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5FFAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5FFAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5FFAE; -webkit-box-shadow: 1px 1px 3px 2px #A5FFAE; box-shadow: 1px 1px 3px 2px #A5FFAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5FFAE; -webkit-box-shadow: 1px 1px 3px 2px #A5FFAE; box-shadow:1px 1px 3px 2px #A5FFAE;">
Div content here</div>
This text has color #A5FFAE on black background.
This text has color #A5FFAE on white background.
This text has black color on #A5FFAE background.
This text has white color on #A5FFAE background.