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