HEX: #BB7595
RGB: (187,117,149)
#BB7595 contains mainly red and blue colors. Web safe color of #BB7595 is #CC6699 (or #C69).
#BB7595 color RGB value is (187,117,149).
RGB: (187,117,149) (73%,46%,58%)
R 187 of 255 = 73%
G 117 of 255 = 46%
B 149 of 255 = 58%
R + G + B ~ 59%. #BB7595 is middle color (not dark and not light).
R + G + B =
187 + 117 + 149 = 453 (100%)
R 187 of 453 ~ 41.28%
G 117 of 453 ~ 25.83%
B 149 of 453 ~ 32.89%
#BB7595 color CMYK value is (0,37,20,27).
CMYK: (0,37,20,27) C0M37Y20K27 (0%,37%,20%,27%) (0.00/0.37/0.20/0.27)
BB | 75 | 95 | |
---|---|---|---|
RGB | 187 | 117 | 149 |
HSL | 333° | 33.98% | 59.61% |
HSB/HSV | 333° | 37.43% | 73.33% |
CMYK | 0.00% | 37.43% | 20.32% |
26.67% |
HEX | BB | 75 | 95 |
Decimal | 187 | 117 | 149 |
Binary | 10111011 | 1110101 | 10010101 |
Octal | 273 | 165 | 225 |
Examples of css and html codes for elements with #BB7595 color. Also use rgb(187,117,149) instead hex code.
.myTextColor { color: #BB7595; }
<p style="color:#BB7595">This sample text font color is #BB7595.</p>
This text font color is #BB7595.
.myBgColor { background-color: #BB7595; }
<div style="background-color:#BB7595">Inner text</div>
This div background color is #BB7595.
.myBorderColor { border: 1px solid #BB7595; }
<div style="border:3px solid #BB7595">Div</div>
This div border color is #BB7595.
.myOpacity80 { color: #BB7595; opacity: 0.8; }
<p style="color:#BB7595;opacity:0.8;">80%</p>
Text with #BB7595 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB7595;}
<p style="text-shadow: 3px 3px 1px #BB7595">Text here.</p>
This text has shadow with #BB7595 color.
.textShadow {text-shadow: 3px 3px 1px #BB7595, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB7595, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB7595 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB7595, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB7595, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB7595 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB7595; -webkit-box-shadow: 1px 1px 3px 2px #BB7595; box-shadow: 1px 1px 3px 2px #BB7595; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB7595; -webkit-box-shadow: 1px 1px 3px 2px #BB7595; box-shadow:1px 1px 3px 2px #BB7595;">
Div content here</div>
This text has color #BB7595 on black background.
This text has color #BB7595 on white background.
This text has black color on #BB7595 background.
This text has white color on #BB7595 background.