import { ITheme } from './ITheme';

export const Base16Snazzy: ITheme = {
  DisplayName: 'Base16 Snazzy',
  CodeStyles: {
    Keyword: {
      Color: 'b2643c',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '9aedfe',
    },
    Plaintext: {
      Color: 'e2e4e5',
    },
    Punctuation: {
      Color: 'e2e4e5',
    },
    String: {
      Color: 'b2643c',
    },
    Literal: {
      Color: 'b2643c',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ff6ac1',
    },
    Tag: {
      Color: 'ff5c57',
    },
    AttributeName: {
      Color: 'ff6ac1',
    },
    Decimal: {
      Color: 'ff9f43',
    },
    NoCode: {
      Color: 'ff5c57',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '43454f',
  },
  LineNumberStyle: {
    Color: 'e2e4e5',
    BackgroundColor: '43454f',
  },
};
