HEX: #C9D45C
RGB: (201,212,92)
#C9D45C contains mainly red and green colors. Web safe color of #C9D45C is #CCCC66 (or #CC6).
#C9D45C color RGB value is (201,212,92).
RGB: (201,212,92) (79%,83%,36%)
R 201 of 255 = 79%
G 212 of 255 = 83%
B 92 of 255 = 36%
R + G + B ~ 66%. #C9D45C is quite light color.
R + G + B =
201 + 212 + 92 = 505 (100%)
R 201 of 505 ~ 39.8%
G 212 of 505 ~ 41.98%
B 92 of 505 ~ 18.22%
#C9D45C color CMYK value is (5,0,57,17).
CMYK: (5,0,57,17) C5M0Y57K17 (5%,0%,57%,17%) (0.05/0.00/0.57/0.17)
C9 | D4 | 5C | |
---|---|---|---|
RGB | 201 | 212 | 92 |
HSL | 66° | 58.25% | 59.61% |
HSB/HSV | 66° | 56.60% | 83.14% |
CMYK | 5.19% | 0.00% | 56.60% |
16.86% |
HEX | C9 | D4 | 5C |
Decimal | 201 | 212 | 92 |
Binary | 11001001 | 11010100 | 1011100 |
Octal | 311 | 324 | 134 |
Examples of css and html codes for elements with #C9D45C color. Also use rgb(201,212,92) instead hex code.
.myTextColor { color: #C9D45C; }
<p style="color:#C9D45C">This sample text font color is #C9D45C.</p>
This text font color is #C9D45C.
.myBgColor { background-color: #C9D45C; }
<div style="background-color:#C9D45C">Inner text</div>
This div background color is #C9D45C.
.myBorderColor { border: 1px solid #C9D45C; }
<div style="border:3px solid #C9D45C">Div</div>
This div border color is #C9D45C.
.myOpacity80 { color: #C9D45C; opacity: 0.8; }
<p style="color:#C9D45C;opacity:0.8;">80%</p>
Text with #C9D45C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9D45C;}
<p style="text-shadow: 3px 3px 1px #C9D45C">Text here.</p>
This text has shadow with #C9D45C color.
.textShadow {text-shadow: 3px 3px 1px #C9D45C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9D45C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9D45C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9D45C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9D45C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9D45C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9D45C; -webkit-box-shadow: 1px 1px 3px 2px #C9D45C; box-shadow: 1px 1px 3px 2px #C9D45C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9D45C; -webkit-box-shadow: 1px 1px 3px 2px #C9D45C; box-shadow:1px 1px 3px 2px #C9D45C;">
Div content here</div>
This text has color #C9D45C on black background.
This text has color #C9D45C on white background.
This text has black color on #C9D45C background.
This text has white color on #C9D45C background.