HEX: #C7E098
RGB: (199,224,152)
#C7E098 contains mainly red and green colors. Web safe color of #C7E098 is #CCCC99 (or #CC9).
#C7E098 color RGB value is (199,224,152).
RGB: (199,224,152) (78%,88%,60%)
R 199 of 255 = 78%
G 224 of 255 = 88%
B 152 of 255 = 60%
R + G + B ~ 75%. #C7E098 is quite light color.
R + G + B =
199 + 224 + 152 = 575 (100%)
R 199 of 575 ~ 34.61%
G 224 of 575 ~ 38.96%
B 152 of 575 ~ 26.43%
#C7E098 color CMYK value is (11,0,32,12).
CMYK: (11,0,32,12) C11M0Y32K12 (11%,0%,32%,12%) (0.11/0.00/0.32/0.12)
C7 | E0 | 98 | |
---|---|---|---|
RGB | 199 | 224 | 152 |
HSL | 81° | 53.73% | 73.73% |
HSB/HSV | 81° | 32.14% | 87.84% |
CMYK | 11.16% | 0.00% | 32.14% |
12.16% |
HEX | C7 | E0 | 98 |
Decimal | 199 | 224 | 152 |
Binary | 11000111 | 11100000 | 10011000 |
Octal | 307 | 340 | 230 |
Examples of css and html codes for elements with #C7E098 color. Also use rgb(199,224,152) instead hex code.
.myTextColor { color: #C7E098; }
<p style="color:#C7E098">This sample text font color is #C7E098.</p>
This text font color is #C7E098.
.myBgColor { background-color: #C7E098; }
<div style="background-color:#C7E098">Inner text</div>
This div background color is #C7E098.
.myBorderColor { border: 1px solid #C7E098; }
<div style="border:3px solid #C7E098">Div</div>
This div border color is #C7E098.
.myOpacity80 { color: #C7E098; opacity: 0.8; }
<p style="color:#C7E098;opacity:0.8;">80%</p>
Text with #C7E098 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7E098;}
<p style="text-shadow: 3px 3px 1px #C7E098">Text here.</p>
This text has shadow with #C7E098 color.
.textShadow {text-shadow: 3px 3px 1px #C7E098, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7E098, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7E098 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7E098, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7E098, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7E098 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7E098; -webkit-box-shadow: 1px 1px 3px 2px #C7E098; box-shadow: 1px 1px 3px 2px #C7E098; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7E098; -webkit-box-shadow: 1px 1px 3px 2px #C7E098; box-shadow:1px 1px 3px 2px #C7E098;">
Div content here</div>
This text has color #C7E098 on black background.
This text has color #C7E098 on white background.
This text has black color on #C7E098 background.
This text has white color on #C7E098 background.