This package has been deprecated

Author message:

Package no longer supported. Please see @useblu/ocean-tokens

@useblu/tokens

2.0.1 • Public • Published

Ocean Tokens

Actions Status Sonarcloud Status GitHub License GitHub last commit Dependabot Prettier code style Semantic release Conventional Commits Conventional Commits

This project powered by Theo provides design tokens to the Ocean design system.

Design tokens are the visual design atoms of the design system — specifically, they are named entities that store visual design attributes. We use them in place of hard-coded values (such as hex values for color or pixel values for spacing) in order to maintain a scalable and consistent visual system for UI development – Salesforce UX

Installation

yarn add @useblu/ocean-icons-react

or

npm i @useblu/ocean-icons-react

Usage

Javascript

import styled from 'styled-components';
import {
  fontFamilyHighlight,
  fontSizeLg,
  fontWeightExtrabold,
  lineHeightMedium,
  colorInterfaceLightPure,
} from '@useblu/tokens/dist/web/tokens.module.js';

export const Heading1 = styled.h1`
  font-family: ${fontFamilyHighlight};
  font-size: ${fontSizeLg};
  font-weight: ${fontWeightExtrabold};
  line-height: ${lineHeightMedium};
  color: ${colorInterfaceLightPure};
`;

Sass

@import '~@useblu/tokens/dist/web/tokens.scss';

.h1 {
  font-family: $font-family-highlight;
  font-size: $font-size-lg;
  font-weight: $font-weight-extrabold;
  line-height: $line-height-medium;
  color: $color-interface-light-pure;
}

Contributing

Whether you're helping us fix bugs, improve the docs, or spread the word, we'd love to have you as part of this project! 💙 Read below to learn how you can take part of it.

Code of Conduct

We adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes.

Good First Issues

To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.

License

All packages are licensed under the terms of the GPL-3.0 License.

Package Sidebar

Install

npm i @useblu/tokens

Weekly Downloads

0

Version

2.0.1

License

GPL-3.0

Unpacked Size

1.13 MB

Total Files

33

Last publish

Collaborators

  • danimuller20
  • fabiorolin
  • juaopedrosilva
  • leon3
  • saulodasilvasantiago
  • ops_useblu