HEX: #B06655
RGB: (176,102,85)
#B06655 contains mainly red color. Web safe color of #B06655 is #996666 (or #966).
#B06655 color RGB value is (176,102,85).
RGB: (176,102,85) (69%,40%,33%)
R 176 of 255 = 69%
G 102 of 255 = 40%
B 85 of 255 = 33%
R + G + B ~ 47%. #B06655 is middle color (not dark and not light).
R + G + B =
176 + 102 + 85 = 363 (100%)
R 176 of 363 ~ 48.48%
G 102 of 363 ~ 28.1%
B 85 of 363 ~ 23.42%
#B06655 color CMYK value is (0,42,52,31).
CMYK: (0,42,52,31) C0M42Y52K31 (0%,42%,52%,31%) (0.00/0.42/0.52/0.31)
B0 | 66 | 55 | |
---|---|---|---|
RGB | 176 | 102 | 85 |
HSL | 11° | 36.55% | 51.18% |
HSB/HSV | 11° | 51.70% | 69.02% |
CMYK | 0.00% | 42.05% | 51.70% |
30.98% |
HEX | B0 | 66 | 55 |
Decimal | 176 | 102 | 85 |
Binary | 10110000 | 1100110 | 1010101 |
Octal | 260 | 146 | 125 |
Examples of css and html codes for elements with #B06655 color. Also use rgb(176,102,85) instead hex code.
.myTextColor { color: #B06655; }
<p style="color:#B06655">This sample text font color is #B06655.</p>
This text font color is #B06655.
.myBgColor { background-color: #B06655; }
<div style="background-color:#B06655">Inner text</div>
This div background color is #B06655.
.myBorderColor { border: 1px solid #B06655; }
<div style="border:3px solid #B06655">Div</div>
This div border color is #B06655.
.myOpacity80 { color: #B06655; opacity: 0.8; }
<p style="color:#B06655;opacity:0.8;">80%</p>
Text with #B06655 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B06655;}
<p style="text-shadow: 3px 3px 1px #B06655">Text here.</p>
This text has shadow with #B06655 color.
.textShadow {text-shadow: 3px 3px 1px #B06655, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B06655, 5px 5px 20px red">Text here.</p>
This text has shadow with #B06655 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B06655, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B06655, Direction=45, Strength=4)">Text</p>
This text has shadow with #B06655 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B06655; -webkit-box-shadow: 1px 1px 3px 2px #B06655; box-shadow: 1px 1px 3px 2px #B06655; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B06655; -webkit-box-shadow: 1px 1px 3px 2px #B06655; box-shadow:1px 1px 3px 2px #B06655;">
Div content here</div>
This text has color #B06655 on black background.
This text has color #B06655 on white background.
This text has black color on #B06655 background.
This text has white color on #B06655 background.