Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Commit

Permalink
docs: add note about mismatched color values
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-baer committed Jun 23, 2020
1 parent 63b1312 commit 32bb87c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/themes/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ export const type = 'light';
const white = '#FFFFFF';
const black = '#0F131A';

// NOTE: The neutral color names & values don't match up with what's in Figma.
// Fixing this would be a big breaking change, so we're leaving it as is.
const neutrals = {
n100: '#FAFBFC',
n200: '#EEF0F2',
n300: '#D8DDE1',
n500: '#9DA7B1',
n700: '#5C656F',
n800: '#323E49',
n500: '#9DA7B1', // n400 in Figma
n700: '#5C656F', // n500 in Figma
n800: '#323E49', // n700 in Figma
n900: '#212933',
};

Expand Down

0 comments on commit 32bb87c

Please sign in to comment.