How to use the open-color.black function in open-color

To help you get started, we’ve selected a few open-color examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github velopert / develoxy / develoxy-frontend / src / components / MyLoxy / PostBody / PostBody.js View on Github external
const StyledFolder = styled(IonFolder)`
    margin-right: 0.4rem;
    color: ${oc.gray[6]};
`

const Categories = styled.div`
    margin-top: 0.25rem;
`

const Category = styled.span`
    color: ${oc.gray[7]};
    font-size: 0.8rem;
    &:after {
        content: " / ";
        color: ${oc.black};
    }
    &:last-child:after {
        content: "";
    }
`


const Tags = styled.div`
    margin-top: 0.35rem;
`;

const NoCategory = styled.span`
    color: ${oc.gray[5]};
    font-size: 0.9rem;
`;