import { ITheme } from './ITheme';

export const Base16RosPineMoon: ITheme = {
  DisplayName: 'Base16 Rosé Pine Moon',
  CodeStyles: {
    Keyword: {
      Color: 'b9b9bc',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '3e8fb0',
    },
    Plaintext: {
      Color: 'e0def4',
    },
    Punctuation: {
      Color: 'e0def4',
    },
    String: {
      Color: 'b9b9bc',
    },
    Literal: {
      Color: 'b9b9bc',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'c4a7e7',
    },
    Tag: {
      Color: 'ecebf0',
    },
    AttributeName: {
      Color: 'c4a7e7',
    },
    Decimal: {
      Color: 'eb6f92',
    },
    NoCode: {
      Color: 'ecebf0',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '393552',
  },
  LineNumberStyle: {
    Color: 'e0def4',
    BackgroundColor: '393552',
  },
};
