HEX: #C6DD9B
RGB: (198,221,155)
#C6DD9B contains mainly red and green colors. Web safe color of #C6DD9B is #CCCC99 (or #CC9).
#C6DD9B color RGB value is (198,221,155).
RGB: (198,221,155) (78%,87%,61%)
R 198 of 255 = 78%
G 221 of 255 = 87%
B 155 of 255 = 61%
R + G + B ~ 75%. #C6DD9B is quite light color.
R + G + B =
198 + 221 + 155 = 574 (100%)
R 198 of 574 ~ 34.49%
G 221 of 574 ~ 38.5%
B 155 of 574 ~ 27%
#C6DD9B color CMYK value is (10,0,30,13).
CMYK: (10,0,30,13) C10M0Y30K13 (10%,0%,30%,13%) (0.10/0.00/0.30/0.13)
C6 | DD | 9B | |
---|---|---|---|
RGB | 198 | 221 | 155 |
HSL | 81° | 49.25% | 73.73% |
HSB/HSV | 81° | 29.86% | 86.67% |
CMYK | 10.41% | 0.00% | 29.86% |
13.33% |
HEX | C6 | DD | 9B |
Decimal | 198 | 221 | 155 |
Binary | 11000110 | 11011101 | 10011011 |
Octal | 306 | 335 | 233 |
Examples of css and html codes for elements with #C6DD9B color. Also use rgb(198,221,155) instead hex code.
.myTextColor { color: #C6DD9B; }
<p style="color:#C6DD9B">This sample text font color is #C6DD9B.</p>
This text font color is #C6DD9B.
.myBgColor { background-color: #C6DD9B; }
<div style="background-color:#C6DD9B">Inner text</div>
This div background color is #C6DD9B.
.myBorderColor { border: 1px solid #C6DD9B; }
<div style="border:3px solid #C6DD9B">Div</div>
This div border color is #C6DD9B.
.myOpacity80 { color: #C6DD9B; opacity: 0.8; }
<p style="color:#C6DD9B;opacity:0.8;">80%</p>
Text with #C6DD9B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6DD9B;}
<p style="text-shadow: 3px 3px 1px #C6DD9B">Text here.</p>
This text has shadow with #C6DD9B color.
.textShadow {text-shadow: 3px 3px 1px #C6DD9B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6DD9B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6DD9B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6DD9B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6DD9B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6DD9B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6DD9B; -webkit-box-shadow: 1px 1px 3px 2px #C6DD9B; box-shadow: 1px 1px 3px 2px #C6DD9B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6DD9B; -webkit-box-shadow: 1px 1px 3px 2px #C6DD9B; box-shadow:1px 1px 3px 2px #C6DD9B;">
Div content here</div>
This text has color #C6DD9B on black background.
This text has color #C6DD9B on white background.
This text has black color on #C6DD9B background.
This text has white color on #C6DD9B background.