import { ITheme } from './ITheme';

export const Base16AtelierPlateauLight: ITheme = {
  DisplayName: 'Base16 Atelier Plateau Light',
  CodeStyles: {
    Keyword: {
      Color: 'bd5187',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '5485b6',
    },
    Plaintext: {
      Color: '585050',
    },
    Punctuation: {
      Color: '585050',
    },
    String: {
      Color: 'bd5187',
    },
    Literal: {
      Color: 'bd5187',
      FontWeight: 'bold',
    },
    Type: {
      Color: '8464c4',
    },
    Tag: {
      Color: 'ca4949',
    },
    AttributeName: {
      Color: '8464c4',
    },
    Decimal: {
      Color: 'b45a3c',
    },
    NoCode: {
      Color: 'ca4949',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '8a8585',
  },
  LineNumberStyle: {
    Color: '585050',
    BackgroundColor: '8a8585',
  },
};
