HEX: #C4FF80
RGB: (196,255,128)
#C4FF80 contains mainly red and green colors. Web safe color of #C4FF80 is #CCFF66 (or #CF6).
#C4FF80 color RGB value is (196,255,128).
RGB: (196,255,128) (77%,100%,50%)
R 196 of 255 = 77%
G 255 of 255 = 100%
B 128 of 255 = 50%
R + G + B ~ 76%. #C4FF80 is quite light color.
R + G + B =
196 + 255 + 128 = 579 (100%)
R 196 of 579 ~ 33.85%
G 255 of 579 ~ 44.04%
B 128 of 579 ~ 22.11%
#C4FF80 color CMYK value is (23,0,50,0).
CMYK: (23,0,50,0) C23M0Y50K0 (23%,0%,50%,0%) (0.23/0.00/0.50/0.00)
C4 | FF | 80 | |
---|---|---|---|
RGB | 196 | 255 | 128 |
HSL | 88° | 100.00% | 75.10% |
HSB/HSV | 88° | 49.80% | 100.00% |
CMYK | 23.14% | 0.00% | 49.80% |
0.00% |
HEX | C4 | FF | 80 |
Decimal | 196 | 255 | 128 |
Binary | 11000100 | 11111111 | 10000000 |
Octal | 304 | 377 | 200 |
Examples of css and html codes for elements with #C4FF80 color. Also use rgb(196,255,128) instead hex code.
.myTextColor { color: #C4FF80; }
<p style="color:#C4FF80">This sample text font color is #C4FF80.</p>
This text font color is #C4FF80.
.myBgColor { background-color: #C4FF80; }
<div style="background-color:#C4FF80">Inner text</div>
This div background color is #C4FF80.
.myBorderColor { border: 1px solid #C4FF80; }
<div style="border:3px solid #C4FF80">Div</div>
This div border color is #C4FF80.
.myOpacity80 { color: #C4FF80; opacity: 0.8; }
<p style="color:#C4FF80;opacity:0.8;">80%</p>
Text with #C4FF80 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4FF80;}
<p style="text-shadow: 3px 3px 1px #C4FF80">Text here.</p>
This text has shadow with #C4FF80 color.
.textShadow {text-shadow: 3px 3px 1px #C4FF80, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4FF80, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4FF80 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4FF80, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4FF80, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4FF80 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4FF80; -webkit-box-shadow: 1px 1px 3px 2px #C4FF80; box-shadow: 1px 1px 3px 2px #C4FF80; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4FF80; -webkit-box-shadow: 1px 1px 3px 2px #C4FF80; box-shadow:1px 1px 3px 2px #C4FF80;">
Div content here</div>
This text has color #C4FF80 on black background.
This text has color #C4FF80 on white background.
This text has black color on #C4FF80 background.
This text has white color on #C4FF80 background.