easy-code-formatter-styles
Version: 
A package which contains the styling details for easy code formatter.
47 lines (46 loc) • 927 B
JavaScript
export const Dark = {
    DisplayName: 'Dark',
    CodeStyles: {
        Keyword: {
            Color: 'd88',
            FontWeight: 'bold',
        },
        Comment: {
            Color: '979797',
        },
        Plaintext: {
            Color: 'ddd',
        },
        Punctuation: {
            Color: 'ddd',
        },
        String: {
            Color: 'd88',
        },
        Literal: {
            Color: '979797',
            FontWeight: 'bold',
        },
        Type: {
            Color: 'd88',
            FontWeight: 'bold',
        },
        Tag: {
            Color: 'd88',
            FontWeight: 'bold',
        },
        AttributeName: {
            Color: 'd88',
        },
        NoCode: {
            Color: '979797',
        },
    },
    BackgroundStyle: {
        BackgroundColor: '303030',
    },
    LineNumberStyle: {
        Color: 'ddd',
        BackgroundColor: '303030',
    },
};