惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
量子位
博客园 - 司徒正美
V
V2EX
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
N
Netflix TechBlog - Medium
L
LangChain Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
HEX, RGB, HSL, and CMYK: A Developer's Colour Format Refe...
Snappy Tools · 2026-05-20 · via DEV Community

Snappy Tools

Colours in web and print work live in different worlds. Understanding which format to use — and when — saves you from mysterious colour shifts between your design tool and the browser.

HEX: The Web Default

Hex codes like #2f855a encode red, green, and blue as two hexadecimal digits each (00–FF = 0–255). Three pairs, 16 million possible colours.

color: #2f855a;       /* 6-digit hex */
color: #2f855a80;     /* 8-digit hex with alpha (80 = 50% opacity) */
color: #f06;          /* 3-digit shorthand for #ff0066 */

Enter fullscreen mode Exit fullscreen mode

Use it when: Writing CSS by hand, sharing colours with other developers, working with design systems.

Watch out for: 8-digit hex alpha is broadly supported now but wasn't until ~2017. Check your target browsers.

RGB: The Coordinate System

RGB splits colour into red, green, and blue channels, each 0–255 (or 0%–100%). More readable than hex when you're tweaking individual channels.

color: rgb(47, 133, 90);
color: rgb(47 133 90);           /* modern syntax — no commas */
color: rgb(47 133 90 / 50%);    /* modern syntax with alpha */
color: rgba(47, 133, 90, 0.5);  /* legacy rgba() with decimal alpha */

Enter fullscreen mode Exit fullscreen mode

Use it when: You're programmatically adjusting colour (add 20 to the red channel), or you need precise control over individual channels in JavaScript.

Watch out for: rgba() vs rgb() — modern CSS lets you write rgb(r g b / a) and skip rgba() entirely. Both work.

HSL: The Human Format

HSL (Hue, Saturation, Lightness) maps to how humans think about colour. Hue is 0–360 degrees on a colour wheel. Saturation and Lightness are 0%–100%.

color: hsl(145, 48%, 35%);
color: hsl(145 48% 35%);         /* modern syntax */
color: hsl(145 48% 35% / 50%);  /* with alpha */

Enter fullscreen mode Exit fullscreen mode

Use it when: Building dynamic colour systems in code — darkening a button on hover, generating a palette from a brand colour, or making a colour 20% lighter.

/* Make a colour 15% lighter */
function lighten(h, s, l, amount) {
  return `hsl(${h} ${s}% ${Math.min(l + amount, 100)}%)`;
}

Enter fullscreen mode Exit fullscreen mode

Because lightness is a direct knob, HSL is far better than RGB for programmatic colour manipulation.

Watch out for: HSL doesn't model perceived brightness. Two colours at L=50% look very different in brightness to the human eye (yellow vs blue). For perceptually uniform colour, look at OKLCH.

CMYK: For Print

CMYK (Cyan, Magenta, Yellow, Key/Black) is the colour model for print. CSS doesn't support it natively — it's a print and design tool concept.

If you're handing off assets to a printer or working in Illustrator/InDesign, you'll encounter CMYK. The critical thing: RGB ≠ CMYK. Colours that look vivid on screen can become dull in print because printers can't reproduce some sRGB values.

Conversion is lossy — going from RGB to CMYK loses some gamut. Always convert from RGB to CMYK at the end of your design process, not the start.

#2f855a in RGB → C:65% M:0% Y:57% K:48% in CMYK

Enter fullscreen mode Exit fullscreen mode

OKLCH: The Newcomer Worth Knowing

OKLCH (Oklab Lightness Chroma Hue) is now supported in all modern browsers and solves HSL's perceptual brightness problem.

color: oklch(50% 0.15 145);

Enter fullscreen mode Exit fullscreen mode

The lightness value is perceptually uniform — oklch(50% ... ...) actually looks like the halfway point between black and white, regardless of hue. Great for generating accessible colour palettes algorithmically.

Quick Conversion Reference

Format Best for Editable in code?
HEX CSS, sharing, design handoff Limited
RGB Programmatic adjustment Yes
HSL Dynamic palettes, theming Yes
CMYK Print production N/A
OKLCH Accessible palettes, CSS Yes

Converting Between Formats

If you need to convert between HEX, RGB, HSL, and CMYK online, SnappyTools' free colour picker and converter handles all four formats in both directions — plus includes an eyedropper for picking colours from your screen.

The Practical Rules

  1. Write CSS in HEX — readable, universally supported, paste from anywhere
  2. Manipulate in HSL — adjusting lightness or saturation is one number change
  3. Use RGB for canvas/WebGL — those APIs expect 0–255 values
  4. Convert to CMYK only for print — and use a proper tool, not a formula
  5. Watch your alphargba() is legacy; rgb(r g b / a) is modern

Want to convert between HEX, RGB, HSL, and CMYK without a design tool? SnappyTools' colour picker does it in your browser with no signup required.