HEX: #BE75AA
RGB: (190,117,170)
#BE75AA contains mainly red and blue colors. Web safe color of #BE75AA is #CC6699 (or #C69).
#BE75AA color RGB value is (190,117,170).
RGB: (190,117,170) (75%,46%,67%)
R 190 of 255 = 75%
G 117 of 255 = 46%
B 170 of 255 = 67%
R + G + B ~ 63%. #BE75AA is quite light color.
R + G + B =
190 + 117 + 170 = 477 (100%)
R 190 of 477 ~ 39.83%
G 117 of 477 ~ 24.53%
B 170 of 477 ~ 35.64%
#BE75AA color CMYK value is (0,38,11,25).
CMYK: (0,38,11,25) C0M38Y11K25 (0%,38%,11%,25%) (0.00/0.38/0.11/0.25)
BE | 75 | AA | |
---|---|---|---|
RGB | 190 | 117 | 170 |
HSL | 316° | 35.96% | 60.20% |
HSB/HSV | 316° | 38.42% | 74.51% |
CMYK | 0.00% | 38.42% | 10.53% |
25.49% |
HEX | BE | 75 | AA |
Decimal | 190 | 117 | 170 |
Binary | 10111110 | 1110101 | 10101010 |
Octal | 276 | 165 | 252 |
Examples of css and html codes for elements with #BE75AA color. Also use rgb(190,117,170) instead hex code.
.myTextColor { color: #BE75AA; }
<p style="color:#BE75AA">This sample text font color is #BE75AA.</p>
This text font color is #BE75AA.
.myBgColor { background-color: #BE75AA; }
<div style="background-color:#BE75AA">Inner text</div>
This div background color is #BE75AA.
.myBorderColor { border: 1px solid #BE75AA; }
<div style="border:3px solid #BE75AA">Div</div>
This div border color is #BE75AA.
.myOpacity80 { color: #BE75AA; opacity: 0.8; }
<p style="color:#BE75AA;opacity:0.8;">80%</p>
Text with #BE75AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE75AA;}
<p style="text-shadow: 3px 3px 1px #BE75AA">Text here.</p>
This text has shadow with #BE75AA color.
.textShadow {text-shadow: 3px 3px 1px #BE75AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE75AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE75AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE75AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE75AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE75AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE75AA; -webkit-box-shadow: 1px 1px 3px 2px #BE75AA; box-shadow: 1px 1px 3px 2px #BE75AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE75AA; -webkit-box-shadow: 1px 1px 3px 2px #BE75AA; box-shadow:1px 1px 3px 2px #BE75AA;">
Div content here</div>
This text has color #BE75AA on black background.
This text has color #BE75AA on white background.
This text has black color on #BE75AA background.
This text has white color on #BE75AA background.