import { ITheme } from './ITheme';

export const Base16BrushTrees: ITheme = {
  DisplayName: 'Base16 Brush Trees',
  CodeStyles: {
    Keyword: {
      Color: 'b39f9f',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '86b3b3',
    },
    Plaintext: {
      Color: '6d828e',
    },
    Punctuation: {
      Color: '6d828e',
    },
    String: {
      Color: 'b39f9f',
    },
    Literal: {
      Color: 'b39f9f',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b386b2',
    },
    Tag: {
      Color: 'b38686',
    },
    AttributeName: {
      Color: 'b386b2',
    },
    Decimal: {
      Color: 'd8bba2',
    },
    NoCode: {
      Color: 'b38686',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'b0c5c8',
  },
  LineNumberStyle: {
    Color: '6d828e',
    BackgroundColor: 'b0c5c8',
  },
};
