Skip to content

equinor/design-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Equinor Design System

The EDS is the official design system of Equinor and is to be used when designing, prototyping and developing internal digital interfaces. The EDS provides structure, guidance and tools that enable designers and developers to efficiently build consistent, inclusive and flexible solutions.

While the design system itself lives in Figma, this repository contains implementations of the EDS in code.

Quick links

Repository structure

This is a monorepo containing both published packages and applications:

apps/                    # Applications (not published to npm)
  design-system-docs/    # Documentation website (Docusaurus)
  eds-demo/              # Component demo application (Next.js)
  eds-color-palette-generator/  # Color palette generation tool
packages/                # Published npm packages
  eds-core-react/        # React component library
  eds-tokens/            # Design tokens
  eds-icons/             # Icon library
  eds-lab-react/         # Experimental components
  eds-data-grid-react/   # Data grid component
  eds-utils/             # Utility functions
  eds-tailwind/          # Tailwind CSS plugin

Table of contents

Status

Package  Status Version
Core React Checks Version
Tokens Checks Version
Icons Checks Version
Lab React Checks Version
Data Grid React Checks Version
Utils Checks Version

Applications

These applications are part of the monorepo but are not published to npm.

Application Purpose Start Command
Documentation EDS documentation website built with Docusaurus pnpm docu:start
Demo Component showcase and examples using Next.js pnpm demo:dev
Color Palette Generator Tool for generating accessible color palettes pnpm palette:dev

Prerequisites

Before you begin, ensure you have the following installed:

  • Node.js — Version 22.12.0 or compatible
  • pnpm — Version 10.15.0 or higher (install globally with npm install -g [email protected])
  • Git — For version control

How to run

Would you like to contribute? Awesome! 👏

We use a fork and pull-request workflow, so start with forking the repository on Github, then either open it in Gitpod or clone your fork locally.
Check out Github docs on how to work with forks

Use Gitpod and develop in the browser

Just prepend the url to your fork with https://gitpod.io/#, so for example https://gitpod.io/#https://github.com/yourusername/design-system. Dependencies will be installed automatically, then tests and linting will run, and finally the storybook will open in it’s own preview window ready to start coding.

Clone and develop locally

git clone [email protected]:your-github-username/design-system

We use pnpm as the package manager, because it's fast, space efficient, and has some very useful commands when working with a monorepo.

npm install -g [email protected]

Install dependencies and build all packages using our init script:

cd design-system
pnpm run init

Common development commands

# Build all packages
pnpm build

# Run all tests
pnpm test

# Lint entire codebase
pnpm lint:all

# Start Storybook for component development
pnpm storybook

# Start documentation site
pnpm docu:start

# Start demo application
pnpm demo:dev

# Start color palette generator
pnpm palette:dev

Work with the React components

We use Storybook as a development environment.

Start Storybook on localhost:9000 by running the following command from root:

pnpm run storybook

Run tests once or by watching:

pnpm run test:core-react 
pnpm run test:watch:core-react 

Figma

The EDS in Figma is the single source of truth. You can apply for access to Figma in AccessIT. The EDS Core team has workshops and demos on using Figma from time to time, these are announced in Slack and Teams (see «Get in touch»)

Storefront

The storefront is the official documentation for the EDS.

React

This is the main implementation of the EDS, and will eventually contain accessible React components of each and every EDS component in Figma.

Installation

npm install @equinor/eds-core-react styled-components

If you use Typescript, make sure you have typescript >= 3.8 as a devDependency:

npm install typescript --save-dev

Usage

import { Button } from '@equinor/eds-core-react'

<Button variant="outlined" color="secondary">
  Click me!
</Button>

See our storybook for more examples.

Icons

Built on a copy of the Outlined Material Design icons, the icons have been customised and renamed for Equinor’s use and supplemented with our own icons for Equinor specific domains.

All the icons are available in our Storybook, and can also be installed from NPM.

The following example uses the <Icon> component from @equinor/eds-core-react – but the icons package can also be used without React.

Installation

npm install @equinor/eds-icons @equinor/eds-core-react

If you use Typescript, make sure you have typescript >= 3.8 as a devDependency:

npm install typescript --save-dev

Usage

import { Icon } from '@equinor/eds-core-react'
import { info_circle } from '@equinor/eds-icons'

