HEX: #C9EFA2
RGB: (201,239,162)
#C9EFA2 contains mainly red and green colors. Web safe color of #C9EFA2 is #CCFF99 (or #CF9).
#C9EFA2 color RGB value is (201,239,162).
RGB: (201,239,162) (79%,94%,64%)
R 201 of 255 = 79%
G 239 of 255 = 94%
B 162 of 255 = 64%
R + G + B ~ 79%. #C9EFA2 is quite light color.
R + G + B =
201 + 239 + 162 = 602 (100%)
R 201 of 602 ~ 33.39%
G 239 of 602 ~ 39.7%
B 162 of 602 ~ 26.91%
#C9EFA2 color CMYK value is (16,0,32,6).
CMYK: (16,0,32,6) C16M0Y32K6 (16%,0%,32%,6%) (0.16/0.00/0.32/0.06)
C9 | EF | A2 | |
---|---|---|---|
RGB | 201 | 239 | 162 |
HSL | 90° | 70.64% | 78.63% |
HSB/HSV | 90° | 32.22% | 93.73% |
CMYK | 15.90% | 0.00% | 32.22% |
6.27% |
HEX | C9 | EF | A2 |
Decimal | 201 | 239 | 162 |
Binary | 11001001 | 11101111 | 10100010 |
Octal | 311 | 357 | 242 |
Examples of css and html codes for elements with #C9EFA2 color. Also use rgb(201,239,162) instead hex code.
.myTextColor { color: #C9EFA2; }
<p style="color:#C9EFA2">This sample text font color is #C9EFA2.</p>
This text font color is #C9EFA2.
.myBgColor { background-color: #C9EFA2; }
<div style="background-color:#C9EFA2">Inner text</div>
This div background color is #C9EFA2.
.myBorderColor { border: 1px solid #C9EFA2; }
<div style="border:3px solid #C9EFA2">Div</div>
This div border color is #C9EFA2.
.myOpacity80 { color: #C9EFA2; opacity: 0.8; }
<p style="color:#C9EFA2;opacity:0.8;">80%</p>
Text with #C9EFA2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9EFA2;}
<p style="text-shadow: 3px 3px 1px #C9EFA2">Text here.</p>
This text has shadow with #C9EFA2 color.
.textShadow {text-shadow: 3px 3px 1px #C9EFA2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9EFA2, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9EFA2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9EFA2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9EFA2, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9EFA2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9EFA2; -webkit-box-shadow: 1px 1px 3px 2px #C9EFA2; box-shadow: 1px 1px 3px 2px #C9EFA2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9EFA2; -webkit-box-shadow: 1px 1px 3px 2px #C9EFA2; box-shadow:1px 1px 3px 2px #C9EFA2;">
Div content here</div>
This text has color #C9EFA2 on black background.
This text has color #C9EFA2 on white background.
This text has black color on #C9EFA2 background.
This text has white color on #C9EFA2 background.