import { ITheme } from './ITheme';

export const Base16XCodeDusk: ITheme = {
  DisplayName: 'Base16 XCode Dusk',
  CodeStyles: {
    Keyword: {
      Color: 'c77c48',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '00a0be',
    },
    Plaintext: {
      Color: '939599',
    },
    Punctuation: {
      Color: '939599',
    },
    String: {
      Color: 'c77c48',
    },
    Literal: {
      Color: 'c77c48',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b21889',
    },
    Tag: {
      Color: 'b21889',
    },
    AttributeName: {
      Color: 'b21889',
    },
    Decimal: {
      Color: '786dc5',
    },
    NoCode: {
      Color: 'b21889',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '53555d',
  },
  LineNumberStyle: {
    Color: '939599',
    BackgroundColor: '53555d',
  },
};
