import { ITheme } from './ITheme';

export const CSharpDark: ITheme = {
  /** Display name */
  DisplayName: 'C# Dark',
  /** Code styles */
  CodeStyles: {
    Keyword: {
      Color: '569cd6',
    },
    Comment: {
      Color: '56a64a',
    },
    Plaintext: {
      Color: 'dedede',
    },
    Punctuation: {
      Color: 'dedede',
    },
    String: {
      Color: 'dadada',
    },
    Literal: {
      Color: 'dadada',
    },
    Type: {
      Color: '4ec9b0',
    },
    Tag: {
      Color: 'd7bb7d',
    },
    AttributeName: {
      Color: '4ec9b0',
    },
    AttributeValue: {
      Color: '569cd6',
    },
    Decimal: {
      Color: 'b5cea8',
    },
    NoCode: {
      Color: '000',
      BackgroundColor: 'none',
    },
  },
  // Background color
  BackgroundStyle: {
    BackgroundColor: '1e1e1e',
  },
  // Line number background colors
  LineNumberStyle: {
    Color: 'e0e0e0',
  },
};
