HEX: #BE98AB
RGB: (190,152,171)
#BE98AB contains red, green and blue colors in about the same proportion. Web safe color of #BE98AB is #CC9999 (or #C99).
#BE98AB color RGB value is (190,152,171).
RGB: (190,152,171) (75%,60%,67%)
R 190 of 255 = 75%
G 152 of 255 = 60%
B 171 of 255 = 67%
R + G + B ~ 67%. #BE98AB is quite light color.
R + G + B =
190 + 152 + 171 = 513 (100%)
R 190 of 513 ~ 37.04%
G 152 of 513 ~ 29.63%
B 171 of 513 ~ 33.33%
#BE98AB color CMYK value is (0,20,10,25).
CMYK: (0,20,10,25) C0M20Y10K25 (0%,20%,10%,25%) (0.00/0.20/0.10/0.25)
BE | 98 | AB | |
---|---|---|---|
RGB | 190 | 152 | 171 |
HSL | 330° | 22.62% | 67.06% |
HSB/HSV | 330° | 20.00% | 74.51% |
CMYK | 0.00% | 20.00% | 10.00% |
25.49% |
HEX | BE | 98 | AB |
Decimal | 190 | 152 | 171 |
Binary | 10111110 | 10011000 | 10101011 |
Octal | 276 | 230 | 253 |
Examples of css and html codes for elements with #BE98AB color. Also use rgb(190,152,171) instead hex code.
.myTextColor { color: #BE98AB; }
<p style="color:#BE98AB">This sample text font color is #BE98AB.</p>
This text font color is #BE98AB.
.myBgColor { background-color: #BE98AB; }
<div style="background-color:#BE98AB">Inner text</div>
This div background color is #BE98AB.
.myBorderColor { border: 1px solid #BE98AB; }
<div style="border:3px solid #BE98AB">Div</div>
This div border color is #BE98AB.
.myOpacity80 { color: #BE98AB; opacity: 0.8; }
<p style="color:#BE98AB;opacity:0.8;">80%</p>
Text with #BE98AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE98AB;}
<p style="text-shadow: 3px 3px 1px #BE98AB">Text here.</p>
This text has shadow with #BE98AB color.
.textShadow {text-shadow: 3px 3px 1px #BE98AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE98AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE98AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE98AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE98AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE98AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE98AB; -webkit-box-shadow: 1px 1px 3px 2px #BE98AB; box-shadow: 1px 1px 3px 2px #BE98AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE98AB; -webkit-box-shadow: 1px 1px 3px 2px #BE98AB; box-shadow:1px 1px 3px 2px #BE98AB;">
Div content here</div>
This text has color #BE98AB on black background.
This text has color #BE98AB on white background.
This text has black color on #BE98AB background.
This text has white color on #BE98AB background.