HEX: #C9F3AA
RGB: (201,243,170)
#C9F3AA contains mainly red and green colors. Web safe color of #C9F3AA is #CCFF99 (or #CF9).
#C9F3AA color RGB value is (201,243,170).
RGB: (201,243,170) (79%,95%,67%)
R 201 of 255 = 79%
G 243 of 255 = 95%
B 170 of 255 = 67%
R + G + B ~ 80%. #C9F3AA is quite light color.
R + G + B =
201 + 243 + 170 = 614 (100%)
R 201 of 614 ~ 32.74%
G 243 of 614 ~ 39.58%
B 170 of 614 ~ 27.69%
#C9F3AA color CMYK value is (17,0,30,5).
CMYK: (17,0,30,5) C17M0Y30K5 (17%,0%,30%,5%) (0.17/0.00/0.30/0.05)
C9 | F3 | AA | |
---|---|---|---|
RGB | 201 | 243 | 170 |
HSL | 95° | 75.26% | 80.98% |
HSB/HSV | 95° | 30.04% | 95.29% |
CMYK | 17.28% | 0.00% | 30.04% |
4.71% |
HEX | C9 | F3 | AA |
Decimal | 201 | 243 | 170 |
Binary | 11001001 | 11110011 | 10101010 |
Octal | 311 | 363 | 252 |
Examples of css and html codes for elements with #C9F3AA color. Also use rgb(201,243,170) instead hex code.
.myTextColor { color: #C9F3AA; }
<p style="color:#C9F3AA">This sample text font color is #C9F3AA.</p>
This text font color is #C9F3AA.
.myBgColor { background-color: #C9F3AA; }
<div style="background-color:#C9F3AA">Inner text</div>
This div background color is #C9F3AA.
.myBorderColor { border: 1px solid #C9F3AA; }
<div style="border:3px solid #C9F3AA">Div</div>
This div border color is #C9F3AA.
.myOpacity80 { color: #C9F3AA; opacity: 0.8; }
<p style="color:#C9F3AA;opacity:0.8;">80%</p>
Text with #C9F3AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9F3AA;}
<p style="text-shadow: 3px 3px 1px #C9F3AA">Text here.</p>
This text has shadow with #C9F3AA color.
.textShadow {text-shadow: 3px 3px 1px #C9F3AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9F3AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9F3AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9F3AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9F3AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9F3AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9F3AA; -webkit-box-shadow: 1px 1px 3px 2px #C9F3AA; box-shadow: 1px 1px 3px 2px #C9F3AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9F3AA; -webkit-box-shadow: 1px 1px 3px 2px #C9F3AA; box-shadow:1px 1px 3px 2px #C9F3AA;">
Div content here</div>
This text has color #C9F3AA on black background.
This text has color #C9F3AA on white background.
This text has black color on #C9F3AA background.
This text has white color on #C9F3AA background.