HEX color reference

What color is #E0F2FE?

#E0F2FE is a sky color suited for light sky background, info panel, soft selected state. It works best when used deliberately for info states, travel ui, charts, with contrast checked against the final background and text size.

This page gives practical values for #E0F2FE: RGB, HSL, readable text color, WCAG-style contrast, palette ideas, tints, shades, and code snippets. It is built for designers and developers who need more than a single color swatch.

#E0F2FE
Sky 100

Color values

HEX
#E0F2FE
RGB
rgb(224, 242, 254)
HSL
hsl(204, 94%, 94%)
Color family
sky

Contrast

The suggested readable text color for #E0F2FE is #000000. Always test final typography and component size before shipping.

vs white: 1.15
vs black: 18.30
Preview text on #E0F2FE

Best uses

  • - Info states
  • - Travel UI
  • - Charts
  • - Bright links

Palette ideas for #E0F2FE

CSS and design token examples

Use these snippets as a starting point, then rename the token by purpose: primary, success, warning, accent, or surface. A named token is easier to maintain than repeating #E0F2FE across many components.

CSS variables
:root {
  --primary: #E0F2FE;
  --primary-rgb: 224, 242, 254;
  --primary-hsl: 204 94% 94%;
}
Tailwind config
// tailwind.config.js
export default {
  theme: {
    extend: {
      colors: {
        primary: "#E0F2FE",
      },
    },
  },
};
JSON token
{
  "primary": "#E0F2FE",
  "primaryRgb": [224, 242, 254],
  "primaryHsl": {"h": 204, "s": 94, "l": 94}
}
SCSS variables
$primary: #E0F2FE;
$primary-rgb: 224, 242, 254;
$primary-hsl: 204 94% 94%;

How to use #E0F2FE in UI

Use it with a role

Decide whether #E0F2FE is a primary action, a status color, an accent, a chart color, or a background support color before adding it to a design system.

Create states

Use tints and shades for hover, active, selected, disabled, and subtle backgrounds. Do not invent unrelated colors for each state.

Check contrast

The fastest check is black versus white text, but final UI should be tested with actual font size, weight, and surface color.

Export consistently

Copy one source format into your token layer so the same color does not drift across CSS, Tailwind, JSON, and component files.

When to use and avoid #E0F2FE

Use #E0F2FE when

Use this color when its role is visible and repeatable. It works best when it is tied to a clear interface job such as a primary action, status badge, chart highlight, product category, or brand accent. The color should help users understand the page faster.

Avoid #E0F2FE when

Avoid using it as a random decoration or applying it to too many unrelated elements. If every icon, card, heading, and button uses the same color, the color stops communicating priority. Use neutrals and tints to keep hierarchy clear.

Accessibility note

Contrast depends on the foreground and background pair, not the HEX value alone. Use the contrast scores above as an early check, then test the final component with real text size, font weight, spacing, and surrounding surfaces.

Token naming note

If #E0F2FE appears more than once in your codebase, give it a token name. Good names describe purpose, such as primary, success, warning, accent, or surface. This prevents small color differences from spreading across components.

FAQ about #E0F2FE

What is the RGB value of #E0F2FE?

The RGB value is rgb(224, 242, 254). RGB is useful when checking browser dev tools, canvas pixels, or computed CSS values.

What is the HSL value of #E0F2FE?

The HSL value is hsl(204, 94%, 94%). HSL is useful when creating lighter tints, darker shades, and calmer variations.

Which text color works best on #E0F2FE?

Based on black and white contrast, #000000 is the better quick choice. For production UI, confirm the result with the final font size and component state.

Can I use #E0F2FE in Tailwind or CSS variables?

Yes. Use the export snippets above as a starting point, then rename the color by role so the value is maintainable across your project.

Related color pages