HEX: #C7DDBD
RGB: (199,221,189)
#C7DDBD contains red, green and blue colors in about the same proportion. Web safe color of #C7DDBD is #CCCCCC (or #CCC).
#C7DDBD color RGB value is (199,221,189).
RGB: (199,221,189) (78%,87%,74%)
R 199 of 255 = 78%
G 221 of 255 = 87%
B 189 of 255 = 74%
R + G + B ~ 80%. #C7DDBD is quite light color.
R + G + B =
199 + 221 + 189 = 609 (100%)
R 199 of 609 ~ 32.68%
G 221 of 609 ~ 36.29%
B 189 of 609 ~ 31.03%
#C7DDBD color CMYK value is (10,0,14,13).
CMYK: (10,0,14,13) C10M0Y14K13 (10%,0%,14%,13%) (0.10/0.00/0.14/0.13)
C7 | DD | BD | |
---|---|---|---|
RGB | 199 | 221 | 189 |
HSL | 101° | 32.00% | 80.39% |
HSB/HSV | 101° | 14.48% | 86.67% |
CMYK | 9.95% | 0.00% | 14.48% |
13.33% |
HEX | C7 | DD | BD |
Decimal | 199 | 221 | 189 |
Binary | 11000111 | 11011101 | 10111101 |
Octal | 307 | 335 | 275 |
Examples of css and html codes for elements with #C7DDBD color. Also use rgb(199,221,189) instead hex code.
.myTextColor { color: #C7DDBD; }
<p style="color:#C7DDBD">This sample text font color is #C7DDBD.</p>
This text font color is #C7DDBD.
.myBgColor { background-color: #C7DDBD; }
<div style="background-color:#C7DDBD">Inner text</div>
This div background color is #C7DDBD.
.myBorderColor { border: 1px solid #C7DDBD; }
<div style="border:3px solid #C7DDBD">Div</div>
This div border color is #C7DDBD.
.myOpacity80 { color: #C7DDBD; opacity: 0.8; }
<p style="color:#C7DDBD;opacity:0.8;">80%</p>
Text with #C7DDBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7DDBD;}
<p style="text-shadow: 3px 3px 1px #C7DDBD">Text here.</p>
This text has shadow with #C7DDBD color.
.textShadow {text-shadow: 3px 3px 1px #C7DDBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7DDBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7DDBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7DDBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7DDBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7DDBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7DDBD; -webkit-box-shadow: 1px 1px 3px 2px #C7DDBD; box-shadow: 1px 1px 3px 2px #C7DDBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7DDBD; -webkit-box-shadow: 1px 1px 3px 2px #C7DDBD; box-shadow:1px 1px 3px 2px #C7DDBD;">
Div content here</div>
This text has color #C7DDBD on black background.
This text has color #C7DDBD on white background.
This text has black color on #C7DDBD background.
This text has white color on #C7DDBD background.