HEX: #C6E08D
RGB: (198,224,141)
#C6E08D contains mainly red and green colors. Web safe color of #C6E08D is #CCCC99 (or #CC9).
#C6E08D color RGB value is (198,224,141).
RGB: (198,224,141) (78%,88%,55%)
R 198 of 255 = 78%
G 224 of 255 = 88%
B 141 of 255 = 55%
R + G + B ~ 74%. #C6E08D is quite light color.
R + G + B =
198 + 224 + 141 = 563 (100%)
R 198 of 563 ~ 35.17%
G 224 of 563 ~ 39.79%
B 141 of 563 ~ 25.04%
#C6E08D color CMYK value is (12,0,37,12).
CMYK: (12,0,37,12) C12M0Y37K12 (12%,0%,37%,12%) (0.12/0.00/0.37/0.12)
C6 | E0 | 8D | |
---|---|---|---|
RGB | 198 | 224 | 141 |
HSL | 79° | 57.24% | 71.57% |
HSB/HSV | 79° | 37.05% | 87.84% |
CMYK | 11.61% | 0.00% | 37.05% |
12.16% |
HEX | C6 | E0 | 8D |
Decimal | 198 | 224 | 141 |
Binary | 11000110 | 11100000 | 10001101 |
Octal | 306 | 340 | 215 |
Examples of css and html codes for elements with #C6E08D color. Also use rgb(198,224,141) instead hex code.
.myTextColor { color: #C6E08D; }
<p style="color:#C6E08D">This sample text font color is #C6E08D.</p>
This text font color is #C6E08D.
.myBgColor { background-color: #C6E08D; }
<div style="background-color:#C6E08D">Inner text</div>
This div background color is #C6E08D.
.myBorderColor { border: 1px solid #C6E08D; }
<div style="border:3px solid #C6E08D">Div</div>
This div border color is #C6E08D.
.myOpacity80 { color: #C6E08D; opacity: 0.8; }
<p style="color:#C6E08D;opacity:0.8;">80%</p>
Text with #C6E08D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6E08D;}
<p style="text-shadow: 3px 3px 1px #C6E08D">Text here.</p>
This text has shadow with #C6E08D color.
.textShadow {text-shadow: 3px 3px 1px #C6E08D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6E08D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6E08D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6E08D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6E08D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6E08D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6E08D; -webkit-box-shadow: 1px 1px 3px 2px #C6E08D; box-shadow: 1px 1px 3px 2px #C6E08D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6E08D; -webkit-box-shadow: 1px 1px 3px 2px #C6E08D; box-shadow:1px 1px 3px 2px #C6E08D;">
Div content here</div>
This text has color #C6E08D on black background.
This text has color #C6E08D on white background.
This text has black color on #C6E08D background.
This text has white color on #C6E08D background.