import { ITheme } from './ITheme';

export const GitHubDarkDimmed: ITheme = {
  DisplayName: 'GitHub Dark Dimmed',
  CodeStyles: {
    Keyword: {
      Color: 'f47067',
    },
    Comment: {
      Color: '8ddb8c',
    },
    Plaintext: {
      Color: 'adbac7',
    },
    Punctuation: {
      Color: '6cb6ff',
    },
    String: {
      Color: 'b4f1b4',
      BackgroundColor: '1b4721',
    },
    Literal: {
      Color: 'eac55f',
    },
    Type: {
      Color: '316dca',
      FontWeight: 'bold',
    },
    Tag: {
      Color: '8ddb8c',
    },
    AttributeName: {
      Color: '6cb6ff',
    },
    Decimal: {
      Color: '6cb6ff',
    },
    NoCode: {
      Color: 'ffd8d3',
      BackgroundColor: '78191b',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '22272e',
  },
  LineNumberStyle: {
    Color: 'adbac7',
    BackgroundColor: '22272e',
  },
};
