Ocean Boat Blue

HEX: #0077BE | Modern Palette

On White
4.79:1
PASS
On Black
4.38:1
FAIL

Color Specifications

HEX
#0077BE
RGB
0, 119, 190
HSL
202°, 100% ,74%
CMYK
100, 37.37, 0, 25.49

About Ocean Boat Blue

Ocean Boat Blue (#0077BE) is a color with RGB(0, 119, 190) and HSL(202.42°, 100%, 74.51%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #BE4700, which creates strong contrast. Its triadic palette includes #BE0077 and #77BE00. The name comes from Ocean Boat Blue (English).

  • HEX: #0077BE
  • RGB: 0, 119, 190
  • HSL: 202.42°, 100%, 74.51%
  • Mood: Bold, Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #BE4700
  • Triadic colors: #BE0077, #77BE00
  • The name comes from Ocean Boat Blue (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #0077BE from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #6565BF
Protanopia #7171BE
Tritanopia #008383
Achromatopsia #727272

Frequently Asked Questions

Ocean Boat Blue (#0077BE) is a color with RGB(0, 119, 190) and HSL(202.42°, 100%, 74.51%).

#0077BE pairs strongly with #BE4700 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#0077BE is suitable for Text, Button, Accent and works well with Neon, Cool styles.

#0077BE is commonly associated with Bold, Playful.

The name Ocean Boat Blue is linked to Ocean Boat Blue from English, meaning A shade of blue reminiscent of the deep blue of the ocean and the color often used for boats..

Name, History & Etymology

Origin Word Ocean Boat Blue
Meaning A shade of blue reminiscent of the deep blue of the ocean and the color often used for boats.
Language English
First Recorded Use Late 20th Century

History

The color blue itself has a rich history, from ancient pigments like lapis lazuli to synthetic dyes. 'Ocean Boat Blue' is not a historical pigment but a descriptive name for a specific hue within the blue spectrum. Its history is tied to the development of digital color systems (like RGB and hex codes) and the need for evocative names to differentiate shades. The combination 'Ocean Boat' suggests a practical and aesthetic connection to maritime themes, where blue is dominant. It's a color that evokes both the vastness of the sea and the sturdy, often painted, vessels that traverse it.

First Recorded Use

The specific name 'Ocean Boat Blue' with the hex code #0077be appears to be a modern, descriptive color name, likely originating in digital color palettes or design specifications. While the concept of 'ocean blue' or 'boat blue' existed much earlier, this precise compound name is more recent. Its widespread use would align with the proliferation of web colors and standardized digital palettes, placing its 'first use' as a distinct named color in the late 20th or early 21st century.

Cultural Associations

Blue, in general, is often associated with tranquility, stability, wisdom, and the sea. 'Ocean Boat Blue' specifically taps into maritime culture, evoking images of sailing, the open ocean, and the practical yet often beautiful colors of working boats or yachts. It can symbolize adventure, freedom, and a connection to nature. In design, it's a popular choice for conveying reliability, professionalism, and a sense of calm, often used in technology, travel, and environmental branding.

Similar Named Colors

French Blue #0072BB ΔE 1.93
Star Command Blue #007BB8 ΔE 2.50
Spanish Blue #0070B8 ΔE 2.66
True Blue #0073CF ΔE 3.46

Code Snippets

/* Background */
.element {
    background-color: #0077BE;
}

/* Text */
.element {
    color: #0077BE;
}

/* Border */
.element {
    border: 1px solid #0077BE;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #0077BE,
        #FFAE7D
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #0077BE,
        #FFAE7D
    );
}

// SCSS variable
$ocean-boat-blue: #0077BE;

// With RGB channels (useful for rgba() usage)
$ocean-boat-blue-r: 0;
$ocean-boat-blue-g: 119;
$ocean-boat-blue-b: 190;

// Usage
.element {
    background-color: $ocean-boat-blue;
    color: rgba($ocean-boat-blue-r, $ocean-boat-blue-g, $ocean-boat-blue-b, 0.8);
}