Skip to content

VBC-206: pure-black-background

warning

Category: ux-dx
Analysis: Regex (line by line)
File types: .css
Scope: source code only, ignoring anything inside strings and comments
Tags: ux design

What it reports

Pure black backgrounds (#000000) can cause eye strain. Consider a soft dark grey (e.g., #121212).

Flagged

css
body { background-color: #000000; }

Not flagged

css
body { background-color: #12151b; }

Pattern

regex
background-color:\s*#000000|background:\s*#000

Released under the MIT License.