HEX: #A8E2ED
RGB: (168,226,237)
#A8E2ED contains mainly green and blue colors. Web safe color of #A8E2ED is #99CCFF (or #9CF).
#A8E2ED color RGB value is (168,226,237).
RGB: (168,226,237) (66%,89%,93%)
R 168 of 255 = 66%
G 226 of 255 = 89%
B 237 of 255 = 93%
R + G + B ~ 83%. #A8E2ED is quite light color.
R + G + B =
168 + 226 + 237 = 631 (100%)
R 168 of 631 ~ 26.62%
G 226 of 631 ~ 35.82%
B 237 of 631 ~ 37.56%
#A8E2ED color CMYK value is (29,5,0,7).
CMYK: (29,5,0,7) C29M5Y0K7 (29%,5%,0%,7%) (0.29/0.05/0.00/0.07)
A8 | E2 | ED | |
---|---|---|---|
RGB | 168 | 226 | 237 |
HSL | 190° | 65.71% | 79.41% |
HSB/HSV | 190° | 29.11% | 92.94% |
CMYK | 29.11% | 4.64% | 0.00% |
7.06% |
HEX | A8 | E2 | ED |
Decimal | 168 | 226 | 237 |
Binary | 10101000 | 11100010 | 11101101 |
Octal | 250 | 342 | 355 |
Examples of css and html codes for elements with #A8E2ED color. Also use rgb(168,226,237) instead hex code.
.myTextColor { color: #A8E2ED; }
<p style="color:#A8E2ED">This sample text font color is #A8E2ED.</p>
This text font color is #A8E2ED.
.myBgColor { background-color: #A8E2ED; }
<div style="background-color:#A8E2ED">Inner text</div>
This div background color is #A8E2ED.
.myBorderColor { border: 1px solid #A8E2ED; }
<div style="border:3px solid #A8E2ED">Div</div>
This div border color is #A8E2ED.
.myOpacity80 { color: #A8E2ED; opacity: 0.8; }
<p style="color:#A8E2ED;opacity:0.8;">80%</p>
Text with #A8E2ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A8E2ED;}
<p style="text-shadow: 3px 3px 1px #A8E2ED">Text here.</p>
This text has shadow with #A8E2ED color.
.textShadow {text-shadow: 3px 3px 1px #A8E2ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A8E2ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #A8E2ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A8E2ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A8E2ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #A8E2ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A8E2ED; -webkit-box-shadow: 1px 1px 3px 2px #A8E2ED; box-shadow: 1px 1px 3px 2px #A8E2ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A8E2ED; -webkit-box-shadow: 1px 1px 3px 2px #A8E2ED; box-shadow:1px 1px 3px 2px #A8E2ED;">
Div content here</div>
This text has color #A8E2ED on black background.
This text has color #A8E2ED on white background.
This text has black color on #A8E2ED background.
This text has white color on #A8E2ED background.