import { ITheme } from './ITheme';

export const GitHubDark: ITheme = {
  DisplayName: 'GitHub Dark',
  CodeStyles: {
    Keyword: {
      Color: 'ff7b72',
    },
    Comment: {
      Color: '7ee787',
    },
    Plaintext: {
      Color: 'c9d1d9',
    },
    Punctuation: {
      Color: '79c0ff',
    },
    String: {
      Color: 'aff5b4',
      BackgroundColor: '033a16',
    },
    Literal: {
      Color: 'f2cc60',
    },
    Type: {
      Color: '1f6feb',
      FontWeight: 'bold',
    },
    Tag: {
      Color: '7ee787',
    },
    AttributeName: {
      Color: '79c0ff',
    },
    Decimal: {
      Color: '79c0ff',
    },
    NoCode: {
      Color: 'ffdcd7',
      BackgroundColor: '67060c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '0d1117',
  },
  LineNumberStyle: {
    Color: 'c9d1d9',
    BackgroundColor: '0d1117',
  },
};
