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