import { ITheme } from './ITheme';

export const StackOverflowLight: ITheme = {
  DisplayName: 'StackOverflow Light',
  CodeStyles: {
    Keyword: {
      Color: 'b75501',
    },
    Comment: {
      Color: 'b75501',
    },
    Plaintext: {
      Color: '2f3337',
    },
    Punctuation: {
      Color: '2f3337',
    },
    String: {
      Color: '2f6f44',
    },
    Literal: {
      Color: '54790d',
    },
    Type: {
      Color: 'b75501',
    },
    Tag: {
      Color: 'b75501',
    },
    AttributeName: {
      Color: '54790d',
    },
    Decimal: {
      Color: 'b75501',
    },
    NoCode: {
      Color: 'c02d2e',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'f6f6f6',
  },
  LineNumberStyle: {
    Color: '2f3337',
    BackgroundColor: 'f6f6f6',
  },
};
