HEX: #BFAEDB
RGB: (191,174,219)
#BFAEDB contains red, green and blue colors in about the same proportion. Web safe color of #BFAEDB is #CC99CC (or #C9C).
#BFAEDB color RGB value is (191,174,219).
RGB: (191,174,219) (75%,68%,86%)
R 191 of 255 = 75%
G 174 of 255 = 68%
B 219 of 255 = 86%
R + G + B ~ 76%. #BFAEDB is quite light color.
R + G + B =
191 + 174 + 219 = 584 (100%)
R 191 of 584 ~ 32.71%
G 174 of 584 ~ 29.79%
B 219 of 584 ~ 37.5%
#BFAEDB color CMYK value is (13,21,0,14).
CMYK: (13,21,0,14) C13M21Y0K14 (13%,21%,0%,14%) (0.13/0.21/0.00/0.14)
BF | AE | DB | |
---|---|---|---|
RGB | 191 | 174 | 219 |
HSL | 263° | 38.46% | 77.06% |
HSB/HSV | 263° | 20.55% | 85.88% |
CMYK | 12.79% | 20.55% | 0.00% |
14.12% |
HEX | BF | AE | DB |
Decimal | 191 | 174 | 219 |
Binary | 10111111 | 10101110 | 11011011 |
Octal | 277 | 256 | 333 |
Examples of css and html codes for elements with #BFAEDB color. Also use rgb(191,174,219) instead hex code.
.myTextColor { color: #BFAEDB; }
<p style="color:#BFAEDB">This sample text font color is #BFAEDB.</p>
This text font color is #BFAEDB.
.myBgColor { background-color: #BFAEDB; }
<div style="background-color:#BFAEDB">Inner text</div>
This div background color is #BFAEDB.
.myBorderColor { border: 1px solid #BFAEDB; }
<div style="border:3px solid #BFAEDB">Div</div>
This div border color is #BFAEDB.
.myOpacity80 { color: #BFAEDB; opacity: 0.8; }
<p style="color:#BFAEDB;opacity:0.8;">80%</p>
Text with #BFAEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BFAEDB;}
<p style="text-shadow: 3px 3px 1px #BFAEDB">Text here.</p>
This text has shadow with #BFAEDB color.
.textShadow {text-shadow: 3px 3px 1px #BFAEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BFAEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BFAEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BFAEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BFAEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BFAEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BFAEDB; -webkit-box-shadow: 1px 1px 3px 2px #BFAEDB; box-shadow: 1px 1px 3px 2px #BFAEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BFAEDB; -webkit-box-shadow: 1px 1px 3px 2px #BFAEDB; box-shadow:1px 1px 3px 2px #BFAEDB;">
Div content here</div>
This text has color #BFAEDB on black background.
This text has color #BFAEDB on white background.
This text has black color on #BFAEDB background.
This text has white color on #BFAEDB background.