HEX: #C7F1CE
RGB: (199,241,206)
#C7F1CE contains red, green and blue colors in about the same proportion. Web safe color of #C7F1CE is #CCFFCC (or #CFC).
#C7F1CE color RGB value is (199,241,206).
RGB: (199,241,206) (78%,95%,81%)
R 199 of 255 = 78%
G 241 of 255 = 95%
B 206 of 255 = 81%
R + G + B ~ 85%. #C7F1CE is quite light color.
R + G + B =
199 + 241 + 206 = 646 (100%)
R 199 of 646 ~ 30.8%
G 241 of 646 ~ 37.31%
B 206 of 646 ~ 31.89%
#C7F1CE color CMYK value is (17,0,15,5).
CMYK: (17,0,15,5) C17M0Y15K5 (17%,0%,15%,5%) (0.17/0.00/0.15/0.05)
C7 | F1 | CE | |
---|---|---|---|
RGB | 199 | 241 | 206 |
HSL | 130° | 60.00% | 86.27% |
HSB/HSV | 130° | 17.43% | 94.51% |
CMYK | 17.43% | 0.00% | 14.52% |
5.49% |
HEX | C7 | F1 | CE |
Decimal | 199 | 241 | 206 |
Binary | 11000111 | 11110001 | 11001110 |
Octal | 307 | 361 | 316 |
Examples of css and html codes for elements with #C7F1CE color. Also use rgb(199,241,206) instead hex code.
.myTextColor { color: #C7F1CE; }
<p style="color:#C7F1CE">This sample text font color is #C7F1CE.</p>
This text font color is #C7F1CE.
.myBgColor { background-color: #C7F1CE; }
<div style="background-color:#C7F1CE">Inner text</div>
This div background color is #C7F1CE.
.myBorderColor { border: 1px solid #C7F1CE; }
<div style="border:3px solid #C7F1CE">Div</div>
This div border color is #C7F1CE.
.myOpacity80 { color: #C7F1CE; opacity: 0.8; }
<p style="color:#C7F1CE;opacity:0.8;">80%</p>
Text with #C7F1CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7F1CE;}
<p style="text-shadow: 3px 3px 1px #C7F1CE">Text here.</p>
This text has shadow with #C7F1CE color.
.textShadow {text-shadow: 3px 3px 1px #C7F1CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7F1CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7F1CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7F1CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7F1CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7F1CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7F1CE; -webkit-box-shadow: 1px 1px 3px 2px #C7F1CE; box-shadow: 1px 1px 3px 2px #C7F1CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7F1CE; -webkit-box-shadow: 1px 1px 3px 2px #C7F1CE; box-shadow:1px 1px 3px 2px #C7F1CE;">
Div content here</div>
This text has color #C7F1CE on black background.
This text has color #C7F1CE on white background.
This text has black color on #C7F1CE background.
This text has white color on #C7F1CE background.