summaryrefslogtreecommitdiff
path: root/util/getThemeColor.ts
blob: 1175a5242b02cc90ef41ad1f51eadd40dcc5d263 (about) (plain)
1
2
3
export const getThemeColor = (name: string, theme: any) => {
  return name.split('.').reduce((o, i) => o[i], theme.colors)
}