Developer-DAO / DAO-job-board

A job board connecting DAOs with talent.
https://devdao-job-board.vercel.app/
82 stars 34 forks source link

Add new colors to Chakra theme and document them in Storybook #173

Closed with-heart closed 2 years ago

with-heart commented 2 years ago

This issue is for adding the new colors to our Chakra theme and creating a documentation page for them in Storybook.

You can see the new colors and their hex codes in our new design system Figma, but here's a pic of them:

image

There are a few steps required to add these colors and document them:

Here's an example of what adding a new color to the theme would look like:

import {extendTheme} from '@chakra-ui/react'

export const theme = extendTheme({
  colors: {
    newColor: {
      100: '#fff',
      200: '#ddd',
      300: '#bbb',
      400: '#999',
      500: '#777',
      600: '#555',
      700: '#333',
      800: '#111',
      900: '#000',
    }
  }
})
4gnle commented 2 years ago

already worked on at #166 only need to finish the Storybook setup

4gnle commented 2 years ago

Close with #165