Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 866 Bytes

Colors.mdx

File metadata and controls

43 lines (27 loc) · 866 Bytes

import { Meta } from '@storybook/addon-docs';

import { Header } from '../shared' import Colors from './Colors' import EvaluationForm from '../../stories/shared/EvaluationForm'

Catho's color palette consists of bland, support and neutral accents. All colors are imported in the default theme.

Importing and Usage

Importing

import Colors from '@catho/quantum/Colors';

Usage

Colors is an object that brings forward the Catho's color palette and has multiple uses.

console.log(Colors.primary['500']);
/*returns: #0CC0EA;*/	

console.log(Colors.secondary['500'])
/*returns: #E91E63*/

Examples