HEX: #BEAAB7
RGB: (190,170,183)
#BEAAB7 contains red, green and blue colors in about the same proportion. Web safe color of #BEAAB7 is #CC99CC (or #C9C).
#BEAAB7 color RGB value is (190,170,183).
RGB: (190,170,183) (75%,67%,72%)
R 190 of 255 = 75%
G 170 of 255 = 67%
B 183 of 255 = 72%
R + G + B ~ 71%. #BEAAB7 is quite light color.
R + G + B =
190 + 170 + 183 = 543 (100%)
R 190 of 543 ~ 34.99%
G 170 of 543 ~ 31.31%
B 183 of 543 ~ 33.7%
#BEAAB7 color CMYK value is (0,11,4,25).
CMYK: (0,11,4,25) C0M11Y4K25 (0%,11%,4%,25%) (0.00/0.11/0.04/0.25)
BE | AA | B7 | |
---|---|---|---|
RGB | 190 | 170 | 183 |
HSL | 321° | 13.33% | 70.59% |
HSB/HSV | 321° | 10.53% | 74.51% |
CMYK | 0.00% | 10.53% | 3.68% |
25.49% |
HEX | BE | AA | B7 |
Decimal | 190 | 170 | 183 |
Binary | 10111110 | 10101010 | 10110111 |
Octal | 276 | 252 | 267 |
Examples of css and html codes for elements with #BEAAB7 color. Also use rgb(190,170,183) instead hex code.
.myTextColor { color: #BEAAB7; }
<p style="color:#BEAAB7">This sample text font color is #BEAAB7.</p>
This text font color is #BEAAB7.
.myBgColor { background-color: #BEAAB7; }
<div style="background-color:#BEAAB7">Inner text</div>
This div background color is #BEAAB7.
.myBorderColor { border: 1px solid #BEAAB7; }
<div style="border:3px solid #BEAAB7">Div</div>
This div border color is #BEAAB7.
.myOpacity80 { color: #BEAAB7; opacity: 0.8; }
<p style="color:#BEAAB7;opacity:0.8;">80%</p>
Text with #BEAAB7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEAAB7;}
<p style="text-shadow: 3px 3px 1px #BEAAB7">Text here.</p>
This text has shadow with #BEAAB7 color.
.textShadow {text-shadow: 3px 3px 1px #BEAAB7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEAAB7, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEAAB7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEAAB7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEAAB7, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEAAB7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEAAB7; -webkit-box-shadow: 1px 1px 3px 2px #BEAAB7; box-shadow: 1px 1px 3px 2px #BEAAB7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEAAB7; -webkit-box-shadow: 1px 1px 3px 2px #BEAAB7; box-shadow:1px 1px 3px 2px #BEAAB7;">
Div content here</div>
This text has color #BEAAB7 on black background.
This text has color #BEAAB7 on white background.
This text has black color on #BEAAB7 background.
This text has white color on #BEAAB7 background.