New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cascading-color-systems

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cascading-color-systems - npm Package Compare versions

Comparing version 0.1.0-beta.3 to 0.1.0-beta.4

dist.js

14

CHANGELOG.md
# Changelog
## 0.1.0-beta.4 - 2019/9/30
- BREAKING: Replace `html` selectors with `data-ccs='root'`
- BREAKING: Changed the names of all `--ccs-<l | s>--contrast` variables,
to create fg and bg versions:
- `--ccs-s--fg-contrast`
- `--ccs-s--bg-contrast`
- `--ccs-l--fg-contrast`
- `--ccs-l--bg-contrast`
- Core colors and full-contrast colors are gnerated by default,
without any call to the `colors()` mixin
- Expose both ES module `index.js` and babel-generated `dist.js`
- More detail in readme…
## 0.1.0-beta.3 - 2019/9/22

@@ -4,0 +18,0 @@

12

package.json
{
"name": "cascading-color-systems",
"version": "0.1.0-beta.3",
"version": "0.1.0-beta.4",
"description": "generate dynamic color palettes with custom properties",
"main": "index.js",
"main": "dist.js",
"module": "index.js",
"homepage": "https://cascading-colors.netlify.com",

@@ -10,5 +11,6 @@ "repository": "mirisuzanne/cascading-color-system",

"license": "MIT",
"dependencies": {},
"devDependencies": {
"browserify": "^16.5.0",
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"sass": "1.23.0-module.beta.1",

@@ -21,3 +23,3 @@ "sassdoc": "^2.7.1",

"build-docs": "sassdoc sass/",
"build-js": "browserify site/index.js -o site/bundle.js",
"build-js": "yarn babel index.js --out-file dist.js",
"build-site": "sass site/sass/styles.scss site/css/styles.css",

@@ -24,0 +26,0 @@ "build": "yarn build-sass && yarn build-docs && yarn build-js && yarn build-site",

@@ -13,12 +13,265 @@ # Cascading Color Systems

## Requirements
## Installation & Requirements
Download the filees from [GitHub][gh],
or install using npm or yarn:
```bash
npm install cascading-color-systems --save-dev
yarn add cascading-color-systems --dev
```
### CSS (minimal configuration)
The default configuration can be used as plain CSS:
```css
/* css */
@import '<path-to>/cascading-color-systems/css/ccs.css';
```
```html
<!-- html -->
<link src="<path-to>/cascading-color-systems/css/ccs.css" rel="stylesheet">
```
You can copy that file anywhere you want,
and it works without dependencies.
### Sass (full configuration)
If you want to use the Sass features,
you will need [Dart-Sass][sass] `v1.23+`
(which may still be in Beta).
This was partially an experiment
in Sass Modules,
currently in beta.
We use the module syntax throughout,
so currently this requires the beta release of Dart-Sass.
in the latest Sass feature: Modules.
## Docs
Import using the new module import syntax:
Coming soon…
```scss
@use '<path-to>/cascading-color-systems/' as ccs with (
/* configuration options */
);
```
[gh]: https://github.com/mirisuzanne/cascading-color-system/
[sass]: https://www.npmjs.com/package/sass
## Getting started
### CCS Root
Both imports generate
core configuration options
as CSS custom properties
(set by Sass when applicable):
```scss
[data-ccs='root'] {
--ccs-prime--config: #{$prime-hue or 330};
--ccs-accent--config: #{$accent-hue or null};
--ccs-lightness--config: #{$lightness or null};
--ccs-saturation--config: #{$saturation or null};
--ccs-contrast--config: #{$contrast or null};
--ccs-fade-background--config: #{$fade-background};
}
```
This also configures a light/dark-mode toggle,
and fallback values for both modes:
```scss
// fallback values, in case variables are not supported
[data-ccs='root'] {
background: $fallback-light;
color: $fallback-dark;
@media (prefers-color-scheme: dark) {
background: $fallback-dark;
color: $fallback-light;
}
}
```
Add the `data-ccs='root'` attribute to you `html` element
in order to make your Cascading Colors configuration
available to an entire page.
This attribute will also be used by JavaScript
to apply dynamic user settings globally.
### CCS Color Attributes
Custom properties only re-calculate
where they are defined --
so we've created a
`[data-ccs-colors]` attribute,
which can be applied anywhere
new colors are needed.
This attribute provides your base colors as custom properties:
- `--ccs-prime`, `--ccs-prime`:
Prime and accent hues, with base lightness and saturation
- `--ccs-neutral`:
The neutral hue gets base lightness
and full-contrast saturation
- `--ccs-<prime | accent | neutral >--fg-full` :
All three hues get a full-contrast foreground
- `--ccs-<prime | accent | neutral >--bg-full` :
All three hues get a full-contrast background
- `--ccs--bg-full` white or black, depending on light/dark mode
- `--ccs--fg-full` white or black, depending on light/dark mode
We also provide the color attributes needed
to generate a larger palette:
- `--ccs-h--prime`:
the calculated primary hue,
based on user-settings, theme-settings, and global configuration
- `--ccs-h--accent`:
the calculated acccent hue,
based on theme-settings, and global configuration
(there is currently no direct user input for accent hue)
- `--ccs-h--neutral`:
the calculated neutral hue,
based on theme-settings and global configuration;
generally either `--ccs-h--prime` (the default)
or `--ccs-h--accent`
- `--ccs-contrast`:
the calculated contrast range
based on theme, user, and global settings
- `--ccs-l`, `--ccs-l--<fg | bg>-contrast`:
the calculated base lightness (user, theme, global)
and full-contrast fg/bg values
- `--ccs-s`, `--ccs-s--<fg | bg>-contrast`:
the calculated base saturation (user, theme, global)
and full-contrast fg/bg values
- `--ccs-mode`:
the calculated light (`1`) or dark (`-1`) mode
(user, theme, html, or system preference)
- `--ccs-mode--invert` the opposite of CCS-mode
You can pass explicit light/dark mode overrides in html
by including a value with the attribute:
```html
<section data-ccs-colors="light">
<!-- light background, dark foreground -->
<div data-ccs-colors="invert">
<!-- invert the colors (can't be nested multiple times) -->
</div>
</section>
<section data-ccs-colors="dark">
<!-- dark background, light foreground -->
</section>
```
### CCS Color Palettes
More complex color palettes have to be generated in Sass,
based on the number of `$steps` desired
to get from the base colors to their full-contrast versions.
If you import the static CSS file,
we generate a palette based on the default settings,
with 4 steps in either direction.
Each step is named `--ccs-<hue>--<direction><step>`,
eg `--ccs-prime--fg1`, or `--ccs-accent--bg3`.
### Creating Themes
Themes can be used to pre-set any color values
(especially the accent hue),
and even show/hide user customization controls.
We provide several built-in themes,
and you can add your own
using the `[data-ccs-theme]` attribute:
```scss
[data-ccs-theme='complement'] {
/* set the accent color 180 degrees off the primary color */
--ccs-accent--theme: calc(var(--ccs-h--prime) + 180);
}
[data-ccs-theme='triad'] { /* triad logic*/ }
[data-ccs-theme='adjacent'] { /* adjacent loogic */ }
[data-ccs-theme="contrast"] {
--ccs-contrast: 200%; /* override all other contrast settings */
--ccs-custom-contrast: none; /* hide [data-ccs="contrast-select"] */
}
```
### Sass Configuration
In most cases,
you'll want to define the `$prime-hue`,
and possibly a few other options --
and then trigger a build from the module itself.
Here's the code from one of my sites:
```scss
@use "../../node_modules/cascading-color-systems/" as ccs with (
$prime-hue: 0,
$saturation: 70%,
$contrast: 48%,
$steps: 6,
$fade-background: 15%,
$fades: 0.75,
$build: true,
);
```
The `$build: true` configuration
will generate CSS output based on your settings.
I recommend that for most use-cases,
but you can leave that out
and apply individual mixins:
```scss
[data-ccs-colors] {
@include colors;
}
```
### User Settings & JavaScript
The provided JS
can be hooked up to a form
to accept user-input,
generate custom properties based on their input,
store their preferences in `localStorage`,
or revert back to the configured site defaults.
Using the `dist.js` babel output:
```html
<script type="text/javascript" src="dist.js"></script>
<script type="text/javascript">ccs.default();</script>
```
We provide several hooks for the JS to use
- `[data-ccs="root"]`:
where user settings should be applied
- `[data-ccs="menu"]`:
if you hide the settings by default,
we'll show them when the JS is available
- `[data-ccs="invert"]`:
a button to toggle light/dark modes
- `[data-ccs="unset"]`:
a button to unset all user preferences
and clear related local storage
- `[data-ccs="theme-select"] select`:
Allow users to select from available `theme` options
- `[data-ccs="hue-select"] input`:
Allow users to change the primary hue
- `[data-ccs="saturation-select"] input`:
Allow users to adjust the baseline saturation
- `[data-ccs="lightness-select"] input`:
Allow users to adjust the baseline lightness
- `[data-ccs="contrast-select"] input`:
Allow users to adjust the contrast range

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc