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

0.2.0 • Public • Published

Quolor

A simple library to apply colors from the query string to the page.

Usage

import { quolor } from 'quolor';

quolor(document);

Custom Rules

import { quolor, Binding } from 'quolor';

const rules: Binding[] = [
  {
    type: 'text',
    css: '--query-color-text',
    query: 'color-text',
    elements: ['p', 'a'],
  },
  {
    type: 'background',
    css: '--query-color-bg',
    query: 'color-bg',
    specialElements: ['html'],
  },
];

quolor(document, rules);

Default Rules

{
    type: 'text',
    css: '--query-color-text',
    query: 'color-text',
    elements: ['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'p'],
},
{
    type: 'background',
    css: '--query-color-bg',
    query: 'color-bg',
    specialElements: ['html'],
},

Package Sidebar

Install

npm i quolor

Weekly Downloads

0

Version

0.2.0

License

MIT

Unpacked Size

4.08 kB

Total Files

4

Last publish

Collaborators

  • 4mbl