HEX: #C6F121
RGB: (198,241,33)
#C6F121 contains mainly red and green colors. Web safe color of #C6F121 is #CCFF33 (or #CF3).
#C6F121 color RGB value is (198,241,33).
RGB: (198,241,33) (78%,95%,13%)
R 198 of 255 = 78%
G 241 of 255 = 95%
B 33 of 255 = 13%
R + G + B ~ 62%. #C6F121 is quite light color.
R + G + B =
198 + 241 + 33 = 472 (100%)
R 198 of 472 ~ 41.95%
G 241 of 472 ~ 51.06%
B 33 of 472 ~ 6.99%
#C6F121 color CMYK value is (18,0,86,5).
CMYK: (18,0,86,5) C18M0Y86K5 (18%,0%,86%,5%) (0.18/0.00/0.86/0.05)
C6 | F1 | 21 | |
---|---|---|---|
RGB | 198 | 241 | 33 |
HSL | 72° | 88.14% | 53.73% |
HSB/HSV | 72° | 86.31% | 94.51% |
CMYK | 17.84% | 0.00% | 86.31% |
5.49% |
HEX | C6 | F1 | 21 |
Decimal | 198 | 241 | 33 |
Binary | 11000110 | 11110001 | 100001 |
Octal | 306 | 361 | 41 |
Examples of css and html codes for elements with #C6F121 color. Also use rgb(198,241,33) instead hex code.
.myTextColor { color: #C6F121; }
<p style="color:#C6F121">This sample text font color is #C6F121.</p>
This text font color is #C6F121.
.myBgColor { background-color: #C6F121; }
<div style="background-color:#C6F121">Inner text</div>
This div background color is #C6F121.
.myBorderColor { border: 1px solid #C6F121; }
<div style="border:3px solid #C6F121">Div</div>
This div border color is #C6F121.
.myOpacity80 { color: #C6F121; opacity: 0.8; }
<p style="color:#C6F121;opacity:0.8;">80%</p>
Text with #C6F121 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6F121;}
<p style="text-shadow: 3px 3px 1px #C6F121">Text here.</p>
This text has shadow with #C6F121 color.
.textShadow {text-shadow: 3px 3px 1px #C6F121, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6F121, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6F121 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6F121, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6F121, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6F121 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6F121; -webkit-box-shadow: 1px 1px 3px 2px #C6F121; box-shadow: 1px 1px 3px 2px #C6F121; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6F121; -webkit-box-shadow: 1px 1px 3px 2px #C6F121; box-shadow:1px 1px 3px 2px #C6F121;">
Div content here</div>
This text has color #C6F121 on black background.
This text has color #C6F121 on white background.
This text has black color on #C6F121 background.
This text has white color on #C6F121 background.