HEX: #B06594
RGB: (176,101,148)
#B06594 contains mainly red and blue colors. Web safe color of #B06594 is #996699 (or #969).
#B06594 color RGB value is (176,101,148).
RGB: (176,101,148) (69%,40%,58%)
R 176 of 255 = 69%
G 101 of 255 = 40%
B 148 of 255 = 58%
R + G + B ~ 56%. #B06594 is middle color (not dark and not light).
R + G + B =
176 + 101 + 148 = 425 (100%)
R 176 of 425 ~ 41.41%
G 101 of 425 ~ 23.76%
B 148 of 425 ~ 34.82%
#B06594 color CMYK value is (0,43,16,31).
CMYK: (0,43,16,31) C0M43Y16K31 (0%,43%,16%,31%) (0.00/0.43/0.16/0.31)
B0 | 65 | 94 | |
---|---|---|---|
RGB | 176 | 101 | 148 |
HSL | 322° | 32.19% | 54.31% |
HSB/HSV | 322° | 42.61% | 69.02% |
CMYK | 0.00% | 42.61% | 15.91% |
30.98% |
HEX | B0 | 65 | 94 |
Decimal | 176 | 101 | 148 |
Binary | 10110000 | 1100101 | 10010100 |
Octal | 260 | 145 | 224 |
Examples of css and html codes for elements with #B06594 color. Also use rgb(176,101,148) instead hex code.
.myTextColor { color: #B06594; }
<p style="color:#B06594">This sample text font color is #B06594.</p>
This text font color is #B06594.
.myBgColor { background-color: #B06594; }
<div style="background-color:#B06594">Inner text</div>
This div background color is #B06594.
.myBorderColor { border: 1px solid #B06594; }
<div style="border:3px solid #B06594">Div</div>
This div border color is #B06594.
.myOpacity80 { color: #B06594; opacity: 0.8; }
<p style="color:#B06594;opacity:0.8;">80%</p>
Text with #B06594 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B06594;}
<p style="text-shadow: 3px 3px 1px #B06594">Text here.</p>
This text has shadow with #B06594 color.
.textShadow {text-shadow: 3px 3px 1px #B06594, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B06594, 5px 5px 20px red">Text here.</p>
This text has shadow with #B06594 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B06594, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B06594, Direction=45, Strength=4)">Text</p>
This text has shadow with #B06594 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B06594; -webkit-box-shadow: 1px 1px 3px 2px #B06594; box-shadow: 1px 1px 3px 2px #B06594; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B06594; -webkit-box-shadow: 1px 1px 3px 2px #B06594; box-shadow:1px 1px 3px 2px #B06594;">
Div content here</div>
This text has color #B06594 on black background.
This text has color #B06594 on white background.
This text has black color on #B06594 background.
This text has white color on #B06594 background.