import { ITheme } from './ITheme';

export const Base16EdgeLight: ITheme = {
  DisplayName: 'Base16 Edge Light',
  CodeStyles: {
    Keyword: {
      Color: '509c93',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '509c93',
    },
    Plaintext: {
      Color: '5e646f',
    },
    Punctuation: {
      Color: '5e646f',
    },
    String: {
      Color: '509c93',
    },
    Literal: {
      Color: '509c93',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b870ce',
    },
    Tag: {
      Color: 'db7070',
    },
    AttributeName: {
      Color: 'b870ce',
    },
    Decimal: {
      Color: 'db7070',
    },
    NoCode: {
      Color: 'db7070',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'd69822',
  },
  LineNumberStyle: {
    Color: '5e646f',
    BackgroundColor: 'd69822',
  },
};
