import { ITheme } from './ITheme';

export const DevibeansDark: ITheme = {
  DisplayName: 'Devibeans (dark)',
  CodeStyles: {
    Keyword: {
      Color: '64b5f6',
    },
    Comment: {
      Color: '339966',
    },
    Plaintext: {
      Color: 'a39e9b',
    },
    Punctuation: {
      Color: 'a39e9b',
    },
    String: {
      Color: '558b2f',
    },
    Literal: {
      Color: '558b2f',
    },
    Type: {
      Color: 'ffd75f',
    },
    Tag: {
      Color: '9966ff',
    },
    AttributeName: {
      Color: 'ffd75f',
    },
    Decimal: {
      Color: 'ef5350',
    },
    NoCode: {
      Color: '558b2f',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '000000',
  },
  LineNumberStyle: {
    Color: 'a39e9b',
    BackgroundColor: '000000',
  },
};
