HEX: #7F8EDE
RGB: (127,142,222)
#7F8EDE contains mainly blue color. Web safe color of #7F8EDE is #6699CC (or #69C).
#7F8EDE color RGB value is (127,142,222).
RGB: (127,142,222) (50%,56%,87%)
R 127 of 255 = 50%
G 142 of 255 = 56%
B 222 of 255 = 87%
R + G + B ~ 64%. #7F8EDE is quite light color.
R + G + B =
127 + 142 + 222 = 491 (100%)
R 127 of 491 ~ 25.87%
G 142 of 491 ~ 28.92%
B 222 of 491 ~ 45.21%
#7F8EDE color CMYK value is (43,36,0,13).
CMYK: (43,36,0,13) C43M36Y0K13 (43%,36%,0%,13%) (0.43/0.36/0.00/0.13)
7F | 8E | DE | |
---|---|---|---|
RGB | 127 | 142 | 222 |
HSL | 231° | 59.01% | 68.43% |
HSB/HSV | 231° | 42.79% | 87.06% |
CMYK | 42.79% | 36.04% | 0.00% |
12.94% |
HEX | 7F | 8E | DE |
Decimal | 127 | 142 | 222 |
Binary | 1111111 | 10001110 | 11011110 |
Octal | 177 | 216 | 336 |
Examples of css and html codes for elements with #7F8EDE color. Also use rgb(127,142,222) instead hex code.
.myTextColor { color: #7F8EDE; }
<p style="color:#7F8EDE">This sample text font color is #7F8EDE.</p>
This text font color is #7F8EDE.
.myBgColor { background-color: #7F8EDE; }
<div style="background-color:#7F8EDE">Inner text</div>
This div background color is #7F8EDE.
.myBorderColor { border: 1px solid #7F8EDE; }
<div style="border:3px solid #7F8EDE">Div</div>
This div border color is #7F8EDE.
.myOpacity80 { color: #7F8EDE; opacity: 0.8; }
<p style="color:#7F8EDE;opacity:0.8;">80%</p>
Text with #7F8EDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7F8EDE;}
<p style="text-shadow: 3px 3px 1px #7F8EDE">Text here.</p>
This text has shadow with #7F8EDE color.
.textShadow {text-shadow: 3px 3px 1px #7F8EDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7F8EDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7F8EDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7F8EDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7F8EDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7F8EDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7F8EDE; -webkit-box-shadow: 1px 1px 3px 2px #7F8EDE; box-shadow: 1px 1px 3px 2px #7F8EDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7F8EDE; -webkit-box-shadow: 1px 1px 3px 2px #7F8EDE; box-shadow:1px 1px 3px 2px #7F8EDE;">
Div content here</div>
This text has color #7F8EDE on black background.
This text has color #7F8EDE on white background.
This text has black color on #7F8EDE background.
This text has white color on #7F8EDE background.