HEX: #C6F9DF
RGB: (198,249,223)
#C6F9DF contains red, green and blue colors in about the same proportion. Web safe color of #C6F9DF is #CCFFCC (or #CFC).
#C6F9DF color RGB value is (198,249,223).
RGB: (198,249,223) (78%,98%,87%)
R 198 of 255 = 78%
G 249 of 255 = 98%
B 223 of 255 = 87%
R + G + B ~ 88%. #C6F9DF is light color.
R + G + B =
198 + 249 + 223 = 670 (100%)
R 198 of 670 ~ 29.55%
G 249 of 670 ~ 37.16%
B 223 of 670 ~ 33.28%
#C6F9DF color CMYK value is (20,0,10,2).
CMYK: (20,0,10,2) C20M0Y10K2 (20%,0%,10%,2%) (0.20/0.00/0.10/0.02)
C6 | F9 | DF | |
---|---|---|---|
RGB | 198 | 249 | 223 |
HSL | 149° | 80.95% | 87.65% |
HSB/HSV | 149° | 20.48% | 97.65% |
CMYK | 20.48% | 0.00% | 10.44% |
2.35% |
HEX | C6 | F9 | DF |
Decimal | 198 | 249 | 223 |
Binary | 11000110 | 11111001 | 11011111 |
Octal | 306 | 371 | 337 |
Examples of css and html codes for elements with #C6F9DF color. Also use rgb(198,249,223) instead hex code.
.myTextColor { color: #C6F9DF; }
<p style="color:#C6F9DF">This sample text font color is #C6F9DF.</p>
This text font color is #C6F9DF.
.myBgColor { background-color: #C6F9DF; }
<div style="background-color:#C6F9DF">Inner text</div>
This div background color is #C6F9DF.
.myBorderColor { border: 1px solid #C6F9DF; }
<div style="border:3px solid #C6F9DF">Div</div>
This div border color is #C6F9DF.
.myOpacity80 { color: #C6F9DF; opacity: 0.8; }
<p style="color:#C6F9DF;opacity:0.8;">80%</p>
Text with #C6F9DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6F9DF;}
<p style="text-shadow: 3px 3px 1px #C6F9DF">Text here.</p>
This text has shadow with #C6F9DF color.
.textShadow {text-shadow: 3px 3px 1px #C6F9DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6F9DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6F9DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6F9DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6F9DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6F9DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6F9DF; -webkit-box-shadow: 1px 1px 3px 2px #C6F9DF; box-shadow: 1px 1px 3px 2px #C6F9DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6F9DF; -webkit-box-shadow: 1px 1px 3px 2px #C6F9DF; box-shadow:1px 1px 3px 2px #C6F9DF;">
Div content here</div>
This text has color #C6F9DF on black background.
This text has color #C6F9DF on white background.
This text has black color on #C6F9DF background.
This text has white color on #C6F9DF background.