Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
simpler-color
Advanced tools
Create your own complete color system fast and easy!
Color is at the heart of every UI design system. A cohesive color system enables your application to:
Simpler Color makes it super easy to implement your own color system, no matter what platform, framework, or UI library you are using. It comes as a JavaScript/TypeScript library that works on both browser and Node.
Step 1: Install simpler-color
npm install simpler-color
Step 2: Define your color palettes and their corresponding base colors
const baseColors = {
primary: '#336669',
secondary: '#57614E',
neutral: '#5E5F5A',
}
Step 3: Create your color scheme(s) by mapping UI roles to specific colors from your palettes
import { colorScheme } from 'simpler-color'
const uiColors = colorScheme(baseColors, colors => ({
primaryButton: colors.primary(40),
primaryButtonText: colors.primary(95),
surface: colors.neutral(98),
text: colors.neutral(10),
}))
// You can now access your various UI colors as `uiColors.primaryButton` and so on.
If some of those terms sound alien to you, read on...
BUT FIRST, if you like this library, the concept, and its simplicity, please give it a star ⭐️ on the GitHub repo to let me know. 😀
We're not gonna discuss Color Theory here, but let's talk a bit about what a proper color system comprises.
Creating your color system begins with building your color palettes. Each palette consists of a group of related colors, generated from one base color.
You decide what sort of relationship should be between colors in the palette. The most common type is the tonal palette (also called monochromatic), which is made up of various "tones" of the same general hue. For example, various shades of blue is a tonal palette.
Each color in a palette is accessed by a unique color key, which is a string or number that indicates its relationship with the base color. The color values are determined by a color mapping function, which returns a specific color value for a given color key.
By default, simpler-color generates tonal palettes, with specific tones generated by passing a numeric key between 0 and 100, which represents % lightness (0 = black, 100 = white). Any value in between generates a specific shade of the base color.
You can, of course, define your own color mapping function to override the default.
The color set is simply the collective term for all the color palettes you've built.
Typically a color set would have a primary palette. This represents the main "brand" color of your app. This is the most prominent hue across your UI.
Common additional palettes can be any of (but not limited to) these:
To ensure consistency of your color set, simpler-color enforces that you use the same set of color keys (and thus the same color mapping function) across all your palettes.
A color system consists of one or several color schemes. These days, it's quite common to implement both Light and Dark color schemes.
To create a color scheme, you first identify the various UI roles in your design system. Each role indicates a specific use or purpose of color as it applies to specific elements of the UI.
Some common examples of UI role:
The final step is to map each UI role to a specific color value from one of the palettes in your color set. Each such mapping gives us one color scheme. By using a consistent set of color roles, simpler-color helps ensure that your UI can easily and safely switch between color schemes.
function awesomeColor(baseColor, key) {
const colorValue = /** insert logic here **/
return colorValue
}
const uiColors = colorScheme(
baseColors,
colors => ({
primaryButton: colors.primary(40),
/** rest of the UI role mapping here **/
}),
{
colorMapping: awesomeColor
}
)
FAQs
Simpler Color - Create your own complete color system fast and easy!
The npm package simpler-color receives a total of 27,750 weekly downloads. As such, simpler-color popularity was classified as popular.
We found that simpler-color demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.