HEX: #AFEEEE
RGB: (175,238,238)
Color name is PaleTurquoise. #AFEEEE contains mainly green and blue colors. Web safe color of #AFEEEE is #99FFFF (or #9FF).
#AFEEEE color RGB value is (175,238,238).
RGB: (175,238,238) (69%,93%,93%)
R 175 of 255 = 69%
G 238 of 255 = 93%
B 238 of 255 = 93%
R + G + B ~ 85%. #AFEEEE is quite light color.
R + G + B =
175 + 238 + 238 = 651 (100%)
R 175 of 651 ~ 26.88%
G 238 of 651 ~ 36.56%
B 238 of 651 ~ 36.56%
#AFEEEE color CMYK value is (26,0,0,7).
CMYK: (26,0,0,7) C26M0Y0K7 (26%,0%,0%,7%) (0.26/0.00/0.00/0.07)
AF | EE | EE | |
---|---|---|---|
RGB | 175 | 238 | 238 |
HSL | 180° | 64.95% | 80.98% |
HSB/HSV | 180° | 26.47% | 93.33% |
CMYK | 26.47% | 0.00% | 0.00% |
6.67% |
HEX | AF | EE | EE |
Decimal | 175 | 238 | 238 |
Binary | 10101111 | 11101110 | 11101110 |
Octal | 257 | 356 | 356 |
Examples of css and html codes for elements with #AFEEEE color. Also use rgb(175,238,238) instead hex code.
.myTextColor { color: #AFEEEE; }
<p style="color:#AFEEEE">This sample text font color is #AFEEEE.</p>
This text font color is #AFEEEE.
.myBgColor { background-color: #AFEEEE; }
<div style="background-color:#AFEEEE">Inner text</div>
This div background color is #AFEEEE.
.myBorderColor { border: 1px solid #AFEEEE; }
<div style="border:3px solid #AFEEEE">Div</div>
This div border color is #AFEEEE.
.myOpacity80 { color: #AFEEEE; opacity: 0.8; }
<p style="color:#AFEEEE;opacity:0.8;">80%</p>
Text with #AFEEEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFEEEE;}
<p style="text-shadow: 3px 3px 1px #AFEEEE">Text here.</p>
This text has shadow with #AFEEEE color.
.textShadow {text-shadow: 3px 3px 1px #AFEEEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFEEEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFEEEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFEEEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFEEEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFEEEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFEEEE; -webkit-box-shadow: 1px 1px 3px 2px #AFEEEE; box-shadow: 1px 1px 3px 2px #AFEEEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFEEEE; -webkit-box-shadow: 1px 1px 3px 2px #AFEEEE; box-shadow:1px 1px 3px 2px #AFEEEE;">
Div content here</div>
This text has color #AFEEEE on black background.
This text has color #AFEEEE on white background.
This text has black color on #AFEEEE background.
This text has white color on #AFEEEE background.