import { ITheme } from './ITheme';

export const AtomOneDark: ITheme = {
  DisplayName: 'Atom One Dark',
  CodeStyles: {
    Keyword: {
      Color: 'c678dd',
    },
    Comment: {
      Color: '5c6370',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'abb2bf',
    },
    Punctuation: {
      Color: 'abb2bf',
    },
    String: {
      Color: '61aeee',
    },
    Literal: {
      Color: '61aeee',
    },
    Type: {
      Color: 'e6c07b',
    },
    Tag: {
      Color: 'e06c75',
    },
    AttributeName: {
      Color: 'd19a66',
    },
    Decimal: {
      Color: 'd19a66',
    },
    NoCode: {
      Color: 'e06c75',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '282c34',
  },
  LineNumberStyle: {
    Color: 'abb2bf',
    BackgroundColor: '282c34',
  },
};