<Icon data={info_circle} size={24} />

Tokens

Design tokens are design decisions from Figma extracted into code, and form the basis for the EDS Core React library. For projects that don’t use React, the tokens are available as an independent NPM package that can be used to build your own implementation of the EDS in your technology of choice. The following example uses vanilla javascript.

Installation

npm install @equinor/eds-tokens

If you use Typescript, make sure you have typescript >= 3.8 as a devDependency:

npm install typescript --save-dev

Usage

import { tokens } from '@equinor/eds-tokens'

const {
  typography: {
    heading: { h1 },
  },
} = tokens

const header = document.createElement('h1')

Object.keys(h1).forEach((token) => {
  header.style[token] = h1[token]
})

header.textContent = 'Some header'

document.body.appendChild(header)

Lab React

Experimental React components that are still in development. These components may undergo breaking changes and are not recommended for production use until they are moved to the Core React library.

Installation

npm install @equinor/eds-lab-react styled-components

If you use TypeScript, make sure you have typescript >= 3.8 as a devDependency:

npm install typescript --save-dev

Usage

import { Stepper } from '@equinor/eds-lab-react'

<Stepper activeStepIndex={0}>
  <Stepper.Step>Step 1</Stepper.Step>
  <Stepper.Step>Step 2</Stepper.Step>
</Stepper>

See our Storybook for more examples and available components.

Data Grid

A powerful data grid component built with AG Grid, providing sorting, filtering, and other advanced table features.

Installation

npm install @equinor/eds-data-grid-react ag-grid-react

If you use TypeScript, make sure you have typescript >= 3.8 as a devDependency:

npm install typescript --save-dev

Usage

import { EdsProvider, DataGrid } from '@equinor/eds-data-grid-react'

const columnDefs = [
  { field: 'name' },
  { field: 'age' },
]

const rowData = [
  { name: 'Alice', age: 30 },
  { name: 'Bob', age: 25 },
]

<EdsProvider>
  <DataGrid columnDefs={columnDefs} rowData={rowData} />
</EdsProvider>

See the package documentation for more details.

Fonts

The Equinor typeface is available from the EDS CDN.

Usage

All the fonts

<link rel="stylesheet" href="https://cdn.eds.equinor.com/font/equinor-font.css" />

Individual fonts

<link rel="stylesheet" href="https://cdn.eds.equinor.com/font/equinor-regular.css" />

We currently don’t support the font-display property, so if that’s something you need then please let us know.

Logo

When it comes to the Equinor logo, we have two versions – primary and horizontal – and you pick the color with a fragment identifier in the url. The following example uses the primary logo in red, other color options are white and black – with black being the default if you omit the fragment identifier.

Usage

<img src="https://cdn.eds.equinor.com/logo/equinor-logo-primary.svg#red" alt="Equinor" />

Browser support

We support the most up to date version of evergreen browsers (browsers that auto-update), which means Chrome, Safari, Firefox and (Chromium) Edge.

Troubleshooting

Port already in use

If you get an error that port 9000 (Storybook), 3000 (demo/docs), or other ports are already in use, you can either:

  • Stop the process using that port
  • Change the port in the respective configuration file

Build failures

If you encounter build failures:

  1. Ensure all dependencies are up to date: pnpm install
  2. Clean and rebuild: pnpm clean && pnpm build
  3. Make sure you're using the correct Node.js version (22.12.0)

Module not found errors

If you see "Module not found" errors:

  • Run pnpm run init to install all dependencies and build packages
  • Ensure workspace dependencies are built before consuming packages

License

The Equinor Design System is licensed under the MIT License.

Contributions

Contributions are welcome and encouraged! Here's how to contribute:

  1. Report issues — File bug reports and feature requests in GitHub issues
  2. Fork and develop — Follow the fork and pull-request workflow outlined above
  3. Submit a pull request — All changes must be reviewed and approved by the EDS team before merging
  4. Follow conventions — Use conventional commits for your commit messages

If you want to help implement components or have ideas for what we should include in the EDS, please get in touch with the team.

Get in touch

We use #eds-design-system on Slack as our main communication channel – but we have an internal team on Teams as well that you can join if you want to get in touch with us. If you’re outside Equinor and want to get in touch with the team, then please create an issue.