easy-code-formatter-styles
Version: 
A package which contains the styling details for easy code formatter.
48 lines (47 loc) • 970 B
JavaScript
export const Base16Windows95 = {
    DisplayName: 'Base16 Windows 95',
    CodeStyles: {
        Keyword: {
            Color: '00a800',
            FontWeight: 'bold',
        },
        Comment: {
            Color: '54fcfc',
        },
        Plaintext: {
            Color: 'a8a8a8',
        },
        Punctuation: {
            Color: 'a8a8a8',
        },
        String: {
            Color: '00a800',
        },
        Literal: {
            Color: '00a800',
            FontWeight: 'bold',
        },
        Type: {
            Color: 'fc54fc',
        },
        Tag: {
            Color: 'fc5454',
        },
        AttributeName: {
            Color: 'fc54fc',
        },
        Decimal: {
            Color: 'a85400',
        },
        NoCode: {
            Color: 'fc5454',
        },
    },
    BackgroundStyle: {
        BackgroundColor: '383838',
    },
    LineNumberStyle: {
        Color: 'a8a8a8',
        BackgroundColor: '383838',
    },
};