import { ITheme } from './ITheme';

export const Base16Nord: ITheme = {
  DisplayName: 'Base16 Nord',
  CodeStyles: {
    Keyword: {
      Color: '5e81ac',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '88c0d0',
    },
    Plaintext: {
      Color: 'e5e9f0',
    },
    Punctuation: {
      Color: 'e5e9f0',
    },
    String: {
      Color: '5e81ac',
    },
    Literal: {
      Color: '5e81ac',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b48ead',
    },
    Tag: {
      Color: 'bf616a',
    },
    AttributeName: {
      Color: 'b48ead',
    },
    Decimal: {
      Color: 'd08770',
    },
    NoCode: {
      Color: 'bf616a',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '434c5e',
  },
  LineNumberStyle: {
    Color: 'e5e9f0',
    BackgroundColor: '434c5e',
  },
};
