HEX: #B5AEFA
RGB: (181,174,250)
#B5AEFA contains mainly blue color. Web safe color of #B5AEFA is #CC99FF (or #C9F).
#B5AEFA color RGB value is (181,174,250).
RGB: (181,174,250) (71%,68%,98%)
R 181 of 255 = 71%
G 174 of 255 = 68%
B 250 of 255 = 98%
R + G + B ~ 79%. #B5AEFA is quite light color.
R + G + B =
181 + 174 + 250 = 605 (100%)
R 181 of 605 ~ 29.92%
G 174 of 605 ~ 28.76%
B 250 of 605 ~ 41.32%
#B5AEFA color CMYK value is (28,30,0,2).
CMYK: (28,30,0,2) C28M30Y0K2 (28%,30%,0%,2%) (0.28/0.30/0.00/0.02)
B5 | AE | FA | |
---|---|---|---|
RGB | 181 | 174 | 250 |
HSL | 246° | 88.37% | 83.14% |
HSB/HSV | 246° | 30.40% | 98.04% |
CMYK | 27.60% | 30.40% | 0.00% |
1.96% |
HEX | B5 | AE | FA |
Decimal | 181 | 174 | 250 |
Binary | 10110101 | 10101110 | 11111010 |
Octal | 265 | 256 | 372 |
Examples of css and html codes for elements with #B5AEFA color. Also use rgb(181,174,250) instead hex code.
.myTextColor { color: #B5AEFA; }
<p style="color:#B5AEFA">This sample text font color is #B5AEFA.</p>
This text font color is #B5AEFA.
.myBgColor { background-color: #B5AEFA; }
<div style="background-color:#B5AEFA">Inner text</div>
This div background color is #B5AEFA.
.myBorderColor { border: 1px solid #B5AEFA; }
<div style="border:3px solid #B5AEFA">Div</div>
This div border color is #B5AEFA.
.myOpacity80 { color: #B5AEFA; opacity: 0.8; }
<p style="color:#B5AEFA;opacity:0.8;">80%</p>
Text with #B5AEFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5AEFA;}
<p style="text-shadow: 3px 3px 1px #B5AEFA">Text here.</p>
This text has shadow with #B5AEFA color.
.textShadow {text-shadow: 3px 3px 1px #B5AEFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5AEFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5AEFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5AEFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5AEFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5AEFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5AEFA; -webkit-box-shadow: 1px 1px 3px 2px #B5AEFA; box-shadow: 1px 1px 3px 2px #B5AEFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5AEFA; -webkit-box-shadow: 1px 1px 3px 2px #B5AEFA; box-shadow:1px 1px 3px 2px #B5AEFA;">
Div content here</div>
This text has color #B5AEFA on black background.
This text has color #B5AEFA on white background.
This text has black color on #B5AEFA background.
This text has white color on #B5AEFA background.