import { ITheme } from './ITheme';

export const Routeros: ITheme = {
  DisplayName: 'Routeros',
  CodeStyles: {
    Keyword: {
      FontWeight: 'bold',
      Color: '880000',
    },
    Comment: {
      Color: '880000',
    },
    Plaintext: {
      Color: '444',
    },
    Punctuation: {
      Color: '444',
    },
    String: {
      Color: '4d99bf',
    },
    Literal: {
      FontWeight: 'bold',
      Color: '4d99bf',
    },
    Type: {
      Color: '0c9a9a',
      FontWeight: 'bold',
    },
    Tag: {
      FontWeight: 'bold',
      Color: '880000',
    },
    AttributeName: {
      Color: 'bc6060',
    },
    Decimal: {
      Color: '880000',
    },
    NoCode: {
      Color: '880000',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'f0f0f0',
  },
  LineNumberStyle: {
    Color: '444',
    BackgroundColor: 'f0f0f0',
  },
};
