HEX: #B493EB
RGB: (180,147,235)
#B493EB contains mainly red and blue colors. Web safe color of #B493EB is #CC99FF (or #C9F).
#B493EB color RGB value is (180,147,235).
RGB: (180,147,235) (71%,58%,92%)
R 180 of 255 = 71%
G 147 of 255 = 58%
B 235 of 255 = 92%
R + G + B ~ 74%. #B493EB is quite light color.
R + G + B =
180 + 147 + 235 = 562 (100%)
R 180 of 562 ~ 32.03%
G 147 of 562 ~ 26.16%
B 235 of 562 ~ 41.81%
#B493EB color CMYK value is (23,37,0,8).
CMYK: (23,37,0,8) C23M37Y0K8 (23%,37%,0%,8%) (0.23/0.37/0.00/0.08)
B4 | 93 | EB | |
---|---|---|---|
RGB | 180 | 147 | 235 |
HSL | 263° | 68.75% | 74.90% |
HSB/HSV | 263° | 37.45% | 92.16% |
CMYK | 23.40% | 37.45% | 0.00% |
7.84% |
HEX | B4 | 93 | EB |
Decimal | 180 | 147 | 235 |
Binary | 10110100 | 10010011 | 11101011 |
Octal | 264 | 223 | 353 |
Examples of css and html codes for elements with #B493EB color. Also use rgb(180,147,235) instead hex code.
.myTextColor { color: #B493EB; }
<p style="color:#B493EB">This sample text font color is #B493EB.</p>
This text font color is #B493EB.
.myBgColor { background-color: #B493EB; }
<div style="background-color:#B493EB">Inner text</div>
This div background color is #B493EB.
.myBorderColor { border: 1px solid #B493EB; }
<div style="border:3px solid #B493EB">Div</div>
This div border color is #B493EB.
.myOpacity80 { color: #B493EB; opacity: 0.8; }
<p style="color:#B493EB;opacity:0.8;">80%</p>
Text with #B493EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B493EB;}
<p style="text-shadow: 3px 3px 1px #B493EB">Text here.</p>
This text has shadow with #B493EB color.
.textShadow {text-shadow: 3px 3px 1px #B493EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B493EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B493EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B493EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B493EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B493EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B493EB; -webkit-box-shadow: 1px 1px 3px 2px #B493EB; box-shadow: 1px 1px 3px 2px #B493EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B493EB; -webkit-box-shadow: 1px 1px 3px 2px #B493EB; box-shadow:1px 1px 3px 2px #B493EB;">
Div content here</div>
This text has color #B493EB on black background.
This text has color #B493EB on white background.
This text has black color on #B493EB background.
This text has white color on #B493EB background.