HEX: #C7DBA1
RGB: (199,219,161)
#C7DBA1 contains red, green and blue colors in about the same proportion. Web safe color of #C7DBA1 is #CCCC99 (or #CC9).
#C7DBA1 color RGB value is (199,219,161).
RGB: (199,219,161) (78%,86%,63%)
R 199 of 255 = 78%
G 219 of 255 = 86%
B 161 of 255 = 63%
R + G + B ~ 76%. #C7DBA1 is quite light color.
R + G + B =
199 + 219 + 161 = 579 (100%)
R 199 of 579 ~ 34.37%
G 219 of 579 ~ 37.82%
B 161 of 579 ~ 27.81%
#C7DBA1 color CMYK value is (9,0,26,14).
CMYK: (9,0,26,14) C9M0Y26K14 (9%,0%,26%,14%) (0.09/0.00/0.26/0.14)
C7 | DB | A1 | |
---|---|---|---|
RGB | 199 | 219 | 161 |
HSL | 81° | 44.62% | 74.51% |
HSB/HSV | 81° | 26.48% | 85.88% |
CMYK | 9.13% | 0.00% | 26.48% |
14.12% |
HEX | C7 | DB | A1 |
Decimal | 199 | 219 | 161 |
Binary | 11000111 | 11011011 | 10100001 |
Octal | 307 | 333 | 241 |
Examples of css and html codes for elements with #C7DBA1 color. Also use rgb(199,219,161) instead hex code.
.myTextColor { color: #C7DBA1; }
<p style="color:#C7DBA1">This sample text font color is #C7DBA1.</p>
This text font color is #C7DBA1.
.myBgColor { background-color: #C7DBA1; }
<div style="background-color:#C7DBA1">Inner text</div>
This div background color is #C7DBA1.
.myBorderColor { border: 1px solid #C7DBA1; }
<div style="border:3px solid #C7DBA1">Div</div>
This div border color is #C7DBA1.
.myOpacity80 { color: #C7DBA1; opacity: 0.8; }
<p style="color:#C7DBA1;opacity:0.8;">80%</p>
Text with #C7DBA1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7DBA1;}
<p style="text-shadow: 3px 3px 1px #C7DBA1">Text here.</p>
This text has shadow with #C7DBA1 color.
.textShadow {text-shadow: 3px 3px 1px #C7DBA1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7DBA1, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7DBA1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7DBA1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7DBA1, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7DBA1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7DBA1; -webkit-box-shadow: 1px 1px 3px 2px #C7DBA1; box-shadow: 1px 1px 3px 2px #C7DBA1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7DBA1; -webkit-box-shadow: 1px 1px 3px 2px #C7DBA1; box-shadow:1px 1px 3px 2px #C7DBA1;">
Div content here</div>
This text has color #C7DBA1 on black background.
This text has color #C7DBA1 on white background.
This text has black color on #C7DBA1 background.
This text has white color on #C7DBA1 background.