HEX: #68428C
RGB: (104,66,140)
#68428C contains mainly red and blue colors. Web safe color of #68428C is #663399 (or #639).
#68428C color RGB value is (104,66,140).
RGB: (104,66,140) (41%,26%,55%)
R 104 of 255 = 41%
G 66 of 255 = 26%
B 140 of 255 = 55%
R + G + B ~ 41%. #68428C is middle color (not dark and not light).
R + G + B =
104 + 66 + 140 = 310 (100%)
R 104 of 310 ~ 33.55%
G 66 of 310 ~ 21.29%
B 140 of 310 ~ 45.16%
#68428C color CMYK value is (26,53,0,45).
CMYK: (26,53,0,45) C26M53Y0K45 (26%,53%,0%,45%) (0.26/0.53/0.00/0.45)
68 | 42 | 8C | |
---|---|---|---|
RGB | 104 | 66 | 140 |
HSL | 271° | 35.92% | 40.39% |
HSB/HSV | 271° | 52.86% | 54.90% |
CMYK | 25.71% | 52.86% | 0.00% |
45.10% |
HEX | 68 | 42 | 8C |
Decimal | 104 | 66 | 140 |
Binary | 1101000 | 1000010 | 10001100 |
Octal | 150 | 102 | 214 |
Examples of css and html codes for elements with #68428C color. Also use rgb(104,66,140) instead hex code.
.myTextColor { color: #68428C; }
<p style="color:#68428C">This sample text font color is #68428C.</p>
This text font color is #68428C.
.myBgColor { background-color: #68428C; }
<div style="background-color:#68428C">Inner text</div>
This div background color is #68428C.
.myBorderColor { border: 1px solid #68428C; }
<div style="border:3px solid #68428C">Div</div>
This div border color is #68428C.
.myOpacity80 { color: #68428C; opacity: 0.8; }
<p style="color:#68428C;opacity:0.8;">80%</p>
Text with #68428C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #68428C;}
<p style="text-shadow: 3px 3px 1px #68428C">Text here.</p>
This text has shadow with #68428C color.
.textShadow {text-shadow: 3px 3px 1px #68428C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #68428C, 5px 5px 20px red">Text here.</p>
This text has shadow with #68428C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#68428C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#68428C, Direction=45, Strength=4)">Text</p>
This text has shadow with #68428C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #68428C; -webkit-box-shadow: 1px 1px 3px 2px #68428C; box-shadow: 1px 1px 3px 2px #68428C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #68428C; -webkit-box-shadow: 1px 1px 3px 2px #68428C; box-shadow:1px 1px 3px 2px #68428C;">
Div content here</div>
This text has color #68428C on black background.
This text has color #68428C on white background.
This text has black color on #68428C background.
This text has white color on #68428C background.