HEX: #6D74DA
RGB: (109,116,218)
#6D74DA contains mainly blue color. Web safe color of #6D74DA is #6666CC (or #66C).
#6D74DA color RGB value is (109,116,218).
RGB: (109,116,218) (43%,45%,85%)
R 109 of 255 = 43%
G 116 of 255 = 45%
B 218 of 255 = 85%
R + G + B ~ 58%. #6D74DA is middle color (not dark and not light).
R + G + B =
109 + 116 + 218 = 443 (100%)
R 109 of 443 ~ 24.6%
G 116 of 443 ~ 26.19%
B 218 of 443 ~ 49.21%
#6D74DA color CMYK value is (50,47,0,15).
CMYK: (50,47,0,15) C50M47Y0K15 (50%,47%,0%,15%) (0.50/0.47/0.00/0.15)
6D | 74 | DA | |
---|---|---|---|
RGB | 109 | 116 | 218 |
HSL | 236° | 59.56% | 64.12% |
HSB/HSV | 236° | 50.00% | 85.49% |
CMYK | 50.00% | 46.79% | 0.00% |
14.51% |
HEX | 6D | 74 | DA |
Decimal | 109 | 116 | 218 |
Binary | 1101101 | 1110100 | 11011010 |
Octal | 155 | 164 | 332 |
Examples of css and html codes for elements with #6D74DA color. Also use rgb(109,116,218) instead hex code.
.myTextColor { color: #6D74DA; }
<p style="color:#6D74DA">This sample text font color is #6D74DA.</p>
This text font color is #6D74DA.
.myBgColor { background-color: #6D74DA; }
<div style="background-color:#6D74DA">Inner text</div>
This div background color is #6D74DA.
.myBorderColor { border: 1px solid #6D74DA; }
<div style="border:3px solid #6D74DA">Div</div>
This div border color is #6D74DA.
.myOpacity80 { color: #6D74DA; opacity: 0.8; }
<p style="color:#6D74DA;opacity:0.8;">80%</p>
Text with #6D74DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D74DA;}
<p style="text-shadow: 3px 3px 1px #6D74DA">Text here.</p>
This text has shadow with #6D74DA color.
.textShadow {text-shadow: 3px 3px 1px #6D74DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D74DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D74DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D74DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D74DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D74DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D74DA; -webkit-box-shadow: 1px 1px 3px 2px #6D74DA; box-shadow: 1px 1px 3px 2px #6D74DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D74DA; -webkit-box-shadow: 1px 1px 3px 2px #6D74DA; box-shadow:1px 1px 3px 2px #6D74DA;">
Div content here</div>
This text has color #6D74DA on black background.
This text has color #6D74DA on white background.
This text has black color on #6D74DA background.
This text has white color on #6D74DA background.