Fixed colors for resource tags

This commit is contained in:
Piotr Janosz
2019-07-10 12:37:24 +02:00
committed by fabioberger
parent c7fbd6c64c
commit 338de4ffa1

View File

@@ -7,9 +7,9 @@ interface ITagProps {
}
export const Tag = styled.div<ITagProps>`
background-color: ${isInverted => (isInverted ? colors.brandDark : 'rgba(0, 56, 49, 0.1)')};
background-color: ${({ isInverted }) => (isInverted ? colors.brandDark : colors.backgroundLight)};
color: ${({ isInverted }) => (isInverted ? colors.white : colors.brandDark)};
border-radius: 4px;
color: ${isInverted => (isInverted ? colors.white : colors.brandDark)};
font-size: 0.666666667rem;
font-family: 'Formular Mono';
font-weight: 400;