This package has been deprecated

Author message:

DEPRECATION: This package has been renamed to kladenets. Please install the new package via npm i -S kladenets

root-variables

1.1.2 • Public • Published

Root Variables

Minimal, future-proof native CSS variables (CSS Custom Properties) framework in :root designed with the following features:

  • Minimal variables defined: colors, typography, and layout helpers.
  • HSL colors: all colors are HSL-based for more straightforward manipulation (before we have CSS Color Module Level 4 in hands).
  • Easy to migrate: no magic variables for flex, or grid layout. You can continue to use your existing layout system.
  • Flexible to extend: all variables can be overridden later in :root or in specific scopes.
  • Dark mode ready: extend your existing app with prefers-color-scheme: dark, tweak colors with HSL, and you're ready to go.

Installation

unpkg

<link rel="stylesheet" href="https://unpkg.com/root-variables">

jsDelivr

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/root-variables/root-variables.css">
<!-- OR latest on GitHub -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sparanoid/root-variables/root-variables.css">

Yarn

yarn add root-variables

npm

npm i -S root-variables

Usage

Direct CSS

See app.css for example.

Import node_modules in Webpack

@import '~root-variables';

body {
  color: var(--text-color);
}

Import in JavaScript

import 'root-variables'

// styled-components example
const Component = styled.div`
  color: var(--text-color);
`

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i root-variables

Weekly Downloads

30

Version

1.1.2

License

MIT

Unpacked Size

35.1 kB

Total Files

6

Last publish

Collaborators

  • sparanoid