describe('getColor', () => {
  it('should return colors', () => {
    const colors: string[] = [];
    Object.keys(Colors).forEach(x => colors.push(getColor(theme)(x)));
    expect(isArrayUnique(colors)).toBeTruthy();