import { ITheme } from './ITheme';

export const Base16Summercamp: ITheme = {
  DisplayName: 'Base16 Summercamp',
  CodeStyles: {
    Keyword: {
      Color: 'f69be7',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '5aebbc',
    },
    Plaintext: {
      Color: '736e55',
    },
    Punctuation: {
      Color: '736e55',
    },
    String: {
      Color: 'f69be7',
    },
    Literal: {
      Color: 'f69be7',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ff8080',
    },
    Tag: {
      Color: 'e35142',
    },
    AttributeName: {
      Color: 'ff8080',
    },
    Decimal: {
      Color: 'fba11b',
    },
    NoCode: {
      Color: 'e35142',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '3a3527',
  },
  LineNumberStyle: {
    Color: '736e55',
    BackgroundColor: '3a3527',
  },
};
