HEX: #C6F09F
RGB: (198,240,159)
#C6F09F contains mainly red and green colors. Web safe color of #C6F09F is #CCFF99 (or #CF9).
#C6F09F color RGB value is (198,240,159).
RGB: (198,240,159) (78%,94%,62%)
R 198 of 255 = 78%
G 240 of 255 = 94%
B 159 of 255 = 62%
R + G + B ~ 78%. #C6F09F is quite light color.
R + G + B =
198 + 240 + 159 = 597 (100%)
R 198 of 597 ~ 33.17%
G 240 of 597 ~ 40.2%
B 159 of 597 ~ 26.63%
#C6F09F color CMYK value is (18,0,34,6).
CMYK: (18,0,34,6) C18M0Y34K6 (18%,0%,34%,6%) (0.18/0.00/0.34/0.06)
C6 | F0 | 9F | |
---|---|---|---|
RGB | 198 | 240 | 159 |
HSL | 91° | 72.97% | 78.24% |
HSB/HSV | 91° | 33.75% | 94.12% |
CMYK | 17.50% | 0.00% | 33.75% |
5.88% |
HEX | C6 | F0 | 9F |
Decimal | 198 | 240 | 159 |
Binary | 11000110 | 11110000 | 10011111 |
Octal | 306 | 360 | 237 |
Examples of css and html codes for elements with #C6F09F color. Also use rgb(198,240,159) instead hex code.
.myTextColor { color: #C6F09F; }
<p style="color:#C6F09F">This sample text font color is #C6F09F.</p>
This text font color is #C6F09F.
.myBgColor { background-color: #C6F09F; }
<div style="background-color:#C6F09F">Inner text</div>
This div background color is #C6F09F.
.myBorderColor { border: 1px solid #C6F09F; }
<div style="border:3px solid #C6F09F">Div</div>
This div border color is #C6F09F.
.myOpacity80 { color: #C6F09F; opacity: 0.8; }
<p style="color:#C6F09F;opacity:0.8;">80%</p>
Text with #C6F09F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6F09F;}
<p style="text-shadow: 3px 3px 1px #C6F09F">Text here.</p>
This text has shadow with #C6F09F color.
.textShadow {text-shadow: 3px 3px 1px #C6F09F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6F09F, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6F09F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6F09F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6F09F, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6F09F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6F09F; -webkit-box-shadow: 1px 1px 3px 2px #C6F09F; box-shadow: 1px 1px 3px 2px #C6F09F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6F09F; -webkit-box-shadow: 1px 1px 3px 2px #C6F09F; box-shadow:1px 1px 3px 2px #C6F09F;">
Div content here</div>
This text has color #C6F09F on black background.
This text has color #C6F09F on white background.
This text has black color on #C6F09F background.
This text has white color on #C6F09F background.