import { ITheme } from './ITheme';

export const Base16IALight: ITheme = {
  DisplayName: 'Base16 IA Light',
  CodeStyles: {
    Keyword: {
      Color: '8b6c37',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '2d6bb1',
    },
    Plaintext: {
      Color: '181818',
    },
    Punctuation: {
      Color: '181818',
    },
    String: {
      Color: '8b6c37',
    },
    Literal: {
      Color: '8b6c37',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'a94598',
    },
    Tag: {
      Color: '9c5a02',
    },
    AttributeName: {
      Color: 'a94598',
    },
    Decimal: {
      Color: 'c43e18',
    },
    NoCode: {
      Color: '9c5a02',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'bde5f2',
  },
  LineNumberStyle: {
    Color: '181818',
    BackgroundColor: 'bde5f2',
  },
};
