hcv-daylight

0.1.5 • Public • Published

HDV-Daylight

‘‘ What people should do at night is sleep, not work.

Someone ( 1992 - )


Summary

HCV-Daylight provides color changes according to time of day, like bright in the morning, dark at night. Seasonal colors are customizable.

Installation

npm i hcv-daylight

Usage

Page alteration

// reflect current daylight to page
const daylight = require("hcv-daylight");
const props = [ "background-color",  "border-color", "color" ];
const config = { now: new Date(), impact: 0.1 };
daylight.reflectToPage(props, config);

Element alteration

// reflect current daylight to single element
const ele = document.getElementById("something");
const daylight = require("hcv-daylight");
const props = [ "background-color",  "border-color", "color" ];
const config = { now: new Date(), impact: 0.1 };
daylight.reflectToElement(ele, props, config);

Color alteration

// reflect current daylight to color
const daylight = require("hcv-daylight");
const config = { now: new Date(), impact: 0.1 };
const color = daylight.getReflectionColor("#333333");

Readme

Keywords

none

Package Sidebar

Install

npm i hcv-daylight

Weekly Downloads

2

Version

0.1.5

License

MIT

Unpacked Size

1.57 MB

Total Files

118

Last publish

Collaborators

  • gizmo-v-nk