HEX: #B495EE
RGB: (180,149,238)
#B495EE contains mainly red and blue colors. Web safe color of #B495EE is #CC99FF (or #C9F).
#B495EE color RGB value is (180,149,238).
RGB: (180,149,238) (71%,58%,93%)
R 180 of 255 = 71%
G 149 of 255 = 58%
B 238 of 255 = 93%
R + G + B ~ 74%. #B495EE is quite light color.
R + G + B =
180 + 149 + 238 = 567 (100%)
R 180 of 567 ~ 31.75%
G 149 of 567 ~ 26.28%
B 238 of 567 ~ 41.98%
#B495EE color CMYK value is (24,37,0,7).
CMYK: (24,37,0,7) C24M37Y0K7 (24%,37%,0%,7%) (0.24/0.37/0.00/0.07)
B4 | 95 | EE | |
---|---|---|---|
RGB | 180 | 149 | 238 |
HSL | 261° | 72.36% | 75.88% |
HSB/HSV | 261° | 37.39% | 93.33% |
CMYK | 24.37% | 37.39% | 0.00% |
6.67% |
HEX | B4 | 95 | EE |
Decimal | 180 | 149 | 238 |
Binary | 10110100 | 10010101 | 11101110 |
Octal | 264 | 225 | 356 |
Examples of css and html codes for elements with #B495EE color. Also use rgb(180,149,238) instead hex code.
.myTextColor { color: #B495EE; }
<p style="color:#B495EE">This sample text font color is #B495EE.</p>
This text font color is #B495EE.
.myBgColor { background-color: #B495EE; }
<div style="background-color:#B495EE">Inner text</div>
This div background color is #B495EE.
.myBorderColor { border: 1px solid #B495EE; }
<div style="border:3px solid #B495EE">Div</div>
This div border color is #B495EE.
.myOpacity80 { color: #B495EE; opacity: 0.8; }
<p style="color:#B495EE;opacity:0.8;">80%</p>
Text with #B495EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B495EE;}
<p style="text-shadow: 3px 3px 1px #B495EE">Text here.</p>
This text has shadow with #B495EE color.
.textShadow {text-shadow: 3px 3px 1px #B495EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B495EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B495EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B495EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B495EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B495EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B495EE; -webkit-box-shadow: 1px 1px 3px 2px #B495EE; box-shadow: 1px 1px 3px 2px #B495EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B495EE; -webkit-box-shadow: 1px 1px 3px 2px #B495EE; box-shadow:1px 1px 3px 2px #B495EE;">
Div content here</div>
This text has color #B495EE on black background.
This text has color #B495EE on white background.
This text has black color on #B495EE background.
This text has white color on #B495EE background.