import { ITheme } from './ITheme';

export const Base16OneLight: ITheme = {
  DisplayName: 'Base16 One Light',
  CodeStyles: {
    Keyword: {
      Color: '986801',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '0184bc',
    },
    Plaintext: {
      Color: '383a42',
    },
    Punctuation: {
      Color: '383a42',
    },
    String: {
      Color: '986801',
    },
    Literal: {
      Color: '986801',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'a626a4',
    },
    Tag: {
      Color: 'ca1243',
    },
    AttributeName: {
      Color: 'a626a4',
    },
    Decimal: {
      Color: 'd75f00',
    },
    NoCode: {
      Color: 'ca1243',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'e5e5e6',
  },
  LineNumberStyle: {
    Color: '383a42',
    BackgroundColor: 'e5e5e6',
  },
};
