import { ITheme } from './ITheme';

export const Base16Woodland: ITheme = {
  DisplayName: 'Base16 Woodland',
  CodeStyles: {
    Keyword: {
      Color: 'b49368',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '6eb958',
    },
    Plaintext: {
      Color: 'cabcb1',
    },
    Punctuation: {
      Color: 'cabcb1',
    },
    String: {
      Color: 'b49368',
    },
    Literal: {
      Color: 'b49368',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'bb90e2',
    },
    Tag: {
      Color: 'd35c5c',
    },
    AttributeName: {
      Color: 'bb90e2',
    },
    Decimal: {
      Color: 'ca7f32',
    },
    NoCode: {
      Color: 'd35c5c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '48413a',
  },
  LineNumberStyle: {
    Color: 'cabcb1',
    BackgroundColor: '48413a',
  },
};
