HEX: #C4B0BE
RGB: (196,176,190)
#C4B0BE contains red, green and blue colors in about the same proportion. Web safe color of #C4B0BE is #CC99CC (or #C9C).
#C4B0BE color RGB value is (196,176,190).
RGB: (196,176,190) (77%,69%,75%)
R 196 of 255 = 77%
G 176 of 255 = 69%
B 190 of 255 = 75%
R + G + B ~ 74%. #C4B0BE is quite light color.
R + G + B =
196 + 176 + 190 = 562 (100%)
R 196 of 562 ~ 34.88%
G 176 of 562 ~ 31.32%
B 190 of 562 ~ 33.81%
#C4B0BE color CMYK value is (0,10,3,23).
CMYK: (0,10,3,23) C0M10Y3K23 (0%,10%,3%,23%) (0.00/0.10/0.03/0.23)
C4 | B0 | BE | |
---|---|---|---|
RGB | 196 | 176 | 190 |
HSL | 318° | 14.49% | 72.94% |
HSB/HSV | 318° | 10.20% | 76.86% |
CMYK | 0.00% | 10.20% | 3.06% |
23.14% |
HEX | C4 | B0 | BE |
Decimal | 196 | 176 | 190 |
Binary | 11000100 | 10110000 | 10111110 |
Octal | 304 | 260 | 276 |
Examples of css and html codes for elements with #C4B0BE color. Also use rgb(196,176,190) instead hex code.
.myTextColor { color: #C4B0BE; }
<p style="color:#C4B0BE">This sample text font color is #C4B0BE.</p>
This text font color is #C4B0BE.
.myBgColor { background-color: #C4B0BE; }
<div style="background-color:#C4B0BE">Inner text</div>
This div background color is #C4B0BE.
.myBorderColor { border: 1px solid #C4B0BE; }
<div style="border:3px solid #C4B0BE">Div</div>
This div border color is #C4B0BE.
.myOpacity80 { color: #C4B0BE; opacity: 0.8; }
<p style="color:#C4B0BE;opacity:0.8;">80%</p>
Text with #C4B0BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4B0BE;}
<p style="text-shadow: 3px 3px 1px #C4B0BE">Text here.</p>
This text has shadow with #C4B0BE color.
.textShadow {text-shadow: 3px 3px 1px #C4B0BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4B0BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4B0BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4B0BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4B0BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4B0BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4B0BE; -webkit-box-shadow: 1px 1px 3px 2px #C4B0BE; box-shadow: 1px 1px 3px 2px #C4B0BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4B0BE; -webkit-box-shadow: 1px 1px 3px 2px #C4B0BE; box-shadow:1px 1px 3px 2px #C4B0BE;">
Div content here</div>
This text has color #C4B0BE on black background.
This text has color #C4B0BE on white background.
This text has black color on #C4B0BE background.
This text has white color on #C4B0BE background.