HEX: #C9FAAE
RGB: (201,250,174)
#C9FAAE contains mainly red and green colors. Web safe color of #C9FAAE is #CCFF99 (or #CF9).
#C9FAAE color RGB value is (201,250,174).
RGB: (201,250,174) (79%,98%,68%)
R 201 of 255 = 79%
G 250 of 255 = 98%
B 174 of 255 = 68%
R + G + B ~ 82%. #C9FAAE is quite light color.
R + G + B =
201 + 250 + 174 = 625 (100%)
R 201 of 625 ~ 32.16%
G 250 of 625 ~ 40%
B 174 of 625 ~ 27.84%
#C9FAAE color CMYK value is (20,0,30,2).
CMYK: (20,0,30,2) C20M0Y30K2 (20%,0%,30%,2%) (0.20/0.00/0.30/0.02)
C9 | FA | AE | |
---|---|---|---|
RGB | 201 | 250 | 174 |
HSL | 99° | 88.37% | 83.14% |
HSB/HSV | 99° | 30.40% | 98.04% |
CMYK | 19.60% | 0.00% | 30.40% |
1.96% |
HEX | C9 | FA | AE |
Decimal | 201 | 250 | 174 |
Binary | 11001001 | 11111010 | 10101110 |
Octal | 311 | 372 | 256 |
Examples of css and html codes for elements with #C9FAAE color. Also use rgb(201,250,174) instead hex code.
.myTextColor { color: #C9FAAE; }
<p style="color:#C9FAAE">This sample text font color is #C9FAAE.</p>
This text font color is #C9FAAE.
.myBgColor { background-color: #C9FAAE; }
<div style="background-color:#C9FAAE">Inner text</div>
This div background color is #C9FAAE.
.myBorderColor { border: 1px solid #C9FAAE; }
<div style="border:3px solid #C9FAAE">Div</div>
This div border color is #C9FAAE.
.myOpacity80 { color: #C9FAAE; opacity: 0.8; }
<p style="color:#C9FAAE;opacity:0.8;">80%</p>
Text with #C9FAAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9FAAE;}
<p style="text-shadow: 3px 3px 1px #C9FAAE">Text here.</p>
This text has shadow with #C9FAAE color.
.textShadow {text-shadow: 3px 3px 1px #C9FAAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9FAAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9FAAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9FAAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9FAAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9FAAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9FAAE; -webkit-box-shadow: 1px 1px 3px 2px #C9FAAE; box-shadow: 1px 1px 3px 2px #C9FAAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9FAAE; -webkit-box-shadow: 1px 1px 3px 2px #C9FAAE; box-shadow:1px 1px 3px 2px #C9FAAE;">
Div content here</div>
This text has color #C9FAAE on black background.
This text has color #C9FAAE on white background.
This text has black color on #C9FAAE background.
This text has white color on #C9FAAE background.