HEX: #C7FAEE
RGB: (199,250,238)
#C7FAEE contains red, green and blue colors in about the same proportion. Web safe color of #C7FAEE is #CCFFFF (or #CFF).
#C7FAEE color RGB value is (199,250,238).
RGB: (199,250,238) (78%,98%,93%)
R 199 of 255 = 78%
G 250 of 255 = 98%
B 238 of 255 = 93%
R + G + B ~ 90%. #C7FAEE is light color.
R + G + B =
199 + 250 + 238 = 687 (100%)
R 199 of 687 ~ 28.97%
G 250 of 687 ~ 36.39%
B 238 of 687 ~ 34.64%
#C7FAEE color CMYK value is (20,0,5,2).
CMYK: (20,0,5,2) C20M0Y5K2 (20%,0%,5%,2%) (0.20/0.00/0.05/0.02)
C7 | FA | EE | |
---|---|---|---|
RGB | 199 | 250 | 238 |
HSL | 166° | 83.61% | 88.04% |
HSB/HSV | 166° | 20.40% | 98.04% |
CMYK | 20.40% | 0.00% | 4.80% |
1.96% |
HEX | C7 | FA | EE |
Decimal | 199 | 250 | 238 |
Binary | 11000111 | 11111010 | 11101110 |
Octal | 307 | 372 | 356 |
Examples of css and html codes for elements with #C7FAEE color. Also use rgb(199,250,238) instead hex code.
.myTextColor { color: #C7FAEE; }
<p style="color:#C7FAEE">This sample text font color is #C7FAEE.</p>
This text font color is #C7FAEE.
.myBgColor { background-color: #C7FAEE; }
<div style="background-color:#C7FAEE">Inner text</div>
This div background color is #C7FAEE.
.myBorderColor { border: 1px solid #C7FAEE; }
<div style="border:3px solid #C7FAEE">Div</div>
This div border color is #C7FAEE.
.myOpacity80 { color: #C7FAEE; opacity: 0.8; }
<p style="color:#C7FAEE;opacity:0.8;">80%</p>
Text with #C7FAEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7FAEE;}
<p style="text-shadow: 3px 3px 1px #C7FAEE">Text here.</p>
This text has shadow with #C7FAEE color.
.textShadow {text-shadow: 3px 3px 1px #C7FAEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7FAEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7FAEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7FAEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7FAEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7FAEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7FAEE; -webkit-box-shadow: 1px 1px 3px 2px #C7FAEE; box-shadow: 1px 1px 3px 2px #C7FAEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7FAEE; -webkit-box-shadow: 1px 1px 3px 2px #C7FAEE; box-shadow:1px 1px 3px 2px #C7FAEE;">
Div content here</div>
This text has color #C7FAEE on black background.
This text has color #C7FAEE on white background.
This text has black color on #C7FAEE background.
This text has white color on #C7FAEE background.