HEX: #B493DA
RGB: (180,147,218)
#B493DA contains mainly red and blue colors. Web safe color of #B493DA is #CC99CC (or #C9C).
#B493DA color RGB value is (180,147,218).
RGB: (180,147,218) (71%,58%,85%)
R 180 of 255 = 71%
G 147 of 255 = 58%
B 218 of 255 = 85%
R + G + B ~ 71%. #B493DA is quite light color.
R + G + B =
180 + 147 + 218 = 545 (100%)
R 180 of 545 ~ 33.03%
G 147 of 545 ~ 26.97%
B 218 of 545 ~ 40%
#B493DA color CMYK value is (17,33,0,15).
CMYK: (17,33,0,15) C17M33Y0K15 (17%,33%,0%,15%) (0.17/0.33/0.00/0.15)
B4 | 93 | DA | |
---|---|---|---|
RGB | 180 | 147 | 218 |
HSL | 268° | 48.97% | 71.57% |
HSB/HSV | 268° | 32.57% | 85.49% |
CMYK | 17.43% | 32.57% | 0.00% |
14.51% |
HEX | B4 | 93 | DA |
Decimal | 180 | 147 | 218 |
Binary | 10110100 | 10010011 | 11011010 |
Octal | 264 | 223 | 332 |
Examples of css and html codes for elements with #B493DA color. Also use rgb(180,147,218) instead hex code.
.myTextColor { color: #B493DA; }
<p style="color:#B493DA">This sample text font color is #B493DA.</p>
This text font color is #B493DA.
.myBgColor { background-color: #B493DA; }
<div style="background-color:#B493DA">Inner text</div>
This div background color is #B493DA.
.myBorderColor { border: 1px solid #B493DA; }
<div style="border:3px solid #B493DA">Div</div>
This div border color is #B493DA.
.myOpacity80 { color: #B493DA; opacity: 0.8; }
<p style="color:#B493DA;opacity:0.8;">80%</p>
Text with #B493DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B493DA;}
<p style="text-shadow: 3px 3px 1px #B493DA">Text here.</p>
This text has shadow with #B493DA color.
.textShadow {text-shadow: 3px 3px 1px #B493DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B493DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B493DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B493DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B493DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B493DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B493DA; -webkit-box-shadow: 1px 1px 3px 2px #B493DA; box-shadow: 1px 1px 3px 2px #B493DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B493DA; -webkit-box-shadow: 1px 1px 3px 2px #B493DA; box-shadow:1px 1px 3px 2px #B493DA;">
Div content here</div>
This text has color #B493DA on black background.
This text has color #B493DA on white background.
This text has black color on #B493DA background.
This text has white color on #B493DA background.