Version 2.4.0 — Stable

Stop
Guessing.
Start Picking.

The web runs on absolute values. We extract, convert, and validate them. No AI fluff, no glassmorphism—just the raw math behind the screen.

Design is Math.

In 2024, the tolerance for "close enough" is zero. A 2.9:1 contrast ratio fails WCAG AA and alienates 8% of male users. A misaligned 4px padding breaks the grid on a 320px viewport.

PickClicker exists to expose the numbers. We build calculators, converters, and inspectors that do one thing perfectly: give you the exact values you need to build robust interfaces.

WCAG 2.2 Required
Color Spaces 12+
Latency < 10ms
JS Dependency Zero*
MEASURE TWICE. CUT ONCE. // NO TRACKERS // NO ADS //
MEASURE TWICE. CUT ONCE. // NO TRACKERS // NO ADS //
MEASURE TWICE. CUT ONCE. // NO TRACKERS // NO ADS //

Type System

Display
Space Grotesk
Body
IBM Plex Sans
Data / Code
IBM Plex Mono

We reject the Inter/Roboto hegemony. A tool built for precision requires typography that reflects industrial rigor. IBM Plex provides the engineered foundation; Space Grotesk adds the necessary geometric aggression.

Read the Implementation Guide

State of the Web 2024

Color Space Adoption is Accelerating, but Legacy Fails Persist.

Format Support Gamut Verdict
HEX / sRGB 100% Standard Legacy Safe
HSL 99.8% Standard Deprecated*
Display P3 89.4% Wide (+25%) Progressive
OKLCH 89.4% Wide Recommended

* HSL is mathematically flawed for perceptual uniformity.

The Shift to OKLCH

The problem with HSL and HSV is perceptual inconsistency. Two colors with the exact same "Lightness" value in HSL can appear vastly different in perceived brightness to the human eye. A pure yellow at 50% lightness is blinding; a pure blue is nearly black.

OKLCH solves this by mapping to human perception. A lightness value of 60% in OKLCH looks equally bright whether the hue is yellow or blue. This makes programmatic theme generation mathematically sound.

Read the OKLCH Migration Guide

Zero Client
Dependencies.

We don't load 4MB of React to change the background color of a div. Our interactive tools use Alpine.js for lightweight, declarative DOM manipulation.

More importantly, we enforce a strict <noscript> fallback policy. If JavaScript fails, is blocked, or is disabled, you get a functional HTML form that submits to the server. The web is a document first.

HTML
CSS
JS?
<!-- The PickClicker Standard -->
<noscript>
  <form action="." method="GET">
    <label for="hex">Hex Color</label>
    <input type="text" id="hex" name="hex">
    <button type="submit">Convert</button>
  </form>
</noscript>

<div x-data="converter()" x-show="true" style="display:none">
  <!-- JS Enhanced UI -->
</div>
15+
Precision Tools
0
Tracking Cookies
100%
Static HTML
WCAG
AA Compliant

Frequently Asked Questions

Why is this site so brutalist?

Because data tools shouldn't be pretty; they should be legible. Soft shadows, rounded corners, and low-contrast text actively hinder the ability to read and copy precise values. We prioritize function and stark clarity over current design trends.

Are the color conversions exact?

Yes. Many online converters use rounding shortcuts that result in off-by-one errors in RGB values. Our JavaScript functions use precise floating-point math before applying the final necessary integer rounding for CSS output.

Do I need an account to use the API?

There is no API, and there are no accounts. All tools run entirely in your browser using local math. You can disconnect from the internet and the tools will still function perfectly.

The Landscape

Tool Focus Drawbacks PickClicker Alternative
Coolors.co Generative palettes, discovery. Heavy ads, accounts required for pro features, bloated UI for simple tasks. Direct Hex/RGB tools, no accounts.
WebAIM Contrast Industry standard WCAG checking. Dated UI, lacks modern visual context and programmatic copy features. Contrast Checker with live preview UI.
CSSmatic CSS Generators (Shadows, Radii). Abandoned, no updates for modern CSS specs, heavy advertising. Modern Box Shadow & Triangle tools.
100% Free
Open Source
No Ads
Client-Side

Ready to measure?

Stop guessing hex codes and start building with precision. Access the full toolkit instantly.

Open The Toolkit