import { ITheme } from './ITheme';

export const TomorrowNightBright: ITheme = {
  DisplayName: 'Tomorrow Night Bright',
  CodeStyles: {
    Keyword: {
      Color: 'c397d8',
    },
    Comment: {
      Color: '969896',
    },
    Plaintext: {
      Color: 'eaeaea',
    },
    Punctuation: {
      Color: 'eaeaea',
    },
    String: {
      Color: 'b9ca4a',
    },
    Literal: {
      Color: 'b9ca4a',
    },
    Type: {
      Color: '7aa6da',
    },
    Tag: {
      Color: 'c397d8',
    },
    AttributeName: {
      Color: 'e7c547',
    },
    Decimal: {
      Color: 'e78c45',
    },
    NoCode: {
      Color: 'd54e53',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '000000',
  },
  LineNumberStyle: {
    Color: 'eaeaea',
    BackgroundColor: '000000',
  },
};
