HEX: #C5DAAD
RGB: (197,218,173)
#C5DAAD contains red, green and blue colors in about the same proportion. Web safe color of #C5DAAD is #CCCC99 (or #CC9).
#C5DAAD color RGB value is (197,218,173).
RGB: (197,218,173) (77%,85%,68%)
R 197 of 255 = 77%
G 218 of 255 = 85%
B 173 of 255 = 68%
R + G + B ~ 77%. #C5DAAD is quite light color.
R + G + B =
197 + 218 + 173 = 588 (100%)
R 197 of 588 ~ 33.5%
G 218 of 588 ~ 37.07%
B 173 of 588 ~ 29.42%
#C5DAAD color CMYK value is (10,0,21,15).
CMYK: (10,0,21,15) C10M0Y21K15 (10%,0%,21%,15%) (0.10/0.00/0.21/0.15)
C5 | DA | AD | |
---|---|---|---|
RGB | 197 | 218 | 173 |
HSL | 88° | 37.82% | 76.67% |
HSB/HSV | 88° | 20.64% | 85.49% |
CMYK | 9.63% | 0.00% | 20.64% |
14.51% |
HEX | C5 | DA | AD |
Decimal | 197 | 218 | 173 |
Binary | 11000101 | 11011010 | 10101101 |
Octal | 305 | 332 | 255 |
Examples of css and html codes for elements with #C5DAAD color. Also use rgb(197,218,173) instead hex code.
.myTextColor { color: #C5DAAD; }
<p style="color:#C5DAAD">This sample text font color is #C5DAAD.</p>
This text font color is #C5DAAD.
.myBgColor { background-color: #C5DAAD; }
<div style="background-color:#C5DAAD">Inner text</div>
This div background color is #C5DAAD.
.myBorderColor { border: 1px solid #C5DAAD; }
<div style="border:3px solid #C5DAAD">Div</div>
This div border color is #C5DAAD.
.myOpacity80 { color: #C5DAAD; opacity: 0.8; }
<p style="color:#C5DAAD;opacity:0.8;">80%</p>
Text with #C5DAAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5DAAD;}
<p style="text-shadow: 3px 3px 1px #C5DAAD">Text here.</p>
This text has shadow with #C5DAAD color.
.textShadow {text-shadow: 3px 3px 1px #C5DAAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5DAAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5DAAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5DAAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5DAAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5DAAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5DAAD; -webkit-box-shadow: 1px 1px 3px 2px #C5DAAD; box-shadow: 1px 1px 3px 2px #C5DAAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5DAAD; -webkit-box-shadow: 1px 1px 3px 2px #C5DAAD; box-shadow:1px 1px 3px 2px #C5DAAD;">
Div content here</div>
This text has color #C5DAAD on black background.
This text has color #C5DAAD on white background.
This text has black color on #C5DAAD background.
This text has white color on #C5DAAD background.