HEX: #C9F09D
RGB: (201,240,157)
#C9F09D contains mainly red and green colors. Web safe color of #C9F09D is #CCFF99 (or #CF9).
#C9F09D color RGB value is (201,240,157).
RGB: (201,240,157) (79%,94%,62%)
R 201 of 255 = 79%
G 240 of 255 = 94%
B 157 of 255 = 62%
R + G + B ~ 78%. #C9F09D is quite light color.
R + G + B =
201 + 240 + 157 = 598 (100%)
R 201 of 598 ~ 33.61%
G 240 of 598 ~ 40.13%
B 157 of 598 ~ 26.25%
#C9F09D color CMYK value is (16,0,35,6).
CMYK: (16,0,35,6) C16M0Y35K6 (16%,0%,35%,6%) (0.16/0.00/0.35/0.06)
C9 | F0 | 9D | |
---|---|---|---|
RGB | 201 | 240 | 157 |
HSL | 88° | 73.45% | 77.84% |
HSB/HSV | 88° | 34.58% | 94.12% |
CMYK | 16.25% | 0.00% | 34.58% |
5.88% |
HEX | C9 | F0 | 9D |
Decimal | 201 | 240 | 157 |
Binary | 11001001 | 11110000 | 10011101 |
Octal | 311 | 360 | 235 |
Examples of css and html codes for elements with #C9F09D color. Also use rgb(201,240,157) instead hex code.
.myTextColor { color: #C9F09D; }
<p style="color:#C9F09D">This sample text font color is #C9F09D.</p>
This text font color is #C9F09D.
.myBgColor { background-color: #C9F09D; }
<div style="background-color:#C9F09D">Inner text</div>
This div background color is #C9F09D.
.myBorderColor { border: 1px solid #C9F09D; }
<div style="border:3px solid #C9F09D">Div</div>
This div border color is #C9F09D.
.myOpacity80 { color: #C9F09D; opacity: 0.8; }
<p style="color:#C9F09D;opacity:0.8;">80%</p>
Text with #C9F09D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9F09D;}
<p style="text-shadow: 3px 3px 1px #C9F09D">Text here.</p>
This text has shadow with #C9F09D color.
.textShadow {text-shadow: 3px 3px 1px #C9F09D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9F09D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9F09D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9F09D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9F09D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9F09D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9F09D; -webkit-box-shadow: 1px 1px 3px 2px #C9F09D; box-shadow: 1px 1px 3px 2px #C9F09D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9F09D; -webkit-box-shadow: 1px 1px 3px 2px #C9F09D; box-shadow:1px 1px 3px 2px #C9F09D;">
Div content here</div>
This text has color #C9F09D on black background.
This text has color #C9F09D on white background.
This text has black color on #C9F09D background.
This text has white color on #C9F09D background.