日本語

5 Ways to Inspect Fonts, Colors, and Spacing on Any Website

April 22, 2026

tipsproductivity

You visit a beautifully designed website and want to know exactly what font that heading uses, what shade of blue the buttons are, or how much padding sits between sections. The answer is buried somewhere in the page’s CSS — but how you get to it depends on the tools you choose. Here are five approaches, each with different trade-offs for speed, depth, and ease of use.

Why Inspecting Design Styles Matters

Designers reference live websites constantly — checking competitor layouts, auditing brand consistency, or pulling values to match an existing system. Developers debug spacing mismatches and verify that implemented styles match the design spec. In both cases, the need is the same: see a page’s typography, colors, and spacing quickly and accurately.

The challenge is that most methods were built for developers, not for anyone who just needs the values. That gap has created a range of tools, from the full power of DevTools to focused extensions that show only what you need.

1. Chrome DevTools (Built-in)

Right-click any element, select Inspect, and the Elements panel opens with a full breakdown of every CSS property applied to it.

Pros:

Cons:

Best for: Developers who need full CSS debugging, not just design values.

2. WhatFont + ColorZilla (Specialized Tools)

The classic approach: install one extension for fonts and another for colors.

WhatFont identifies typefaces on hover — showing the font family, size, weight, and line height in a small tooltip. ColorZilla provides an eyedropper that samples any pixel on the page and copies the color as hex, RGB, or HSL.

Pros:

Cons:

Best for: Occasional checks where you only need one property at a time.

3. CSS Peeper (Design-Focused Overlay)

CSS Peeper was built explicitly as a DevTools alternative for designers. Click the extension icon, hover over any element, and a clean overlay shows typography, colors, and spacing in a card-style popup.

Pros:

Cons:

Best for: Designers who want quick visual checks without DevTools.

4. Hoverify (Multi-Tool Suite)

Hoverify bundles multiple inspection tools into a single extension: CSS inspector, color picker, font detector, screenshot capture, and asset downloader.

Pros:

Cons:

Best for: Users who want a single extension covering inspection, screenshots, and accessibility.

5. StylePeek (Persistent Side Panel)

StylePeek takes a different approach: it opens a browser side panel that stays visible while you browse. Click any element and see its typography, colors, and spacing — all in one persistent view that does not overlay the page.

StylePeek side panel showing typography details for a selected element

Typography details in the side panel — font family, size, weight, and line height at a glance

StylePeek side panel showing margin and padding with a visual box model

Visual box model showing margin and padding values

Pros:

Cons:

Best for: Designers and developers who inspect multiple elements across pages and want a persistent, non-intrusive panel.

Comparison at a Glance

ToolFontsColorsSpacingPersistent ViewOne-Click CopyExport
Chrome DevToolsYesYesYes (Computed tab)YesNoNo
WhatFont + ColorZillaYesYesNoNoPartialNo
CSS PeeperYesYesBasicNo (overlay)YesLimited
HoverifyYesYesYesNo (overlay)YesLimited
StylePeekYesYesYes (box model)Yes (side panel)YesTailwind / CSS / JSON

Which Tool Should You Choose?

The right choice depends on how often you inspect and what you do with the values:

No single tool is best for everyone. The key is matching the tool to the task — and knowing you do not need to open DevTools every time you want to check a font size.

Try the side panel approach: StylePeek inspects fonts, colors, and spacing in a persistent side panel — no overlays, no DOM injection. Free to use, with Tailwind and design token export in Pro.

Found this comparison helpful? Leave a review on the Chrome Web Store — it helps other designers find the tool.

Questions or feedback? Reach out at [email protected].