HEX: #A4EBEE
RGB: (164,235,238)
#A4EBEE contains mainly green and blue colors. Web safe color of #A4EBEE is #99FFFF (or #9FF).
#A4EBEE color RGB value is (164,235,238).
RGB: (164,235,238) (64%,92%,93%)
R 164 of 255 = 64%
G 235 of 255 = 92%
B 238 of 255 = 93%
R + G + B ~ 83%. #A4EBEE is quite light color.
R + G + B =
164 + 235 + 238 = 637 (100%)
R 164 of 637 ~ 25.75%
G 235 of 637 ~ 36.89%
B 238 of 637 ~ 37.36%
#A4EBEE color CMYK value is (31,1,0,7).
CMYK: (31,1,0,7) C31M1Y0K7 (31%,1%,0%,7%) (0.31/0.01/0.00/0.07)
A4 | EB | EE | |
---|---|---|---|
RGB | 164 | 235 | 238 |
HSL | 182° | 68.52% | 78.82% |
HSB/HSV | 182° | 31.09% | 93.33% |
CMYK | 31.09% | 1.26% | 0.00% |
6.67% |
HEX | A4 | EB | EE |
Decimal | 164 | 235 | 238 |
Binary | 10100100 | 11101011 | 11101110 |
Octal | 244 | 353 | 356 |
Examples of css and html codes for elements with #A4EBEE color. Also use rgb(164,235,238) instead hex code.
.myTextColor { color: #A4EBEE; }
<p style="color:#A4EBEE">This sample text font color is #A4EBEE.</p>
This text font color is #A4EBEE.
.myBgColor { background-color: #A4EBEE; }
<div style="background-color:#A4EBEE">Inner text</div>
This div background color is #A4EBEE.
.myBorderColor { border: 1px solid #A4EBEE; }
<div style="border:3px solid #A4EBEE">Div</div>
This div border color is #A4EBEE.
.myOpacity80 { color: #A4EBEE; opacity: 0.8; }
<p style="color:#A4EBEE;opacity:0.8;">80%</p>
Text with #A4EBEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4EBEE;}
<p style="text-shadow: 3px 3px 1px #A4EBEE">Text here.</p>
This text has shadow with #A4EBEE color.
.textShadow {text-shadow: 3px 3px 1px #A4EBEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4EBEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4EBEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4EBEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4EBEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4EBEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4EBEE; -webkit-box-shadow: 1px 1px 3px 2px #A4EBEE; box-shadow: 1px 1px 3px 2px #A4EBEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4EBEE; -webkit-box-shadow: 1px 1px 3px 2px #A4EBEE; box-shadow:1px 1px 3px 2px #A4EBEE;">
Div content here</div>
This text has color #A4EBEE on black background.
This text has color #A4EBEE on white background.
This text has black color on #A4EBEE background.
This text has white color on #A4EBEE background.