#347EEE Dodger Blue
rgb(52, 126, 238)
Color conversions
- HEX
- #347EEE
- RGB
- rgb(52, 126, 238)
- RGBA
- rgba(52, 126, 238, 1)
- HSL
- hsl(216, 85%, 57%)
- HSV / HSB
- hsv(216, 78%, 93%)
- CMYK
- cmyk(78%, 47%, 0%, 7%)
Wide-gamut spaces
- XYZ
- xyz(24.304, 21.822, 83.803)
- LAB
- lab(53.84 16.33 -62.88)
- LCH
- lch(53.84 64.96 284.56)
- OKLAB
- oklab(60.71% -0.0356 -0.1807)
- OKLCH
- oklch(60.71% 0.1841 258.85)
- Nearest name
- Dodger Blue
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#347eee1a
#347eee33
#347eee4d
#347eee66
#347eee80
#347eee99
#347eeeb3
#347eeecc
#347eeee6
#347eeeff
Accessibility and contrast
On white
3.91:1
Body text AA Large · Large text AA
On black
5.36:1
Body text AA · Large text AA
White-on-color contrast is 3.91: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
The default of trust — and of everything else
Blue lowers perceived risk and is consistently rated as the most trustworthy hue, which is exactly why it saturates finance, enterprise software, and social platforms. Its ubiquity is now its weakness: a blue primary is safe but rarely memorable.
Trust, stability, and competence in Western markets; immortality in parts of East Asia; and protection against the evil eye across the Mediterranean and Middle East.
Ultramarine was ground from lapis lazuli and once cost more than gold, which is why medieval painters reserved it for the Virgin's robes. Synthetic ultramarine in 1826 democratised it almost overnight.
Reliable as a primary in any category that must feel secure. Differentiate by pushing toward an unusual chroma or pairing with an unexpected accent rather than defaulting to blue-plus-gray.
Common industries: Finance, Enterprise software, Insurance, Government, Aviation. Pairs well with warm amber for energy, crisp white for clarity, rose for a contemporary contrast.
Code exports
CSS
:root {
--color-dodger-blue: #347eee;
--color-dodger-blue-rgb: 52 126 238;
--color-dodger-blue-hsl: 216 85% 57%;
--color-dodger-blue-oklch: 60.71% 0.1841 258.85;
}
.element {
color: #347eee;
background-color: hsl(216, 85%, 57%);
border: 1px solid rgb(52 126 238 / 40%);
}SCSS
$dodger-blue: #347eee;
$dodger-blue-light: #9abff7;
$dodger-blue-dark: #1a3f77;
.element {
color: $dodger-blue;
background: rgba($dodger-blue, 0.12);
&:hover {
color: darken($dodger-blue, 8%);
}
}LESS
@dodger-blue: #347eee;
@dodger-blue-light: lighten(@dodger-blue, 12%);
@dodger-blue-dark: darken(@dodger-blue, 12%);
.element {
color: @dodger-blue;
background: fade(@dodger-blue, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-dodger-blue-50: #d6e5fc;
--color-dodger-blue-100: #c2d8fa;
--color-dodger-blue-200: #aecbf8;
--color-dodger-blue-300: #85b2f5;
--color-dodger-blue-400: #5d98f1;
--color-dodger-blue-500: #347eee;
--color-dodger-blue-600: #2f71d6;
--color-dodger-blue-700: #2458a7;
--color-dodger-blue-800: #1a3f77;
--color-dodger-blue-900: #102647;
}
/* Usage */
<div class="bg-dodger-blue-500 text-dodger-blue-50 ring-dodger-blue-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#347eee]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$dodger-blue: #347eee;
$primary: $dodger-blue;
$theme-colors: map-merge($theme-colors, (
"dodger-blue": $dodger-blue
));
// Generates .text-dodger-blue, .bg-dodger-blue, .btn-dodger-blue
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color dodgerBlue = Color(0xFF347EEE);
// As a MaterialColor swatch
const MaterialColor dodgerBlueSwatch = MaterialColor(0xFF347EEE, <int, Color>{
50: Color(0xFFD6E5FC),
100: Color(0xFFC2D8FA),
200: Color(0xFFAECBF8),
300: Color(0xFF85B2F5),
400: Color(0xFF5D98F1),
500: Color(0xFF347EEE),
600: Color(0xFF2F71D6),
700: Color(0xFF2458A7),
800: Color(0xFF1A3F77),
900: Color(0xFF102647),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #347eee — Dodger Blue
static let dodgerBlue = Color(
red: 0.2039,
green: 0.4941,
blue: 0.9333
)
}
// UIKit
extension UIColor {
static let dodgerBlue = UIColor(
red: 0.2039,
green: 0.4941,
blue: 0.9333,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="dodger_blue">#347EEE</color>
<color name="dodger_blue_translucent">#80347EEE</color>
</resources>
<!-- Jetpack Compose -->
val DodgerBlue = Color(0xFF347EEE)JavaScript
export const DODGER_BLUE = {
hex: "#347eee",
rgb: [52, 126, 238],
hsl: [216, 85, 57],
oklch: "oklch(60.71% 0.1841 258.85)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"dodger-blue": {
"$type": "color",
"$value": "#347eee",
"$description": "Dodger Blue — generated by ColorVerse AI"
}
}