HEX: #B5696C
RGB: (181,105,108)
#B5696C contains mainly red color. Web safe color of #B5696C is #CC6666 (or #C66).
#B5696C color RGB value is (181,105,108).
RGB: (181,105,108) (71%,41%,42%)
R 181 of 255 = 71%
G 105 of 255 = 41%
B 108 of 255 = 42%
R + G + B ~ 51%. #B5696C is middle color (not dark and not light).
R + G + B =
181 + 105 + 108 = 394 (100%)
R 181 of 394 ~ 45.94%
G 105 of 394 ~ 26.65%
B 108 of 394 ~ 27.41%
#B5696C color CMYK value is (0,42,40,29).
CMYK: (0,42,40,29) C0M42Y40K29 (0%,42%,40%,29%) (0.00/0.42/0.40/0.29)
B5 | 69 | 6C | |
---|---|---|---|
RGB | 181 | 105 | 108 |
HSL | 358° | 33.93% | 56.08% |
HSB/HSV | 358° | 41.99% | 70.98% |
CMYK | 0.00% | 41.99% | 40.33% |
29.02% |
HEX | B5 | 69 | 6C |
Decimal | 181 | 105 | 108 |
Binary | 10110101 | 1101001 | 1101100 |
Octal | 265 | 151 | 154 |
Examples of css and html codes for elements with #B5696C color. Also use rgb(181,105,108) instead hex code.
.myTextColor { color: #B5696C; }
<p style="color:#B5696C">This sample text font color is #B5696C.</p>
This text font color is #B5696C.
.myBgColor { background-color: #B5696C; }
<div style="background-color:#B5696C">Inner text</div>
This div background color is #B5696C.
.myBorderColor { border: 1px solid #B5696C; }
<div style="border:3px solid #B5696C">Div</div>
This div border color is #B5696C.
.myOpacity80 { color: #B5696C; opacity: 0.8; }
<p style="color:#B5696C;opacity:0.8;">80%</p>
Text with #B5696C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5696C;}
<p style="text-shadow: 3px 3px 1px #B5696C">Text here.</p>
This text has shadow with #B5696C color.
.textShadow {text-shadow: 3px 3px 1px #B5696C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5696C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5696C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5696C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5696C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5696C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5696C; -webkit-box-shadow: 1px 1px 3px 2px #B5696C; box-shadow: 1px 1px 3px 2px #B5696C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5696C; -webkit-box-shadow: 1px 1px 3px 2px #B5696C; box-shadow:1px 1px 3px 2px #B5696C;">
Div content here</div>
This text has color #B5696C on black background.
This text has color #B5696C on white background.
This text has black color on #B5696C background.
This text has white color on #B5696C background.