HEX: #B685BB
RGB: (182,133,187)
#B685BB contains red, green and blue colors in about the same proportion. Web safe color of #B685BB is #CC99CC (or #C9C).
#B685BB color RGB value is (182,133,187).
RGB: (182,133,187) (71%,52%,73%)
R 182 of 255 = 71%
G 133 of 255 = 52%
B 187 of 255 = 73%
R + G + B ~ 65%. #B685BB is quite light color.
R + G + B =
182 + 133 + 187 = 502 (100%)
R 182 of 502 ~ 36.25%
G 133 of 502 ~ 26.49%
B 187 of 502 ~ 37.25%
#B685BB color CMYK value is (3,29,0,27).
CMYK: (3,29,0,27) C3M29Y0K27 (3%,29%,0%,27%) (0.03/0.29/0.00/0.27)
B6 | 85 | BB | |
---|---|---|---|
RGB | 182 | 133 | 187 |
HSL | 294° | 28.42% | 62.75% |
HSB/HSV | 294° | 28.88% | 73.33% |
CMYK | 2.67% | 28.88% | 0.00% |
26.67% |
HEX | B6 | 85 | BB |
Decimal | 182 | 133 | 187 |
Binary | 10110110 | 10000101 | 10111011 |
Octal | 266 | 205 | 273 |
Examples of css and html codes for elements with #B685BB color. Also use rgb(182,133,187) instead hex code.
.myTextColor { color: #B685BB; }
<p style="color:#B685BB">This sample text font color is #B685BB.</p>
This text font color is #B685BB.
.myBgColor { background-color: #B685BB; }
<div style="background-color:#B685BB">Inner text</div>
This div background color is #B685BB.
.myBorderColor { border: 1px solid #B685BB; }
<div style="border:3px solid #B685BB">Div</div>
This div border color is #B685BB.
.myOpacity80 { color: #B685BB; opacity: 0.8; }
<p style="color:#B685BB;opacity:0.8;">80%</p>
Text with #B685BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B685BB;}
<p style="text-shadow: 3px 3px 1px #B685BB">Text here.</p>
This text has shadow with #B685BB color.
.textShadow {text-shadow: 3px 3px 1px #B685BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B685BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B685BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B685BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B685BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B685BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B685BB; -webkit-box-shadow: 1px 1px 3px 2px #B685BB; box-shadow: 1px 1px 3px 2px #B685BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B685BB; -webkit-box-shadow: 1px 1px 3px 2px #B685BB; box-shadow:1px 1px 3px 2px #B685BB;">
Div content here</div>
This text has color #B685BB on black background.
This text has color #B685BB on white background.
This text has black color on #B685BB background.
This text has white color on #B685BB background.