HEX: #C5BABC
RGB: (197,186,188)
#C5BABC contains red, green and blue colors in about the same proportion. Web safe color of #C5BABC is #CCCCCC (or #CCC).
#C5BABC color RGB value is (197,186,188).
RGB: (197,186,188) (77%,73%,74%)
R 197 of 255 = 77%
G 186 of 255 = 73%
B 188 of 255 = 74%
R + G + B ~ 75%. #C5BABC is quite light color.
R + G + B =
197 + 186 + 188 = 571 (100%)
R 197 of 571 ~ 34.5%
G 186 of 571 ~ 32.57%
B 188 of 571 ~ 32.92%
#C5BABC color CMYK value is (0,6,5,23).
CMYK: (0,6,5,23) C0M6Y5K23 (0%,6%,5%,23%) (0.00/0.06/0.05/0.23)
C5 | BA | BC | |
---|---|---|---|
RGB | 197 | 186 | 188 |
HSL | 349° | 8.66% | 75.10% |
HSB/HSV | 349° | 5.58% | 77.25% |
CMYK | 0.00% | 5.58% | 4.57% |
22.75% |
HEX | C5 | BA | BC |
Decimal | 197 | 186 | 188 |
Binary | 11000101 | 10111010 | 10111100 |
Octal | 305 | 272 | 274 |
Examples of css and html codes for elements with #C5BABC color. Also use rgb(197,186,188) instead hex code.
.myTextColor { color: #C5BABC; }
<p style="color:#C5BABC">This sample text font color is #C5BABC.</p>
This text font color is #C5BABC.
.myBgColor { background-color: #C5BABC; }
<div style="background-color:#C5BABC">Inner text</div>
This div background color is #C5BABC.
.myBorderColor { border: 1px solid #C5BABC; }
<div style="border:3px solid #C5BABC">Div</div>
This div border color is #C5BABC.
.myOpacity80 { color: #C5BABC; opacity: 0.8; }
<p style="color:#C5BABC;opacity:0.8;">80%</p>
Text with #C5BABC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5BABC;}
<p style="text-shadow: 3px 3px 1px #C5BABC">Text here.</p>
This text has shadow with #C5BABC color.
.textShadow {text-shadow: 3px 3px 1px #C5BABC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5BABC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5BABC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5BABC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5BABC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5BABC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5BABC; -webkit-box-shadow: 1px 1px 3px 2px #C5BABC; box-shadow: 1px 1px 3px 2px #C5BABC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5BABC; -webkit-box-shadow: 1px 1px 3px 2px #C5BABC; box-shadow:1px 1px 3px 2px #C5BABC;">
Div content here</div>
This text has color #C5BABC on black background.
This text has color #C5BABC on white background.
This text has black color on #C5BABC background.
This text has white color on #C5BABC background.