import { ITheme } from './ITheme';

export const Base16Darkmoss: ITheme = {
  DisplayName: 'Base16 Darkmoss',
  CodeStyles: {
    Keyword: {
      Color: 'd27b53',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '66d9ef',
    },
    Plaintext: {
      Color: 'c7c7a5',
    },
    Punctuation: {
      Color: 'c7c7a5',
    },
    String: {
      Color: 'd27b53',
    },
    Literal: {
      Color: 'd27b53',
      FontWeight: 'bold',
    },
    Type: {
      Color: '9bc0c8',
    },
    Tag: {
      Color: 'ff4658',
    },
    AttributeName: {
      Color: '9bc0c8',
    },
    Decimal: {
      Color: 'e6db74',
    },
    NoCode: {
      Color: 'ff4658',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '373c3d',
  },
  LineNumberStyle: {
    Color: 'c7c7a5',
    BackgroundColor: '373c3d',
  },
};
