chore: improve colors

This commit is contained in:
Fabio Berger
2018-10-15 11:57:16 +01:00
parent eee0640b07
commit bf9af95654
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { MarkdownCodeBlock } from '@0xproject/react-shared';
import { colors, MarkdownCodeBlock } from '@0xproject/react-shared';
import * as React from 'react';
import * as ReactMarkdown from 'react-markdown';
@@ -13,7 +13,7 @@ const defaultProps = {
export const Comment: React.SFC<CommentProps> = (props: CommentProps) => {
return (
<div className={`${props.className} comment`}>
<div className={`${props.className} comment`} style={{ color: colors.greyTheme }}>
<ReactMarkdown source={props.comment} renderers={{ code: MarkdownCodeBlock }} />
</div>
);