HEX: #8996DF
RGB: (137,150,223)
#8996DF contains mainly blue color. Web safe color of #8996DF is #9999CC (or #99C).
#8996DF color RGB value is (137,150,223).
RGB: (137,150,223) (54%,59%,87%)
R 137 of 255 = 54%
G 150 of 255 = 59%
B 223 of 255 = 87%
R + G + B ~ 67%. #8996DF is quite light color.
R + G + B =
137 + 150 + 223 = 510 (100%)
R 137 of 510 ~ 26.86%
G 150 of 510 ~ 29.41%
B 223 of 510 ~ 43.73%
#8996DF color CMYK value is (39,33,0,13).
CMYK: (39,33,0,13) C39M33Y0K13 (39%,33%,0%,13%) (0.39/0.33/0.00/0.13)
89 | 96 | DF | |
---|---|---|---|
RGB | 137 | 150 | 223 |
HSL | 231° | 57.33% | 70.59% |
HSB/HSV | 231° | 38.57% | 87.45% |
CMYK | 38.57% | 32.74% | 0.00% |
12.55% |
HEX | 89 | 96 | DF |
Decimal | 137 | 150 | 223 |
Binary | 10001001 | 10010110 | 11011111 |
Octal | 211 | 226 | 337 |
Examples of css and html codes for elements with #8996DF color. Also use rgb(137,150,223) instead hex code.
.myTextColor { color: #8996DF; }
<p style="color:#8996DF">This sample text font color is #8996DF.</p>
This text font color is #8996DF.
.myBgColor { background-color: #8996DF; }
<div style="background-color:#8996DF">Inner text</div>
This div background color is #8996DF.
.myBorderColor { border: 1px solid #8996DF; }
<div style="border:3px solid #8996DF">Div</div>
This div border color is #8996DF.
.myOpacity80 { color: #8996DF; opacity: 0.8; }
<p style="color:#8996DF;opacity:0.8;">80%</p>
Text with #8996DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8996DF;}
<p style="text-shadow: 3px 3px 1px #8996DF">Text here.</p>
This text has shadow with #8996DF color.
.textShadow {text-shadow: 3px 3px 1px #8996DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8996DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #8996DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8996DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8996DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #8996DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8996DF; -webkit-box-shadow: 1px 1px 3px 2px #8996DF; box-shadow: 1px 1px 3px 2px #8996DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8996DF; -webkit-box-shadow: 1px 1px 3px 2px #8996DF; box-shadow:1px 1px 3px 2px #8996DF;">
Div content here</div>
This text has color #8996DF on black background.
This text has color #8996DF on white background.
This text has black color on #8996DF background.
This text has white color on #8996DF background.