import { ITheme } from './ITheme';

export const Base16Cupertino: ITheme = {
  DisplayName: 'Base16 Cupertino',
  CodeStyles: {
    Keyword: {
      Color: '826b28',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '318495',
    },
    Plaintext: {
      Color: '404040',
    },
    Punctuation: {
      Color: '404040',
    },
    String: {
      Color: '826b28',
    },
    Literal: {
      Color: '826b28',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'a90d91',
    },
    Tag: {
      Color: 'c41a15',
    },
    AttributeName: {
      Color: 'a90d91',
    },
    Decimal: {
      Color: 'eb8500',
    },
    NoCode: {
      Color: 'c41a15',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'c0c0c0',
  },
  LineNumberStyle: {
    Color: '404040',
    BackgroundColor: 'c0c0c0',
  },
};
