tenka
TypeScript icon, indicating that this package has built-in type declarations

0.1.52 • Public • Published

Tenka

The foundation for your system

Installation

npm install tenka
// or
yarn add tenka

Tokens

// Text Primary
--tenka-text-primary: #222222;
--tenka-text-primary-inverse: #ffffff;
--tenka-text-primary-hover: #000000;
--tenka-text-primary-disabled: #a6a6a6;

// Text Secondary
--tenka-text-secondary: #6a6a6a;
--tenka-text-secondary-disabled: #dddddd;

// Background Primary
--tenka-bg-primary: #ffffff;
--tenka-bg-primary-inverse: #000000;
--tenka-bg-primary-inverse-hover: #222222;
--tenka-bg-primary-inverse-pressed: #4b4b4b;
--tenka-bg-primary-inverse-disabled: #f3f3f3;

// Background Secondary
--tenka-bg-secondary: #f3f3f3;
--tenka-bg-secondary-inverse: #000000;
--tenka-bg-secondary-inverse-hover: #dddddd;
--tenka-bg-secondary-inverse-pressed: #c6c6c6;
--tenka-bg-secondary-inverse-disabled: #f3f3f3;

// Border
--tenka-field-border-primary: #e0e0e0;
--tenka-field-border-active: #272727;

// Error
--tenka-text-error: #d40029;
--tenka-text-error-hover: #b80024;
--tenka-text-error-inverse: #fff8f6;
--tenka-text-error-inverse-hover: #ffffff;
--tenka-text-error-secondary: #b80024;
--tenka-border-error: #d40029;
--tenka-bg-error: #fff8f6;
--tenka-bg-error-inverse: #d40029;
--tenka-bg-error-inverse-hover: #b80024;
--tenka-bg-error-inverse-pressed: #94001d;
--tenka-bg-error-secondary: #ffdfd9;
--tenka-icon-error: #d40029;
--tenka-icon-error-hover: #b80024;

// Success
--tenka-text-success: #008384;
--tenka-text-success-hover: #006266;
--tenka-text-success-inverse: #f5ffff;
--tenka-text-success-inverse-hover: #ffffff;
--tenka-text-success-secondary: #006266;
--tenka-border-success: #008384;
--tenka-bg-success: #f5ffff;
--tenka-bg-success-inverse: #008384;
--tenka-bg-success-inverse-hover: #008384;
--tenka-bg-success-inverse-pressed: #008384;
--tenka-bg-success-secondary: #dbfeff;
--tenka-icon-success: #60b6b5;
--tenka-icon-success-hover: #008384;

// Warning
--tenka-text-warning: #b86200;
--tenka-text-warning-hover: #944f00;
--tenka-text-warning-inverse: #fffbf6;
--tenka-text-warning-inverse-hover: #ffffff;
--tenka-text-warning-secondary: #944f00;
--tenka-border-warning: #b86200;
--tenka-bg-warning: #fffbf6;
--tenka-bg-warning-inverse: #e07912;
--tenka-bg-warning-inverse-hover: #e07912;
--tenka-bg-warning-inverse-pressed: #e07912;
--tenka-bg-warning-secondary: #ffedd9;
--tenka-icon-warning: #e07912;
--tenka-icon-warning-hover: #b86200;

// Info
--tenka-text-info: #460479;
--tenka-text-info-hover: #390363;
--tenka-text-info-inverse: #fbf5ff;
--tenka-text-info-inverse-hover: #ffffff;
--tenka-text-info-secondary: #390363;
--tenka-border-info: #460479;
--tenka-bg-info: #fbf5ff;
--tenka-bg-info-inverse: #460479;
--tenka-bg-info-inverse-hover: #460479;
--tenka-bg-info-inverse-pressed: #460479;
--tenka-bg-info-secondary: #efdcfe;
--tenka-icon-info: #5e05a3;
--tenka-icon-info-hover: #460479;

// Color Pallete
--tenka-pallete-dark-100: #000000;
--tenka-pallete-dark-90: #000100;
--tenka-pallete-dark-80: #222222;
--tenka-pallete-dark-70: #484848;
--tenka-pallete-dark-60: #767676;
--tenka-pallete-dark-50: #8f8f8f;
--tenka-pallete-dark-40: #cccccc;
--tenka-pallete-dark-30: #e0e0e0;
--tenka-pallete-dark-20: #ebebeb;
--tenka-pallete-dark-10: #f5f5f5;
--tenka-pallete-dark-05: #f8f8f8;

Border Radius

--tenka-radius-none: 0px;
--tenka-radius-xs: 4px; // small components, e.g. badges, tags
--tenka-radius-s: 8px; // for components nested inside other container, e.g. buttons, input field
--tenka-radius-m: 12px; // most common used, medium sized components e.g. cards, banners
--tenka-radius-l: 16px; // large container components, e.g. dialog, sheet

