HEX: #7B68EE
RGB: (123,104,238)
Color name is MediumSlateBlue. #7B68EE contains mainly blue color. Web safe color of #7B68EE is #6666FF (or #66F).
#7B68EE color RGB value is (123,104,238).
RGB: (123,104,238) (48%,41%,93%)
R 123 of 255 = 48%
G 104 of 255 = 41%
B 238 of 255 = 93%
R + G + B ~ 61%. #7B68EE is quite light color.
R + G + B =
123 + 104 + 238 = 465 (100%)
R 123 of 465 ~ 26.45%
G 104 of 465 ~ 22.37%
B 238 of 465 ~ 51.18%
#7B68EE color CMYK value is (48,56,0,7).
CMYK: (48,56,0,7) C48M56Y0K7 (48%,56%,0%,7%) (0.48/0.56/0.00/0.07)
7B | 68 | EE | |
---|---|---|---|
RGB | 123 | 104 | 238 |
HSL | 249° | 79.76% | 67.06% |
HSB/HSV | 249° | 56.30% | 93.33% |
CMYK | 48.32% | 56.30% | 0.00% |
6.67% |
HEX | 7B | 68 | EE |
Decimal | 123 | 104 | 238 |
Binary | 1111011 | 1101000 | 11101110 |
Octal | 173 | 150 | 356 |
Examples of css and html codes for elements with #7B68EE color. Also use rgb(123,104,238) instead hex code.
.myTextColor { color: #7B68EE; }
<p style="color:#7B68EE">This sample text font color is #7B68EE.</p>
This text font color is #7B68EE.
.myBgColor { background-color: #7B68EE; }
<div style="background-color:#7B68EE">Inner text</div>
This div background color is #7B68EE.
.myBorderColor { border: 1px solid #7B68EE; }
<div style="border:3px solid #7B68EE">Div</div>
This div border color is #7B68EE.
.myOpacity80 { color: #7B68EE; opacity: 0.8; }
<p style="color:#7B68EE;opacity:0.8;">80%</p>
Text with #7B68EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7B68EE;}
<p style="text-shadow: 3px 3px 1px #7B68EE">Text here.</p>
This text has shadow with #7B68EE color.
.textShadow {text-shadow: 3px 3px 1px #7B68EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7B68EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7B68EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7B68EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7B68EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7B68EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7B68EE; -webkit-box-shadow: 1px 1px 3px 2px #7B68EE; box-shadow: 1px 1px 3px 2px #7B68EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7B68EE; -webkit-box-shadow: 1px 1px 3px 2px #7B68EE; box-shadow:1px 1px 3px 2px #7B68EE;">
Div content here</div>
This text has color #7B68EE on black background.
This text has color #7B68EE on white background.
This text has black color on #7B68EE background.
This text has white color on #7B68EE background.