import { ITheme } from './ITheme';

export const Base16SetiUI: ITheme = {
  DisplayName: 'Base16 Seti UI',
  CodeStyles: {
    Keyword: {
      Color: '8a553f',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '55dbbe',
    },
    Plaintext: {
      Color: 'd6d6d6',
    },
    Punctuation: {
      Color: 'd6d6d6',
    },
    String: {
      Color: '8a553f',
    },
    Literal: {
      Color: '8a553f',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'a074c4',
    },
    Tag: {
      Color: 'cd3f45',
    },
    AttributeName: {
      Color: 'a074c4',
    },
    Decimal: {
      Color: 'db7b55',
    },
    NoCode: {
      Color: 'cd3f45',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '3b758c',
  },
  LineNumberStyle: {
    Color: 'd6d6d6',
    BackgroundColor: '3b758c',
  },
};
