HEX: #C5DFAF
RGB: (197,223,175)
#C5DFAF contains red, green and blue colors in about the same proportion. Web safe color of #C5DFAF is #CCCC99 (or #CC9).
#C5DFAF color RGB value is (197,223,175).
RGB: (197,223,175) (77%,87%,69%)
R 197 of 255 = 77%
G 223 of 255 = 87%
B 175 of 255 = 69%
R + G + B ~ 78%. #C5DFAF is quite light color.
R + G + B =
197 + 223 + 175 = 595 (100%)
R 197 of 595 ~ 33.11%
G 223 of 595 ~ 37.48%
B 175 of 595 ~ 29.41%
#C5DFAF color CMYK value is (12,0,22,13).
CMYK: (12,0,22,13) C12M0Y22K13 (12%,0%,22%,13%) (0.12/0.00/0.22/0.13)
C5 | DF | AF | |
---|---|---|---|
RGB | 197 | 223 | 175 |
HSL | 93° | 42.86% | 78.04% |
HSB/HSV | 93° | 21.52% | 87.45% |
CMYK | 11.66% | 0.00% | 21.52% |
12.55% |
HEX | C5 | DF | AF |
Decimal | 197 | 223 | 175 |
Binary | 11000101 | 11011111 | 10101111 |
Octal | 305 | 337 | 257 |
Examples of css and html codes for elements with #C5DFAF color. Also use rgb(197,223,175) instead hex code.
.myTextColor { color: #C5DFAF; }
<p style="color:#C5DFAF">This sample text font color is #C5DFAF.</p>
This text font color is #C5DFAF.
.myBgColor { background-color: #C5DFAF; }
<div style="background-color:#C5DFAF">Inner text</div>
This div background color is #C5DFAF.
.myBorderColor { border: 1px solid #C5DFAF; }
<div style="border:3px solid #C5DFAF">Div</div>
This div border color is #C5DFAF.
.myOpacity80 { color: #C5DFAF; opacity: 0.8; }
<p style="color:#C5DFAF;opacity:0.8;">80%</p>
Text with #C5DFAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5DFAF;}
<p style="text-shadow: 3px 3px 1px #C5DFAF">Text here.</p>
This text has shadow with #C5DFAF color.
.textShadow {text-shadow: 3px 3px 1px #C5DFAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5DFAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5DFAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5DFAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5DFAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5DFAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5DFAF; -webkit-box-shadow: 1px 1px 3px 2px #C5DFAF; box-shadow: 1px 1px 3px 2px #C5DFAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5DFAF; -webkit-box-shadow: 1px 1px 3px 2px #C5DFAF; box-shadow:1px 1px 3px 2px #C5DFAF;">
Div content here</div>
This text has color #C5DFAF on black background.
This text has color #C5DFAF on white background.
This text has black color on #C5DFAF background.
This text has white color on #C5DFAF background.