import { ITheme } from './ITheme';

export const ParaisoLight: ITheme = {
  DisplayName: 'Paraiso Light',
  CodeStyles: {
    Keyword: {
      Color: '815ba4',
    },
    Comment: {
      Color: '776e71',
    },
    Plaintext: {
      Color: '4f424c',
    },
    Punctuation: {
      Color: '4f424c',
    },
    String: {
      Color: '48b685',
    },
    Literal: {
      Color: '48b685',
    },
    Type: {
      Color: 'fec418',
    },
    Tag: {
      Color: '815ba4',
    },
    AttributeName: {
      Color: 'fec418',
    },
    Decimal: {
      Color: 'f99b15',
    },
    NoCode: {
      Color: 'f99b15',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'e7e9db',
  },
  LineNumberStyle: {
    Color: '4f424c',
    BackgroundColor: 'e7e9db',
  },
};
