npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

light-levels

v2.2.0

Published

A polyfill for the light-levels media query

Downloads

14

Readme

Light Levels

Travis npm package Coveralls

A vanilla JavaScript plugin for polyfilling the light-level CSS @media feature.

This media feature can be used to adjust styles based on the ambient light level - however since it's from a relatively recent Working Draft, it currently has zero browser support.

This polyfill detects ambient light levels and applies a corresponding class name to the <html> element in order to emulate the same behaviour today.

It is recommended to combine this plugin with the PostCSS plugin postcss-light-levels which allows you to write the upcoming syntax but uses it to generate class names which correlate to the ones generated by this library.

It is worth nothing that both this JS library and PostCSS plugin can be used independently if you wish.

Table of Contents

Demo

A working demo can be found here: https://daveordead.github.io/light-levels-demo/

Browser Support

| Edge | Firefox | Android Firefox | Chrome | Android Chrome | | --------- | --------- | --------- | --------- | --------- | | 16 | 62 :triangular_flag_on_post: | 62 :triangular_flag_on_post: | 54 :checkered_flag: | 54 :checkered_flag: |

:triangular_flag_on_post: uses deprecated ondevicelight behind the device.sensors.ambientLight.enabled feature flag

:checkered_flag: Uses AmbientLightSensor behind the #enable-generic-sensor-extra-classes feature flag

Installation

npm

npm install light-levels --save

CDN

<script src="https://unpkg.com/light-levels/umd/light-levels.min.js"></script>

A vanilla JavaScript plugin for polyfilling the light-level CSS @media feature.

Usage

ES module

import lightLevels from "light-levels";

lightLevels();

CommonJS

const lightLevels =  require("light-levels");

lightLevels();

UMD

If you use the direct <script> approach you can instantiate lightLevels as a browser global.

<script>
    lightLevel();
</script>

CSS

By default this plugin applies classes of .light-level-dim, .light-level-normal or .light-level-washed to match the values of the light-level media query.

/* Styles to apply in low light environments */
.light-level-dim p {
  background-color: black;
  color: white;
}

/* Styles to apply in normal light environments */
.light-level-normal p {
  background-color: white;
  color: black;
}

/* Styles to apply in bright light environments */
.light-level-washed p {
  background-color: pink;
  color: orange;
}

Options

lightLevels({
    prefix: "light-level-"
});

| Name | Usage | Default | | ----------- | ----- | ------- | | prefix | if the prefix light-level- doesn't suit your code base, you can change it to something more appropriate with this option. Note: The postfix names of ['dim' \ 'normal' \ 'washed'] can not be modified. If you are using this in combination with the PostCSS plugin you should also update the prefix option there. | 'light-level-' |

License

Copyright (c) 2020 David Berner

Licensed under the MIT license (see LICENSE.md for more details)