import { ITheme } from './ITheme';

export const Base16RosPineDawn: ITheme = {
  DisplayName: 'Base16 Rosé Pine Dawn',
  CodeStyles: {
    Keyword: {
      Color: 'c5c3ce',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '286983',
    },
    Plaintext: {
      Color: '575279',
    },
    Punctuation: {
      Color: '575279',
    },
    String: {
      Color: 'c5c3ce',
    },
    Literal: {
      Color: 'c5c3ce',
      FontWeight: 'bold',
    },
    Type: {
      Color: '907aa9',
    },
    Tag: {
      Color: '1f1d2e',
    },
    AttributeName: {
      Color: '907aa9',
    },
    Decimal: {
      Color: 'b4637a',
    },
    NoCode: {
      Color: '1f1d2e',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'f2e9de',
  },
  LineNumberStyle: {
    Color: '575279',
    BackgroundColor: 'f2e9de',
  },
};
