HEX: #C7FBED
RGB: (199,251,237)
#C7FBED contains red, green and blue colors in about the same proportion. Web safe color of #C7FBED is #CCFFFF (or #CFF).
#C7FBED color RGB value is (199,251,237).
RGB: (199,251,237) (78%,98%,93%)
R 199 of 255 = 78%
G 251 of 255 = 98%
B 237 of 255 = 93%
R + G + B ~ 90%. #C7FBED is light color.
R + G + B =
199 + 251 + 237 = 687 (100%)
R 199 of 687 ~ 28.97%
G 251 of 687 ~ 36.54%
B 237 of 687 ~ 34.5%
#C7FBED color CMYK value is (21,0,6,2).
CMYK: (21,0,6,2) C21M0Y6K2 (21%,0%,6%,2%) (0.21/0.00/0.06/0.02)
C7 | FB | ED | |
---|---|---|---|
RGB | 199 | 251 | 237 |
HSL | 164° | 86.67% | 88.24% |
HSB/HSV | 164° | 20.72% | 98.43% |
CMYK | 20.72% | 0.00% | 5.58% |
1.57% |
HEX | C7 | FB | ED |
Decimal | 199 | 251 | 237 |
Binary | 11000111 | 11111011 | 11101101 |
Octal | 307 | 373 | 355 |
Examples of css and html codes for elements with #C7FBED color. Also use rgb(199,251,237) instead hex code.
.myTextColor { color: #C7FBED; }
<p style="color:#C7FBED">This sample text font color is #C7FBED.</p>
This text font color is #C7FBED.
.myBgColor { background-color: #C7FBED; }
<div style="background-color:#C7FBED">Inner text</div>
This div background color is #C7FBED.
.myBorderColor { border: 1px solid #C7FBED; }
<div style="border:3px solid #C7FBED">Div</div>
This div border color is #C7FBED.
.myOpacity80 { color: #C7FBED; opacity: 0.8; }
<p style="color:#C7FBED;opacity:0.8;">80%</p>
Text with #C7FBED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7FBED;}
<p style="text-shadow: 3px 3px 1px #C7FBED">Text here.</p>
This text has shadow with #C7FBED color.
.textShadow {text-shadow: 3px 3px 1px #C7FBED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7FBED, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7FBED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7FBED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7FBED, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7FBED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7FBED; -webkit-box-shadow: 1px 1px 3px 2px #C7FBED; box-shadow: 1px 1px 3px 2px #C7FBED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7FBED; -webkit-box-shadow: 1px 1px 3px 2px #C7FBED; box-shadow:1px 1px 3px 2px #C7FBED;">
Div content here</div>
This text has color #C7FBED on black background.
This text has color #C7FBED on white background.
This text has black color on #C7FBED background.
This text has white color on #C7FBED background.