import { ITheme } from './ITheme';

export const Arta: ITheme = {
  DisplayName: 'Arta',
  CodeStyles: {
    Keyword: {
      Color: 'bb1166',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '444',
    },
    Plaintext: {
      Color: 'aaa',
    },
    Punctuation: {
      Color: 'aaa',
    },
    String: {
      Color: '00cc66',
    },
    Literal: {
      Color: 'bb1166',
    },
    Type: {
      Color: 'bb1166',
      FontWeight: 'bold',
    },
    Tag: {
      Color: '6644aa',
    },
    AttributeName: {
      Color: '32aaee',
    },
    Decimal: {
      Color: '00cc66',
    },
    NoCode: {
      Color: 'bb1166',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '222',
  },
  LineNumberStyle: {
    Color: 'aaa',
    BackgroundColor: '222',
  },
};
