#6BEEFE Electric Blue

rgb(107, 238, 254)

Color conversions

HEX
#6BEEFE
RGB
rgb(107, 238, 254)
RGBA
rgba(107, 238, 254, 1)
HSL
hsl(187, 99%, 71%)
HSV / HSB
hsv(187, 58%, 100%)
CMYK
cmyk(58%, 6%, 0%, 0%)

Wide-gamut spaces

XYZ
xyz(54.52, 71.425, 104.66)
LAB
lab(87.69 -31.5 -18.6)
LCH
lch(87.69 36.59 210.56)
OKLAB
oklab(88.18% -0.1046 -0.0515)
OKLCH
oklch(88.18% 0.1166 206.21)
Nearest name
Electric Blue

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#6beefe1a

#6beefe33

#6beefe4d

#6beefe66

#6beefe80

#6beefe99

#6beefeb3

#6beefecc

#6beefee6

#6beefeff

Accessibility and contrast

On white

1.37:1

Body text Fail · Large text Fail

On black

15.29:1

Body text AAA · Large text AA

White-on-color contrast is 1.37:1.

Color blindness preview

Protanopia

No red cones — ~1% of men

Protanomaly

Reduced red sensitivity — ~1% of men

Deuteranopia

No green cones — ~1% of men

Deuteranomaly

Reduced green sensitivity — ~5% of men

Tritanopia

No blue cones — very rare

Tritanomaly

Reduced blue sensitivity — very rare

Achromatopsia

No color perception — ~1 in 30,000

Achromatomaly

Partial color perception — rare

Meaning, psychology and brand usage

Clean, technical, and effortlessly modern

Cyan and teal sit between blue's trust and green's calm, reading as clinical and precise. They perform well in data visualisation because they remain distinguishable for most forms of colour vision deficiency.

Water, hygiene, and clarity almost universally. Teal specifically carries a mid-century and medical association in Western design history.

Cyan entered common vocabulary through four-colour printing, where it is one of the process inks. Egyptian blue and later cerulean gave artists the closest historical equivalents.

Excellent for healthcare, SaaS, and fintech seeking approachability without blue's ubiquity. Deepen it for text use — bright cyan rarely reaches AA on white.

Common industries: Healthcare, SaaS, Travel, Water & utilities, Beauty. Pairs well with coral for warmth, deep navy for hierarchy, soft gray for restraint.

Code exports

CSS

:root {
  --color-electric-blue: #6beefe;
  --color-electric-blue-rgb: 107 238 254;
  --color-electric-blue-hsl: 187 99% 71%;
  --color-electric-blue-oklch: 88.18% 0.1166 206.21;
}

.element {
  color: #6beefe;
  background-color: hsl(187, 99%, 71%);
  border: 1px solid rgb(107 238 254 / 40%);
}

SCSS

$electric-blue: #6beefe;
$electric-blue-light: #b5f7ff;
$electric-blue-dark: #36777f;

.element {
  color: $electric-blue;
  background: rgba($electric-blue, 0.12);

  &:hover {
    color: darken($electric-blue, 8%);
  }
}

LESS

@electric-blue: #6beefe;
@electric-blue-light: lighten(@electric-blue, 12%);
@electric-blue-dark: darken(@electric-blue, 12%);

.element {
  color: @electric-blue;
  background: fade(@electric-blue, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-electric-blue-50: #e1fcff;
  --color-electric-blue-100: #d3faff;
  --color-electric-blue-200: #c4f8ff;
  --color-electric-blue-300: #a6f5fe;
  --color-electric-blue-400: #89f1fe;
  --color-electric-blue-500: #6beefe;
  --color-electric-blue-600: #60d6e5;
  --color-electric-blue-700: #4ba7b2;
  --color-electric-blue-800: #36777f;
  --color-electric-blue-900: #20474c;
}

/* Usage */
<div class="bg-electric-blue-500 text-electric-blue-50 ring-electric-blue-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#6beefe]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$electric-blue: #6beefe;
$primary: $electric-blue;

$theme-colors: map-merge($theme-colors, (
  "electric-blue": $electric-blue
));

// Generates .text-electric-blue, .bg-electric-blue, .btn-electric-blue
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color electricBlue = Color(0xFF6BEEFE);

// As a MaterialColor swatch
const MaterialColor electricBlueSwatch = MaterialColor(0xFF6BEEFE, <int, Color>{
  50: Color(0xFFE1FCFF),
  100: Color(0xFFD3FAFF),
  200: Color(0xFFC4F8FF),
  300: Color(0xFFA6F5FE),
  400: Color(0xFF89F1FE),
  500: Color(0xFF6BEEFE),
  600: Color(0xFF60D6E5),
  700: Color(0xFF4BA7B2),
  800: Color(0xFF36777F),
  900: Color(0xFF20474C),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #6beefe — Electric Blue
    static let electricBlue = Color(
        red: 0.4196,
        green: 0.9333,
        blue: 0.9961
    )
}

// UIKit
extension UIColor {
    static let electricBlue = UIColor(
        red: 0.4196,
        green: 0.9333,
        blue: 0.9961,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="electric_blue">#6BEEFE</color>
    <color name="electric_blue_translucent">#806BEEFE</color>
</resources>

<!-- Jetpack Compose -->
val ElectricBlue = Color(0xFF6BEEFE)

JavaScript

export const ELECTRIC_BLUE = {
  hex: "#6beefe",
  rgb: [107, 238, 254],
  hsl: [187, 99, 71],
  oklch: "oklch(88.18% 0.1166 206.21)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "electric-blue": {
    "$type": "color",
    "$value": "#6beefe",
    "$description": "Electric Blue — generated by ColorVerse AI"
  }
}