HEX: #C5F67C
RGB: (197,246,124)
#C5F67C contains mainly red and green colors. Web safe color of #C5F67C is #CCFF66 (or #CF6).
#C5F67C color RGB value is (197,246,124).
RGB: (197,246,124) (77%,96%,49%)
R 197 of 255 = 77%
G 246 of 255 = 96%
B 124 of 255 = 49%
R + G + B ~ 74%. #C5F67C is quite light color.
R + G + B =
197 + 246 + 124 = 567 (100%)
R 197 of 567 ~ 34.74%
G 246 of 567 ~ 43.39%
B 124 of 567 ~ 21.87%
#C5F67C color CMYK value is (20,0,50,4).
CMYK: (20,0,50,4) C20M0Y50K4 (20%,0%,50%,4%) (0.20/0.00/0.50/0.04)
C5 | F6 | 7C | |
---|---|---|---|
RGB | 197 | 246 | 124 |
HSL | 84° | 87.14% | 72.55% |
HSB/HSV | 84° | 49.59% | 96.47% |
CMYK | 19.92% | 0.00% | 49.59% |
3.53% |
HEX | C5 | F6 | 7C |
Decimal | 197 | 246 | 124 |
Binary | 11000101 | 11110110 | 1111100 |
Octal | 305 | 366 | 174 |
Examples of css and html codes for elements with #C5F67C color. Also use rgb(197,246,124) instead hex code.
.myTextColor { color: #C5F67C; }
<p style="color:#C5F67C">This sample text font color is #C5F67C.</p>
This text font color is #C5F67C.
.myBgColor { background-color: #C5F67C; }
<div style="background-color:#C5F67C">Inner text</div>
This div background color is #C5F67C.
.myBorderColor { border: 1px solid #C5F67C; }
<div style="border:3px solid #C5F67C">Div</div>
This div border color is #C5F67C.
.myOpacity80 { color: #C5F67C; opacity: 0.8; }
<p style="color:#C5F67C;opacity:0.8;">80%</p>
Text with #C5F67C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5F67C;}
<p style="text-shadow: 3px 3px 1px #C5F67C">Text here.</p>
This text has shadow with #C5F67C color.
.textShadow {text-shadow: 3px 3px 1px #C5F67C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5F67C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5F67C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5F67C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5F67C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5F67C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5F67C; -webkit-box-shadow: 1px 1px 3px 2px #C5F67C; box-shadow: 1px 1px 3px 2px #C5F67C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5F67C; -webkit-box-shadow: 1px 1px 3px 2px #C5F67C; box-shadow:1px 1px 3px 2px #C5F67C;">
Div content here</div>
This text has color #C5F67C on black background.
This text has color #C5F67C on white background.
This text has black color on #C5F67C background.
This text has white color on #C5F67C background.