HEX: #B695BE
RGB: (182,149,190)
#B695BE contains red, green and blue colors in about the same proportion. Web safe color of #B695BE is #CC99CC (or #C9C).
#B695BE color RGB value is (182,149,190).
RGB: (182,149,190) (71%,58%,75%)
R 182 of 255 = 71%
G 149 of 255 = 58%
B 190 of 255 = 75%
R + G + B ~ 68%. #B695BE is quite light color.
R + G + B =
182 + 149 + 190 = 521 (100%)
R 182 of 521 ~ 34.93%
G 149 of 521 ~ 28.6%
B 190 of 521 ~ 36.47%
#B695BE color CMYK value is (4,22,0,25).
CMYK: (4,22,0,25) C4M22Y0K25 (4%,22%,0%,25%) (0.04/0.22/0.00/0.25)
B6 | 95 | BE | |
---|---|---|---|
RGB | 182 | 149 | 190 |
HSL | 288° | 23.98% | 66.47% |
HSB/HSV | 288° | 21.58% | 74.51% |
CMYK | 4.21% | 21.58% | 0.00% |
25.49% |
HEX | B6 | 95 | BE |
Decimal | 182 | 149 | 190 |
Binary | 10110110 | 10010101 | 10111110 |
Octal | 266 | 225 | 276 |
Examples of css and html codes for elements with #B695BE color. Also use rgb(182,149,190) instead hex code.
.myTextColor { color: #B695BE; }
<p style="color:#B695BE">This sample text font color is #B695BE.</p>
This text font color is #B695BE.
.myBgColor { background-color: #B695BE; }
<div style="background-color:#B695BE">Inner text</div>
This div background color is #B695BE.
.myBorderColor { border: 1px solid #B695BE; }
<div style="border:3px solid #B695BE">Div</div>
This div border color is #B695BE.
.myOpacity80 { color: #B695BE; opacity: 0.8; }
<p style="color:#B695BE;opacity:0.8;">80%</p>
Text with #B695BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B695BE;}
<p style="text-shadow: 3px 3px 1px #B695BE">Text here.</p>
This text has shadow with #B695BE color.
.textShadow {text-shadow: 3px 3px 1px #B695BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B695BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B695BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B695BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B695BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B695BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B695BE; -webkit-box-shadow: 1px 1px 3px 2px #B695BE; box-shadow: 1px 1px 3px 2px #B695BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B695BE; -webkit-box-shadow: 1px 1px 3px 2px #B695BE; box-shadow:1px 1px 3px 2px #B695BE;">
Div content here</div>
This text has color #B695BE on black background.
This text has color #B695BE on white background.
This text has black color on #B695BE background.
This text has white color on #B695BE background.