HEX: #7130DD
RGB: (113,48,221)
#7130DD contains mainly blue color. Web safe color of #7130DD is #6633CC (or #63C).
#7130DD color RGB value is (113,48,221).
RGB: (113,48,221) (44%,19%,87%)
R 113 of 255 = 44%
G 48 of 255 = 19%
B 221 of 255 = 87%
R + G + B ~ 50%. #7130DD is middle color (not dark and not light).
R + G + B =
113 + 48 + 221 = 382 (100%)
R 113 of 382 ~ 29.58%
G 48 of 382 ~ 12.57%
B 221 of 382 ~ 57.85%
#7130DD color CMYK value is (49,78,0,13).
CMYK: (49,78,0,13) C49M78Y0K13 (49%,78%,0%,13%) (0.49/0.78/0.00/0.13)
71 | 30 | DD | |
---|---|---|---|
RGB | 113 | 48 | 221 |
HSL | 263° | 71.78% | 52.75% |
HSB/HSV | 263° | 78.28% | 86.67% |
CMYK | 48.87% | 78.28% | 0.00% |
13.33% |
HEX | 71 | 30 | DD |
Decimal | 113 | 48 | 221 |
Binary | 1110001 | 110000 | 11011101 |
Octal | 161 | 60 | 335 |
Examples of css and html codes for elements with #7130DD color. Also use rgb(113,48,221) instead hex code.
.myTextColor { color: #7130DD; }
<p style="color:#7130DD">This sample text font color is #7130DD.</p>
This text font color is #7130DD.
.myBgColor { background-color: #7130DD; }
<div style="background-color:#7130DD">Inner text</div>
This div background color is #7130DD.
.myBorderColor { border: 1px solid #7130DD; }
<div style="border:3px solid #7130DD">Div</div>
This div border color is #7130DD.
.myOpacity80 { color: #7130DD; opacity: 0.8; }
<p style="color:#7130DD;opacity:0.8;">80%</p>
Text with #7130DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7130DD;}
<p style="text-shadow: 3px 3px 1px #7130DD">Text here.</p>
This text has shadow with #7130DD color.
.textShadow {text-shadow: 3px 3px 1px #7130DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7130DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #7130DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7130DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7130DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #7130DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7130DD; -webkit-box-shadow: 1px 1px 3px 2px #7130DD; box-shadow: 1px 1px 3px 2px #7130DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7130DD; -webkit-box-shadow: 1px 1px 3px 2px #7130DD; box-shadow:1px 1px 3px 2px #7130DD;">
Div content here</div>
This text has color #7130DD on black background.
This text has color #7130DD on white background.
This text has black color on #7130DD background.
This text has white color on #7130DD background.