import { ITheme } from './ITheme';

export const Base16OceanicNext: ITheme = {
  DisplayName: 'Base16 OceanicNext',
  CodeStyles: {
    Keyword: {
      Color: 'ab7967',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '5fb3b3',
    },
    Plaintext: {
      Color: 'c0c5ce',
    },
    Punctuation: {
      Color: 'c0c5ce',
    },
    String: {
      Color: 'ab7967',
    },
    Literal: {
      Color: 'ab7967',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'c594c5',
    },
    Tag: {
      Color: 'ec5f67',
    },
    AttributeName: {
      Color: 'c594c5',
    },
    Decimal: {
      Color: 'f99157',
    },
    NoCode: {
      Color: 'ec5f67',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '4f5b66',
  },
  LineNumberStyle: {
    Color: 'c0c5ce',
    BackgroundColor: '4f5b66',
  },
};
