import { ITheme } from './ITheme';

export const Base16Flat: ITheme = {
  DisplayName: 'Base16 Flat',
  CodeStyles: {
    Keyword: {
      Color: 'be643c',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '1abc9c',
    },
    Plaintext: {
      Color: 'e0e0e0',
    },
    Punctuation: {
      Color: 'e0e0e0',
    },
    String: {
      Color: 'be643c',
    },
    Literal: {
      Color: 'be643c',
      FontWeight: 'bold',
    },
    Type: {
      Color: '9b59b6',
    },
    Tag: {
      Color: 'e74c3c',
    },
    AttributeName: {
      Color: '9b59b6',
    },
    Decimal: {
      Color: 'e67e22',
    },
    NoCode: {
      Color: 'e74c3c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '7f8c8d',
  },
  LineNumberStyle: {
    Color: 'e0e0e0',
    BackgroundColor: '7f8c8d',
  },
};
