HEX: #B6687A
RGB: (182,104,122)
#B6687A contains mainly red color. Web safe color of #B6687A is #CC6666 (or #C66).
#B6687A color RGB value is (182,104,122).
RGB: (182,104,122) (71%,41%,48%)
R 182 of 255 = 71%
G 104 of 255 = 41%
B 122 of 255 = 48%
R + G + B ~ 53%. #B6687A is middle color (not dark and not light).
R + G + B =
182 + 104 + 122 = 408 (100%)
R 182 of 408 ~ 44.61%
G 104 of 408 ~ 25.49%
B 122 of 408 ~ 29.9%
#B6687A color CMYK value is (0,43,33,29).
CMYK: (0,43,33,29) C0M43Y33K29 (0%,43%,33%,29%) (0.00/0.43/0.33/0.29)
B6 | 68 | 7A | |
---|---|---|---|
RGB | 182 | 104 | 122 |
HSL | 346° | 34.82% | 56.08% |
HSB/HSV | 346° | 42.86% | 71.37% |
CMYK | 0.00% | 42.86% | 32.97% |
28.63% |
HEX | B6 | 68 | 7A |
Decimal | 182 | 104 | 122 |
Binary | 10110110 | 1101000 | 1111010 |
Octal | 266 | 150 | 172 |
Examples of css and html codes for elements with #B6687A color. Also use rgb(182,104,122) instead hex code.
.myTextColor { color: #B6687A; }
<p style="color:#B6687A">This sample text font color is #B6687A.</p>
This text font color is #B6687A.
.myBgColor { background-color: #B6687A; }
<div style="background-color:#B6687A">Inner text</div>
This div background color is #B6687A.
.myBorderColor { border: 1px solid #B6687A; }
<div style="border:3px solid #B6687A">Div</div>
This div border color is #B6687A.
.myOpacity80 { color: #B6687A; opacity: 0.8; }
<p style="color:#B6687A;opacity:0.8;">80%</p>
Text with #B6687A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6687A;}
<p style="text-shadow: 3px 3px 1px #B6687A">Text here.</p>
This text has shadow with #B6687A color.
.textShadow {text-shadow: 3px 3px 1px #B6687A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6687A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6687A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6687A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6687A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6687A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6687A; -webkit-box-shadow: 1px 1px 3px 2px #B6687A; box-shadow: 1px 1px 3px 2px #B6687A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6687A; -webkit-box-shadow: 1px 1px 3px 2px #B6687A; box-shadow:1px 1px 3px 2px #B6687A;">
Div content here</div>
This text has color #B6687A on black background.
This text has color #B6687A on white background.
This text has black color on #B6687A background.
This text has white color on #B6687A background.