HEX: #C9FFB2
RGB: (201,255,178)
#C9FFB2 contains mainly red and green colors. Web safe color of #C9FFB2 is #CCFF99 (or #CF9).
#C9FFB2 color RGB value is (201,255,178).
RGB: (201,255,178) (79%,100%,70%)
R 201 of 255 = 79%
G 255 of 255 = 100%
B 178 of 255 = 70%
R + G + B ~ 83%. #C9FFB2 is quite light color.
R + G + B =
201 + 255 + 178 = 634 (100%)
R 201 of 634 ~ 31.7%
G 255 of 634 ~ 40.22%
B 178 of 634 ~ 28.08%
#C9FFB2 color CMYK value is (21,0,30,0).
CMYK: (21,0,30,0) C21M0Y30K0 (21%,0%,30%,0%) (0.21/0.00/0.30/0.00)
C9 | FF | B2 | |
---|---|---|---|
RGB | 201 | 255 | 178 |
HSL | 102° | 100.00% | 84.90% |
HSB/HSV | 102° | 30.20% | 100.00% |
CMYK | 21.18% | 0.00% | 30.20% |
0.00% |
HEX | C9 | FF | B2 |
Decimal | 201 | 255 | 178 |
Binary | 11001001 | 11111111 | 10110010 |
Octal | 311 | 377 | 262 |
Examples of css and html codes for elements with #C9FFB2 color. Also use rgb(201,255,178) instead hex code.
.myTextColor { color: #C9FFB2; }
<p style="color:#C9FFB2">This sample text font color is #C9FFB2.</p>
This text font color is #C9FFB2.
.myBgColor { background-color: #C9FFB2; }
<div style="background-color:#C9FFB2">Inner text</div>
This div background color is #C9FFB2.
.myBorderColor { border: 1px solid #C9FFB2; }
<div style="border:3px solid #C9FFB2">Div</div>
This div border color is #C9FFB2.
.myOpacity80 { color: #C9FFB2; opacity: 0.8; }
<p style="color:#C9FFB2;opacity:0.8;">80%</p>
Text with #C9FFB2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9FFB2;}
<p style="text-shadow: 3px 3px 1px #C9FFB2">Text here.</p>
This text has shadow with #C9FFB2 color.
.textShadow {text-shadow: 3px 3px 1px #C9FFB2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9FFB2, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9FFB2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9FFB2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9FFB2, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9FFB2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9FFB2; -webkit-box-shadow: 1px 1px 3px 2px #C9FFB2; box-shadow: 1px 1px 3px 2px #C9FFB2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9FFB2; -webkit-box-shadow: 1px 1px 3px 2px #C9FFB2; box-shadow:1px 1px 3px 2px #C9FFB2;">
Div content here</div>
This text has color #C9FFB2 on black background.
This text has color #C9FFB2 on white background.
This text has black color on #C9FFB2 background.
This text has white color on #C9FFB2 background.