// Semantic Token
--tenka-radius-rounded: 9999999px;
--tenka-radius-full: 9999999px;
--tenka-radius-field: 8px;
--tenka-radius-card: 12px;

Box Shadow

--tenka-shadow-shallow-above: 0px -4px 16px 0px rgba(0, 0, 0, 0.12);
--tenka-shadow-shallow-below: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
--tenka-shadow-medium-above: 0px -6px 20px 0px rgba(0, 0, 0, 0.2);
--tenka-shadow-medium-below: 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
--tenka-shadow-deep-above: 0px -16px 48px 0px rgba(0, 0, 0, 0.22);
--tenka-shadow-deep-below: 0px 16px 48px 0px rgba(0, 0, 0, 0.22);
--tenka-shadow-card: 0px 4px 4px rgba(0, 0, 0, 0.25);
--tenka-shadow-drop-shadow: 0px 1px 10px #bfbfbf;

Components

Text

// usage
import { Text } from "tenka"

variant

  // ['primary', 'secondary', 'info', 'brand', 'accent', 'positive', 'success',  'critical', 'error', 'caution', 'warning']
  // use the values directly as boolean prop, or as a 'tone=[value]' prop
  // default to 'primary'

  <Text tone="critical">Text with critical tone</Text>
  <Text info>Text with info tone</Text>
  <Text secondary>Text with secondary tone</Text> // use for icons

Tone

  // ['primary', 'secondary', 'info', 'brand', 'accent', 'positive', 'success',  'critical', 'error', 'caution', 'warning']
  // use the values directly as boolean prop, or as a 'tone=[value]' prop
  // default to 'primary'

  <Text tone="critical">Text with critical tone</Text>
  <Text info>Text with info tone</Text>
  <Text secondary>Text with secondary tone</Text> // use for icons

Button

// usage
import { Button } from "tenka"

Variants

  // ['primary', 'secondary', 'tertiary', 'critical']
  // use the values directly as props, or as a 'variant=[value]' prop
  // default to 'secondary'

  <Button primary>Primary button</Button>
  <Button>Secondary button (default)</Button>
  <Button tertiary>Primary button</Button>
  <Button critical>Primary button</Button>

Shapes

  // ['rect', 'pill', 'square', 'circle']
  // use the values directly as props, or as a 'shape=[value]' prop
  // default to 'rect'

  <Button>Rect button (default)</Button>
  <Button pill>Pill button (default)</Button>
  <Button square>Square button</Button> // use for icons
  <Button circle>Circle button</Button> // use for icons

Sizes

  // ['xsmall', 'small', 'medium', 'large']
  // use the values directly as props, or as a 'size=[value]' prop
  // default to 'medium'

  <Button xsmall>Extra small button</Button>
  <Button small>Small button</Button>
  <Button>Medium button (default)</Button> // use for icons
  <Button large>Large button</Button> // use for icons

States

  // 'isDisabled', 'isLoading', 'isActive' (only for secondary button)
  // use the values directly as props

  <Button isLoading>Button with loading indicator</Button>
  <Button isDisabled>Disabled button</Button> // will disable tooltip too
  <Button isActive>Button with active state</Button> // e.g. used for active filter
  <Button isLoading isDisabled>Multiple states</Button>

Width

  // ['hug', 'full']
  // default to 'hug'

  <Button width="hug">Hug button</Button> // fit to content
  <Button width="full">Full button</Button> // full to the width of the parent wrapper

  // can be used as responsive array props ['phone', 'tablet', 'desktop'] or objec
  <Button width={['hug', 'full', 'hug']}>Hug button</Button> // with responsive array props
  <Button width={{ phone: 'hug', tablet: 'full', desktop: 'hug'}}>Hug button</Button> // with responsive object props

Tooltip

// currently experimental
// 'string'
// used to show label on hover and focus with keyboard
// recommended to only use it for button with only icons (no label)

<Button tooltip="some label goes here">Button with tooltip</Button>

Icon

// currently experimental
// when you want to have an icon as children of the button
// the icon has a wrapper that has absolute position and centered to the button

<Button icon={<SomeIcon />} tooltip="some icon label" />

Leading Icon

// currently experimental
// when you want to have an icon before the label of the button

<Button leadingIcon={<SomeIcon />}>Button with leading icon</Button>

Trailing Icon

// currently experimental
// when you want to have an icon after the label of the button

<Button trailingIcon={<SomeIcon />}>Button with trailing icon</Button>

Acknowledgements

  • reach.ui
  • SEEK OSS Styleguide
  • Stitches

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i tenka

Weekly Downloads

118

Version

0.1.52

License

MIT

Unpacked Size

10.3 MB

Total Files

166

Last publish

Collaborators

  • herlambang