import { ITheme } from './ITheme';

export const Pojoaque: ITheme = {
  DisplayName: 'Pojoaque',
  CodeStyles: {
    Keyword: {
      Color: '468966',
    },
    Comment: {
      Color: '586e75',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'dccf8f',
    },
    Punctuation: {
      Color: 'dccf8f',
    },
    String: {
      Color: 'cb4b16',
    },
    Literal: {
      Color: 'cb4b16',
    },
    Type: {
      Color: 'b58900',
    },
    Tag: {
      Color: 'b58900',
    },
    AttributeName: {
      Color: 'b89859',
    },
    Decimal: {
      Color: '468966',
    },
    NoCode: {
      Color: 'dc322f',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '181914',
  },
  LineNumberStyle: {
    Color: 'dccf8f',
    BackgroundColor: '181914',
  },
};
