HEX: #A4DDE5
RGB: (164,221,229)
#A4DDE5 contains mainly green and blue colors. Web safe color of #A4DDE5 is #99CCCC (or #9CC).
#A4DDE5 color RGB value is (164,221,229).
RGB: (164,221,229) (64%,87%,90%)
R 164 of 255 = 64%
G 221 of 255 = 87%
B 229 of 255 = 90%
R + G + B ~ 80%. #A4DDE5 is quite light color.
R + G + B =
164 + 221 + 229 = 614 (100%)
R 164 of 614 ~ 26.71%
G 221 of 614 ~ 35.99%
B 229 of 614 ~ 37.3%
#A4DDE5 color CMYK value is (28,3,0,10).
CMYK: (28,3,0,10) C28M3Y0K10 (28%,3%,0%,10%) (0.28/0.03/0.00/0.10)
A4 | DD | E5 | |
---|---|---|---|
RGB | 164 | 221 | 229 |
HSL | 187° | 55.56% | 77.06% |
HSB/HSV | 187° | 28.38% | 89.80% |
CMYK | 28.38% | 3.49% | 0.00% |
10.20% |
HEX | A4 | DD | E5 |
Decimal | 164 | 221 | 229 |
Binary | 10100100 | 11011101 | 11100101 |
Octal | 244 | 335 | 345 |
Examples of css and html codes for elements with #A4DDE5 color. Also use rgb(164,221,229) instead hex code.
.myTextColor { color: #A4DDE5; }
<p style="color:#A4DDE5">This sample text font color is #A4DDE5.</p>
This text font color is #A4DDE5.
.myBgColor { background-color: #A4DDE5; }
<div style="background-color:#A4DDE5">Inner text</div>
This div background color is #A4DDE5.
.myBorderColor { border: 1px solid #A4DDE5; }
<div style="border:3px solid #A4DDE5">Div</div>
This div border color is #A4DDE5.
.myOpacity80 { color: #A4DDE5; opacity: 0.8; }
<p style="color:#A4DDE5;opacity:0.8;">80%</p>
Text with #A4DDE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4DDE5;}
<p style="text-shadow: 3px 3px 1px #A4DDE5">Text here.</p>
This text has shadow with #A4DDE5 color.
.textShadow {text-shadow: 3px 3px 1px #A4DDE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4DDE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4DDE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4DDE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4DDE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4DDE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4DDE5; -webkit-box-shadow: 1px 1px 3px 2px #A4DDE5; box-shadow: 1px 1px 3px 2px #A4DDE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4DDE5; -webkit-box-shadow: 1px 1px 3px 2px #A4DDE5; box-shadow:1px 1px 3px 2px #A4DDE5;">
Div content here</div>
This text has color #A4DDE5 on black background.
This text has color #A4DDE5 on white background.
This text has black color on #A4DDE5 background.
This text has white color on #A4DDE5 background.