HEX: #A4E9E2
RGB: (164,233,226)
#A4E9E2 contains mainly green and blue colors. Web safe color of #A4E9E2 is #99FFCC (or #9FC).
#A4E9E2 color RGB value is (164,233,226).
RGB: (164,233,226) (64%,91%,89%)
R 164 of 255 = 64%
G 233 of 255 = 91%
B 226 of 255 = 89%
R + G + B ~ 81%. #A4E9E2 is quite light color.
R + G + B =
164 + 233 + 226 = 623 (100%)
R 164 of 623 ~ 26.32%
G 233 of 623 ~ 37.4%
B 226 of 623 ~ 36.28%
#A4E9E2 color CMYK value is (30,0,3,9).
CMYK: (30,0,3,9) C30M0Y3K9 (30%,0%,3%,9%) (0.30/0.00/0.03/0.09)
A4 | E9 | E2 | |
---|---|---|---|
RGB | 164 | 233 | 226 |
HSL | 174° | 61.06% | 77.84% |
HSB/HSV | 174° | 29.61% | 91.37% |
CMYK | 29.61% | 0.00% | 3.00% |
8.63% |
HEX | A4 | E9 | E2 |
Decimal | 164 | 233 | 226 |
Binary | 10100100 | 11101001 | 11100010 |
Octal | 244 | 351 | 342 |
Examples of css and html codes for elements with #A4E9E2 color. Also use rgb(164,233,226) instead hex code.
.myTextColor { color: #A4E9E2; }
<p style="color:#A4E9E2">This sample text font color is #A4E9E2.</p>
This text font color is #A4E9E2.
.myBgColor { background-color: #A4E9E2; }
<div style="background-color:#A4E9E2">Inner text</div>
This div background color is #A4E9E2.
.myBorderColor { border: 1px solid #A4E9E2; }
<div style="border:3px solid #A4E9E2">Div</div>
This div border color is #A4E9E2.
.myOpacity80 { color: #A4E9E2; opacity: 0.8; }
<p style="color:#A4E9E2;opacity:0.8;">80%</p>
Text with #A4E9E2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4E9E2;}
<p style="text-shadow: 3px 3px 1px #A4E9E2">Text here.</p>
This text has shadow with #A4E9E2 color.
.textShadow {text-shadow: 3px 3px 1px #A4E9E2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4E9E2, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4E9E2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4E9E2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4E9E2, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4E9E2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4E9E2; -webkit-box-shadow: 1px 1px 3px 2px #A4E9E2; box-shadow: 1px 1px 3px 2px #A4E9E2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4E9E2; -webkit-box-shadow: 1px 1px 3px 2px #A4E9E2; box-shadow:1px 1px 3px 2px #A4E9E2;">
Div content here</div>
This text has color #A4E9E2 on black background.
This text has color #A4E9E2 on white background.
This text has black color on #A4E9E2 background.
This text has white color on #A4E9E2 background.