import { ITheme } from './ITheme';

export const Base16Pico: ITheme = {
  DisplayName: 'Base16 Pico',
  CodeStyles: {
    Keyword: {
      Color: 'ffccaa',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '29adff',
    },
    Plaintext: {
      Color: '5f574f',
    },
    Punctuation: {
      Color: '5f574f',
    },
    String: {
      Color: 'ffccaa',
    },
    Literal: {
      Color: 'ffccaa',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ff77a8',
    },
    Tag: {
      Color: 'ff004d',
    },
    AttributeName: {
      Color: 'ff77a8',
    },
    Decimal: {
      Color: 'ffa300',
    },
    NoCode: {
      Color: 'ff004d',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '7e2553',
  },
  LineNumberStyle: {
    Color: '5f574f',
    BackgroundColor: '7e2553',
  },
};
