HEX: #0033FF
RGB: (0,51,255)
#0033FF contains mainly blue color. #0033FF color is web safe color. It maybe written shortly as #03F.
#0033FF color RGB value is (0,51,255).
RGB: (0,51,255) (0%,20%,100%)
R 0 of 255 = 0%
G 51 of 255 = 20%
B 255 of 255 = 100%
R + G + B ~ 40%. #0033FF is middle color (not dark and not light).
R + G + B =
0 + 51 + 255 = 306 (100%)
R 0 of 306 ~ 0%
G 51 of 306 ~ 16.67%
B 255 of 306 ~ 83.33%
#0033FF color CMYK value is (100,80,0,0).
CMYK: (100,80,0,0) C100M80Y0K0 (100%,80%,0%,0%) (1.00/0.80/0.00/0.00)
00 | 33 | FF | |
---|---|---|---|
RGB | 0 | 51 | 255 |
HSL | 228° | 100.00% | 50.00% |
HSB/HSV | 228° | 100.00% | 100.00% |
CMYK | 100.00% | 80.00% | 0.00% |
0.00% |
HEX | 00 | 33 | FF |
Decimal | 0 | 51 | 255 |
Binary | 0 | 110011 | 11111111 |
Octal | 0 | 63 | 377 |
Examples of css and html codes for elements with #0033FF color. Also use rgb(0,51,255) instead hex code.
.myTextColor { color: #0033FF; }
<p style="color:#0033FF">This sample text font color is #0033FF.</p>
This text font color is #0033FF.
.myBgColor { background-color: #0033FF; }
<div style="background-color:#0033FF">Inner text</div>
This div background color is #0033FF.
.myBorderColor { border: 1px solid #0033FF; }
<div style="border:3px solid #0033FF">Div</div>
This div border color is #0033FF.
.myOpacity80 { color: #0033FF; opacity: 0.8; }
<p style="color:#0033FF;opacity:0.8;">80%</p>
Text with #0033FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0033FF;}
<p style="text-shadow: 3px 3px 1px #0033FF">Text here.</p>
This text has shadow with #0033FF color.
.textShadow {text-shadow: 3px 3px 1px #0033FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0033FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #0033FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0033FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0033FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #0033FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0033FF; -webkit-box-shadow: 1px 1px 3px 2px #0033FF; box-shadow: 1px 1px 3px 2px #0033FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0033FF; -webkit-box-shadow: 1px 1px 3px 2px #0033FF; box-shadow:1px 1px 3px 2px #0033FF;">
Div content here</div>
This text has color #0033FF on black background.
This text has color #0033FF on white background.
This text has black color on #0033FF background.
This text has white color on #0033FF background.