import { ITheme } from './ITheme';

export const IsblEditorDark: ITheme = {
  DisplayName: 'Isbl Editor Dark',
  CodeStyles: {
    Keyword: {
      Color: 'f0f0f0',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'f0f0f0',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'f0f0f0',
    },
    Punctuation: {
      Color: 'f0f0f0',
    },
    String: {
      Color: '4d99bf',
    },
    Literal: {
      Color: '4d99bf',
      FontWeight: 'bold',
    },
    Type: {
      Color: '81bce9',
      FontWeight: 'normal',
    },
    Tag: {
      Color: 'f0f0f0',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: 'e2c696',
      FontWeight: 'bold',
    },
    Decimal: {
      Color: 'f0f0f0',
    },
    NoCode: {
      Color: 'f0f0f0',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '404040',
  },
  LineNumberStyle: {
    Color: 'f0f0f0',
    BackgroundColor: '404040',
  },
};
