Slideshare Hex Color
#0077B5
(0, 119, 181)
Slideshare (or 0x0077B5), RGB value is (0, 119, 181). This html color code is also a web safe color which is equal to 0066CC. Slideshare hex color red value is 0, green value is 119 and the blue value of its RGB is 181. Cylindrical-coordinate representations (also known as HSL) of color Slideshare hue: 200.55248618785, saturation: 100 and the lightness value of Slideshare is 35.490196078431.
Color spaces of Slideshare
RGB | 0 | 119 | 181 |
---|---|---|---|
HSL | 200.55248618785 | 100.00% | 35.49% |
HSV | 201° | 100° | 71° |
CMYK | 1.00 | 0.34 | 0.00 0.29 |
XYZ | 14.9373 | 16.5298 | 46.1194 |
Yxy | 16.5298 | 0.1925 | 0.2131 |
CIELCh | 47.6621 | 40.6968 | 263.5367 |
CIE-Lab | 47.6621 | -4.5811 | -40.4382 |
Base Numbers
Base | Red | Green | Blue |
---|---|---|---|
Binary | 0 | 1110111 | 10110101 |
Octal | 0 | 167 | 265 |
Decimal | 0 | 119 | 181 |
Hex | 0 | 77 | B5 |
Analogous of Slideshare
These colors are all close to each other on a color wheel.
Triad of Slideshare
These colors are all equally distanced from each other on a color wheel, 2 of which have an alternate shade.
Tetrad of Slideshare
3 of these colors are all equally distanced from each other on a color wheel, plus 1 alternated shade for the base color and the 1 color that is opposite of the base color.
Weighted Tetrad of Slideshare
3 of these colors are all similarly distanced from each other on a color wheel, the base color has an alternate shade, and there is a weighted opposite color. These colors are all slightly closer to the base color than in a normal tetrad.
Compound of Slideshare
These colors use mathematical offsets that usually complement each other well, and can highlight the base color.
Slideshare CSS Color Codes
.mybgcolor {background-color:#0077B5; } .myforecolor {color:#0077B5; } .mybordercolor {border:3px solid #0077B5;}
Slideshare Text Font Color
<p style="color:#0077B5">Text here</p>
This sample text font color is #0077B5
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Slideshare Background Color
<div style="background-color:#0077B5">
Div content here</div>
This div background color is #0077B5
Slideshare Border Color
<div style="border:3px solid #0077B5">
Div here</div>
This div border color is #0077B5
Css3 Examples
.textShadowRgb { text-shadow: 4px 4px 2px rgba(0, 119, 181, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #0077B5}; } .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0077B5; -webkit-box-shadow: 1px 1px 3px 2px #0077B5; box-shadow: 1px 1px 3px 2px #0077B5}; }
Text Shadow with RGB Values
<p style="text-shadow: 4px 4px 2px rgba(0, 119, 181, 0.8);">Text here</p>
This text has shadow with rgb values.
Text Shadow with Hex Values
<p style="text-shadow: 4px 4px 2px #0077B5">Text here</p>
This text has shadow with hex values.
Div Box Shadow
<div style="-moz-box-shadow: 1px 1px 3px 2px #0077B5; -webkit-box-shadow: 1px 1px 3px 2px #0077B5; box-shadow: 1px 1px 3px 2px #0077B5;">
Div content here</div>
This div box has shadow with color #0077B5