import { ITheme } from './ITheme';

export const Base16Macintosh: ITheme = {
  DisplayName: 'Base16 Macintosh',
  CodeStyles: {
    Keyword: {
      Color: '90713a',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '02abea',
    },
    Plaintext: {
      Color: 'c0c0c0',
    },
    Punctuation: {
      Color: 'c0c0c0',
    },
    String: {
      Color: '90713a',
    },
    Literal: {
      Color: '90713a',
      FontWeight: 'bold',
    },
    Type: {
      Color: '4700a5',
    },
    Tag: {
      Color: 'dd0907',
    },
    AttributeName: {
      Color: '4700a5',
    },
    Decimal: {
      Color: 'ff6403',
    },
    NoCode: {
      Color: 'dd0907',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '404040',
  },
  LineNumberStyle: {
    Color: 'c0c0c0',
    BackgroundColor: '404040',
  },
};
