import { ITheme } from './ITheme';

export const Base16SummerfruitLight: ITheme = {
  DisplayName: 'Base16 Summerfruit Light',
  CodeStyles: {
    Keyword: {
      Color: 'cc6633',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '1faaaa',
    },
    Plaintext: {
      Color: '101010',
    },
    Punctuation: {
      Color: '101010',
    },
    String: {
      Color: 'cc6633',
    },
    Literal: {
      Color: 'cc6633',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ad00a1',
    },
    Tag: {
      Color: 'ff0086',
    },
    AttributeName: {
      Color: 'ad00a1',
    },
    Decimal: {
      Color: 'fd8900',
    },
    NoCode: {
      Color: 'ff0086',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'd0d0d0',
  },
  LineNumberStyle: {
    Color: '101010',
    BackgroundColor: 'd0d0d0',
  },
};
