HEX: #B095DA
RGB: (176,149,218)
#B095DA contains mainly red and blue colors. Web safe color of #B095DA is #9999CC (or #99C).
#B095DA color RGB value is (176,149,218).
RGB: (176,149,218) (69%,58%,85%)
R 176 of 255 = 69%
G 149 of 255 = 58%
B 218 of 255 = 85%
R + G + B ~ 71%. #B095DA is quite light color.
R + G + B =
176 + 149 + 218 = 543 (100%)
R 176 of 543 ~ 32.41%
G 149 of 543 ~ 27.44%
B 218 of 543 ~ 40.15%
#B095DA color CMYK value is (19,32,0,15).
CMYK: (19,32,0,15) C19M32Y0K15 (19%,32%,0%,15%) (0.19/0.32/0.00/0.15)
B0 | 95 | DA | |
---|---|---|---|
RGB | 176 | 149 | 218 |
HSL | 263° | 48.25% | 71.96% |
HSB/HSV | 263° | 31.65% | 85.49% |
CMYK | 19.27% | 31.65% | 0.00% |
14.51% |
HEX | B0 | 95 | DA |
Decimal | 176 | 149 | 218 |
Binary | 10110000 | 10010101 | 11011010 |
Octal | 260 | 225 | 332 |
Examples of css and html codes for elements with #B095DA color. Also use rgb(176,149,218) instead hex code.
.myTextColor { color: #B095DA; }
<p style="color:#B095DA">This sample text font color is #B095DA.</p>
This text font color is #B095DA.
.myBgColor { background-color: #B095DA; }
<div style="background-color:#B095DA">Inner text</div>
This div background color is #B095DA.
.myBorderColor { border: 1px solid #B095DA; }
<div style="border:3px solid #B095DA">Div</div>
This div border color is #B095DA.
.myOpacity80 { color: #B095DA; opacity: 0.8; }
<p style="color:#B095DA;opacity:0.8;">80%</p>
Text with #B095DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B095DA;}
<p style="text-shadow: 3px 3px 1px #B095DA">Text here.</p>
This text has shadow with #B095DA color.
.textShadow {text-shadow: 3px 3px 1px #B095DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B095DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B095DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B095DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B095DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B095DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B095DA; -webkit-box-shadow: 1px 1px 3px 2px #B095DA; box-shadow: 1px 1px 3px 2px #B095DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B095DA; -webkit-box-shadow: 1px 1px 3px 2px #B095DA; box-shadow:1px 1px 3px 2px #B095DA;">
Div content here</div>
This text has color #B095DA on black background.
This text has color #B095DA on white background.
This text has black color on #B095DA background.
This text has white color on #B095DA background.