HEX: #C5CEBA
RGB: (197,206,186)
#C5CEBA contains red, green and blue colors in about the same proportion. Web safe color of #C5CEBA is #CCCCCC (or #CCC).
#C5CEBA color RGB value is (197,206,186).
RGB: (197,206,186) (77%,81%,73%)
R 197 of 255 = 77%
G 206 of 255 = 81%
B 186 of 255 = 73%
R + G + B ~ 77%. #C5CEBA is quite light color.
R + G + B =
197 + 206 + 186 = 589 (100%)
R 197 of 589 ~ 33.45%
G 206 of 589 ~ 34.97%
B 186 of 589 ~ 31.58%
#C5CEBA color CMYK value is (4,0,10,19).
CMYK: (4,0,10,19) C4M0Y10K19 (4%,0%,10%,19%) (0.04/0.00/0.10/0.19)
C5 | CE | BA | |
---|---|---|---|
RGB | 197 | 206 | 186 |
HSL | 87° | 16.95% | 76.86% |
HSB/HSV | 87° | 9.71% | 80.78% |
CMYK | 4.37% | 0.00% | 9.71% |
19.22% |
HEX | C5 | CE | BA |
Decimal | 197 | 206 | 186 |
Binary | 11000101 | 11001110 | 10111010 |
Octal | 305 | 316 | 272 |
Examples of css and html codes for elements with #C5CEBA color. Also use rgb(197,206,186) instead hex code.
.myTextColor { color: #C5CEBA; }
<p style="color:#C5CEBA">This sample text font color is #C5CEBA.</p>
This text font color is #C5CEBA.
.myBgColor { background-color: #C5CEBA; }
<div style="background-color:#C5CEBA">Inner text</div>
This div background color is #C5CEBA.
.myBorderColor { border: 1px solid #C5CEBA; }
<div style="border:3px solid #C5CEBA">Div</div>
This div border color is #C5CEBA.
.myOpacity80 { color: #C5CEBA; opacity: 0.8; }
<p style="color:#C5CEBA;opacity:0.8;">80%</p>
Text with #C5CEBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5CEBA;}
<p style="text-shadow: 3px 3px 1px #C5CEBA">Text here.</p>
This text has shadow with #C5CEBA color.
.textShadow {text-shadow: 3px 3px 1px #C5CEBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5CEBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5CEBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5CEBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5CEBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5CEBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5CEBA; -webkit-box-shadow: 1px 1px 3px 2px #C5CEBA; box-shadow: 1px 1px 3px 2px #C5CEBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5CEBA; -webkit-box-shadow: 1px 1px 3px 2px #C5CEBA; box-shadow:1px 1px 3px 2px #C5CEBA;">
Div content here</div>
This text has color #C5CEBA on black background.
This text has color #C5CEBA on white background.
This text has black color on #C5CEBA background.
This text has white color on #C5CEBA background.