Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@invisionag/iris-colors

Package Overview
Dependencies
Maintainers
22
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@invisionag/iris-colors

```js import colors from '@invisionag/iris-colors'; ```

  • 5.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
41
increased by173.33%
Maintainers
22
Weekly downloads
 
Created
Source
import colors from '@invisionag/iris-colors';

The injixo color world is split into 3 categories:

Brand

Only used for branding related tasks. It's not allowed to use those color for any other cause.

import { brand } from '@invisionag/iris-colors';

System

Are used for all stylings within the injixo applications such as background-colors, border, typography, etc...

import { system } from '@invisionag/iris-colors';

Data Visualization

Only used for data visualization such as graphs, tables and other data heavy visualizations.

import { visualization } from '@invisionag/iris-colors';

Usage:

export const StyledItem = styled.div`
  background-color: ${colors.system.ui100};
`;

Brand

export const StyledItem = styled.div`
  background-color: ${brand.injixo100};
`;

System

export const StyledItem = styled.div`
  background-color: ${system.ui100};
`;

Data Visualization

export const StyledItem = styled.div`
  background-color: ${visualization.ink50};
`;

FAQs

Package last updated on 28 Jun 2021

Did you know?

Socket

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.

Install

Related posts

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