HEX: #BEAFB4
RGB: (190,175,180)
#BEAFB4 contains red, green and blue colors in about the same proportion. Web safe color of #BEAFB4 is #CC99CC (or #C9C).
#BEAFB4 color RGB value is (190,175,180).
RGB: (190,175,180) (75%,69%,71%)
R 190 of 255 = 75%
G 175 of 255 = 69%
B 180 of 255 = 71%
R + G + B ~ 72%. #BEAFB4 is quite light color.
R + G + B =
190 + 175 + 180 = 545 (100%)
R 190 of 545 ~ 34.86%
G 175 of 545 ~ 32.11%
B 180 of 545 ~ 33.03%
#BEAFB4 color CMYK value is (0,8,5,25).
CMYK: (0,8,5,25) C0M8Y5K25 (0%,8%,5%,25%) (0.00/0.08/0.05/0.25)
BE | AF | B4 | |
---|---|---|---|
RGB | 190 | 175 | 180 |
HSL | 340° | 10.34% | 71.57% |
HSB/HSV | 340° | 7.89% | 74.51% |
CMYK | 0.00% | 7.89% | 5.26% |
25.49% |
HEX | BE | AF | B4 |
Decimal | 190 | 175 | 180 |
Binary | 10111110 | 10101111 | 10110100 |
Octal | 276 | 257 | 264 |
Examples of css and html codes for elements with #BEAFB4 color. Also use rgb(190,175,180) instead hex code.
.myTextColor { color: #BEAFB4; }
<p style="color:#BEAFB4">This sample text font color is #BEAFB4.</p>
This text font color is #BEAFB4.
.myBgColor { background-color: #BEAFB4; }
<div style="background-color:#BEAFB4">Inner text</div>
This div background color is #BEAFB4.
.myBorderColor { border: 1px solid #BEAFB4; }
<div style="border:3px solid #BEAFB4">Div</div>
This div border color is #BEAFB4.
.myOpacity80 { color: #BEAFB4; opacity: 0.8; }
<p style="color:#BEAFB4;opacity:0.8;">80%</p>
Text with #BEAFB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEAFB4;}
<p style="text-shadow: 3px 3px 1px #BEAFB4">Text here.</p>
This text has shadow with #BEAFB4 color.
.textShadow {text-shadow: 3px 3px 1px #BEAFB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEAFB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEAFB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEAFB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEAFB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEAFB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEAFB4; -webkit-box-shadow: 1px 1px 3px 2px #BEAFB4; box-shadow: 1px 1px 3px 2px #BEAFB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEAFB4; -webkit-box-shadow: 1px 1px 3px 2px #BEAFB4; box-shadow:1px 1px 3px 2px #BEAFB4;">
Div content here</div>
This text has color #BEAFB4 on black background.
This text has color #BEAFB4 on white background.
This text has black color on #BEAFB4 background.
This text has white color on #BEAFB4 background.