easy-code-formatter-styles
Version: 
A package which contains the styling details for easy code formatter.
48 lines (47 loc) • 981 B
JavaScript
export const Base16Windows95Light = {
    DisplayName: 'Base16 Windows 95 Light',
    CodeStyles: {
        Keyword: {
            Color: '54fc54',
            FontWeight: 'bold',
        },
        Comment: {
            Color: '00a8a8',
        },
        Plaintext: {
            Color: '545454',
        },
        Punctuation: {
            Color: '545454',
        },
        String: {
            Color: '54fc54',
        },
        Literal: {
            Color: '54fc54',
            FontWeight: 'bold',
        },
        Type: {
            Color: 'a800a8',
        },
        Tag: {
            Color: 'a80000',
        },
        AttributeName: {
            Color: 'a800a8',
        },
        Decimal: {
            Color: 'fcfc54',
        },
        NoCode: {
            Color: 'a80000',
        },
    },
    BackgroundStyle: {
        BackgroundColor: 'c4c4c4',
    },
    LineNumberStyle: {
        Color: '545454',
        BackgroundColor: 'c4c4c4',
    },
};