import { ITheme } from './ITheme';

export const Base16RosPine: ITheme = {
  DisplayName: 'Base16 Rosé Pine',
  CodeStyles: {
    Keyword: {
      Color: 'e5e5e5',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '31748f',
    },
    Plaintext: {
      Color: 'e0def4',
    },
    Punctuation: {
      Color: 'e0def4',
    },
    String: {
      Color: 'e5e5e5',
    },
    Literal: {
      Color: 'e5e5e5',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'c4a7e7',
    },
    Tag: {
      Color: 'e2e1e7',
    },
    AttributeName: {
      Color: 'c4a7e7',
    },
    Decimal: {
      Color: 'eb6f92',
    },
    NoCode: {
      Color: 'e2e1e7',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '26233a',
  },
  LineNumberStyle: {
    Color: 'e0def4',
    BackgroundColor: '26233a',
  },
};
