Skip to content

Commit

Permalink
fix(docz-theme-default): add default value for rgba of polished
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Dec 19, 2018
1 parent 6a2b96a commit dcb74af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import rgba from 'polished/lib/color/rgba'

import { get } from '@utils/theme'

const sidebarBorder = get('colors.sidebarBorder')
const sidebarText = get('colors.sidebarText')
const sidebarBorder = get('colors.sidebarBorder', '#CED4DE')
const sidebarText = get('colors.sidebarText', '#13161F')

const Wrapper = styled('div')`
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { ButtonSwap } from '../ButtonSwap'
import { ButtonLink } from '../Button'
import { get } from '@utils/theme'

const textColor = get('colors.text')
const textColor = get('colors.text', '#2D3747')

export const ActionButton = styled(ButtonSwap as any)<any>`
padding: 4px;
background: transparent;
Expand Down

0 comments on commit dcb74af

Please sign in to comment.