prefers-contrast
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

🕶️ Prefers contrast

Travis CI Coverage Status GitHub Vulnerabilities NPM type definitions NPM Minzipped size

NPM

Prefers contrast is a package that tells you whether a user prefers increased contrast. It's based on the CSS @media (prefers-contrast), which is part of Media Queries Level 5. It's around 700 bytes minified, 300 bytes gzipped.

⭐ Usage

Add the dependency from NPM:

npm install prefers-contrast

Import the package:

import prefersContrast from "prefers-contrast";

Then call the function:

const contrastPreference = prefersContrast();
// Returns "high", "low" or "no-preference"

💡 Browser support

This package only works in browsers that natively support @media (prefers-contrast), so it just returns "no-preference" in unsupported browsers. Current browser support

By passing false as the argument, you can get "unsupported" as the value for unsupported browsers:

const contrastPreference = prefersContrast(false);
// Returns "high", "low", "no-preference", or "unsupported"

🛠️ Development

Install dependencies:

yarn

Compile Typescript to ES6 before publishing to NPM:

yarn build

📀 Media Queries Level 5

📝 License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i prefers-contrast

Weekly Downloads

2

Version

2.0.1

License

MIT

Unpacked Size

8.16 kB

Total Files

6

Last publish

Collaborators

  • anandchowdhary