import { ITheme } from './ITheme';

export const TokyoNightLight: ITheme = {
  DisplayName: 'Tokyo Night Light',
  CodeStyles: {
    Keyword: {
      Color: '5a4a78',
    },
    Comment: {
      Color: '485e30',
    },
    Plaintext: {
      Color: '565a6e',
    },
    Punctuation: {
      Color: '343b58',
    },
    String: {
      Color: '34548a',
    },
    Literal: {
      Color: '485e30',
    },
    Type: {
      Color: '34548a',
    },
    Tag: {
      Color: '5a4a78',
    },
    AttributeName: {
      Color: '5a4a78',
    },
    Decimal: {
      Color: '965027',
    },
    NoCode: {
      Color: '0f4b6e',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'd5d6db',
  },
  LineNumberStyle: {
    Color: '565a6e',
    BackgroundColor: 'd5d6db',
  },
};
