diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..6c5c796 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,70 @@ +name: Django CI/CD + +on: + workflow_dispatch: + push: + branches: ["main", "main-test"] + pull_request: + branches: ["main"] + +concurrency: + group: deploy-${{ github.ref }} + cancel-in-progress: true + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.12"] + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: "pip" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run tests + run: | + python manage.py test + + deploy: + runs-on: ubuntu-latest + needs: test + if: (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/main-test')) || github.event_name == 'workflow_dispatch' + steps: + - uses: actions/checkout@v4 + + - name: Deploy to server + uses: appleboy/ssh-action@v1.0.3 + with: + host: ${{ secrets.HOST }} + username: ubuntu + key: ${{ secrets.KEY }} + script: | + set -e + BRANCH="${{ github.ref_name }}" + echo "Deploying branch: $BRANCH" + + sudo chown -R ubuntu:ubuntu /home/ubuntu/Moodico + sudo git config --system --add safe.directory /home/ubuntu/Moodico + + cd /home/ubuntu/Moodico + git fetch origin "$BRANCH" + git reset --hard "origin/$BRANCH" + + source venv/bin/activate + pip install --upgrade pip + pip install -r requirements.txt + python manage.py migrate --noinput + python manage.py collectstatic --noinput + + sudo systemctl restart gunicorn + sudo systemctl reload nginx diff --git a/clustering/generate_clusters.py b/clustering/generate_clusters.py deleted file mode 100644 index 77c81ac..0000000 --- a/clustering/generate_clusters.py +++ /dev/null @@ -1,119 +0,0 @@ -import json -import numpy as np -from sklearn.cluster import KMeans -from sklearn.metrics import silhouette_score - -# 클러스터링을 위한 함수들 -def hex_to_rgb(hex): - hex = hex.lstrip('#') - if len(hex) == 3: - hex = ''.join([c*2 for c in hex]) - r = int(hex[:2], 16) - g = int(hex[2:4], 16) - b = int(hex[4:], 16) - return r, g, b - -def rgb_to_hsl(r, g, b): - r, g, b = r/255, g/255, b/255 - maxc, minc = max(r, g, b), min(r, g, b) - l = (maxc + minc) / 2 - if maxc == minc: - h = s = 0 - else: - d = maxc - minc - s = d / (2 - maxc - minc) if l > 0.5 else d / (maxc + minc) - if maxc == r: - h = (g - b) / d + (6 if g < b else 0) - elif maxc == g: - h = (b - r) / d + 2 - else: - h = (r - g) / d + 4 - h /= 6 - return h * 360, s, l - -def calculate_coordinates(h, s, l): - if h >= 330 or h < 60: - if h >= 330: - h -= 360 - warm_cool_score = (h + 30) / 90 - elif 60 <= h < 180: - warm_cool_score = 1 - ((h - 60) / 120) - elif 180 <= h < 300: - warm_cool_score = -((h - 180) / 120) - else: - warm_cool_score = -1 + ((h - 300) / 30) - - if s < 0.05: - warm_cool_score = 0 - else: - warm_cool_score *= s**0.8 - - if l < 0.1 or l > 0.9: - warm_cool_score *= (1 - ((abs(0.5 - l) * 2)**2)) - - final_warm = (warm_cool_score + 1) * 50 - final_warm = max(0, min(100, final_warm)) - final_deep = (1 - l) * 100 - - return round(final_warm, 2), round(final_deep, 2) - -# 데이터 로드 -# with open("static/data/all_products.json", "r", encoding="utf-8") as f: -# products = json.load(f) -with open("../static/data/all_products_hex_update_tempk=4_2_1_1.json", "r", encoding="utf-8") as f: - products = json.load(f) - -coordinates = [] -valid_products = [] - -for p in products: - hex_color = p.get("hex") - if hex_color: - try: - r, g, b = hex_to_rgb(hex_color) - h, s, l = rgb_to_hsl(r, g, b) - warm, deep = calculate_coordinates(h, s, l) - lab_l = p.get("lab_l", 0) - lab_a = p.get("lab_a", 0) - lab_b = p.get("lab_b", 0) - - p["warmCool"] = warm - p["lightDeep"] = deep - coordinates.append([warm, deep, lab_l, lab_a, lab_b]) - valid_products.append(p) - except: - continue - -# 클러스터링을 위한 데이터 정규화 -from sklearn.preprocessing import StandardScaler -coords_np = StandardScaler().fit_transform(np.array(coordinates)) - -# KMeans 클러스터링 -coords_np = np.array(coordinates) -kmeans = KMeans(n_clusters=4, random_state=42, n_init='auto') -labels = kmeans.fit_predict(coords_np) - -# 클러스터 레이블을 제품에 추가 -for i, label in enumerate(labels): - valid_products[i]["cluster"] = int(label) - -# 클러스터링 결과를 JSON 파일로 저장 -# with open("static/data/products_clustered.json", "w", encoding="utf-8") as f: -# json.dump(valid_products, f, ensure_ascii=False, indent=2) -with open("products_clustered_new.json", "w", encoding="utf-8") as f: - json.dump(valid_products, f, ensure_ascii=False, indent=2) - -# 클러스터 중심 좌표 저장 -# with open("static/data/cluster_centers.json", "w", encoding="utf-8") as f: -# json.dump(kmeans.cluster_centers_.tolist(), f, ensure_ascii=False, indent=2) -with open("cluster_centers_new.json", "w", encoding="utf-8") as f: - json.dump(kmeans.cluster_centers_.tolist(), f, ensure_ascii=False, indent=2) - -print(" Clustering complete. Files saved.") - -# 실루엣 점수 계산 -for k in range(2, 11): - model = KMeans(n_clusters=k, random_state=42, n_init='auto') - labels = model.fit_predict(coords_np) - score = silhouette_score(coords_np, labels) - print(f"k={k}, Silhouette Score={score}") \ No newline at end of file diff --git a/crawler/color_extract.py b/crawler/color_extract.py deleted file mode 100644 index 14d8616..0000000 --- a/crawler/color_extract.py +++ /dev/null @@ -1,156 +0,0 @@ -## 기존 크롤링한 데이터(all_products.json)를 불러와서 image 필드로부터 hex 값과 lab 값을 뽑는 로직을 시험적으로 구현 -# 립 발색 부분이 아닌 부분의 색상이 같이 섞이는 문제 때문에.. - -import json -import requests -import numpy as np -from PIL import Image -import cv2 -from io import BytesIO -from sklearn.cluster import KMeans -from skimage.color import rgb2lab -import matplotlib.pyplot as plt -from collections import Counter - -## 디버깅을 위한 코드 -# k-means -> hex, hsl, swatch 추출 -def hex_hsl_swatch(rgb_colors, i, ): - rgb = rgb_colors[i] - hex_code = f"#{int(rgb[0]):02x}{int(rgb[1]):02x}{int(rgb[2]):02x}" - lab_values = rgb2lab(np.uint8(rgb).reshape(1, 1, 3) / 255.0).flatten() - color_swatch = np.full((100, 100, 3), rgb, dtype=np.uint8) - - return rgb, hex_code, lab_values, color_swatch - -# 실제 출력 함수 -def pltshow(img, title): - plt.imshow(img) - plt.title(title) - plt.axis('off') - plt.show() - -def get_product_color_w_kmeans(image_url): - try: - # 이미지 가져오기 - response = requests.get(image_url, timeout=10) - response.raise_for_status() - - # 이미지 열기 및 처리 - pil_img = Image.open(BytesIO(response.content)).convert("RGB") - - # [디버깅용 출력] 원본 이미지 - # pltshow(pil_img, "1. Original Image") - - cv_img = cv2.cvtColor(np.array(pil_img), cv2.COLOR_RGB2BGR) - - ## 배경 제거 - cv의 grabcut 매서드 사용 - # GrabCut에 필요한 마스크와 임시 배열 초기화 - mask = np.zeros(cv_img.shape[:2], np.uint8) - bgdModel = np.zeros((1, 65), np.float64) - fgdModel = np.zeros((1, 65), np.float64) - - height, width = cv_img.shape[:2] - roi_rect = (int(width * 0.1), int(height * 0.1), int(width * 0.8), int(height * 0.8)) - - # [디버깅용 출력] roi_rect가 그려진 이미지 - # img_with_rect = cv_img.copy() - # cv2.rectangle(img_with_rect, (roi_rect[0], roi_rect[1]), (roi_rect[0] + roi_rect[2], roi_rect[1] + roi_rect[3]), (0, 255, 0), 3) # 초록색 사각형 - # pltshow(cv2.cvtColor(img_with_rect, cv2.COLOR_BGR2RGB), "2. Image with ROI Rectangle") - - cv2.grabCut(cv_img, mask, roi_rect, bgdModel, fgdModel, 5, cv2.GC_INIT_WITH_RECT) - final_mask = np.where((mask == 2) | (mask == 0), 0, 1).astype('uint8') - - img_fg_only = cv_img * final_mask[:, :, np.newaxis] - - # [디버깅용 출력] 배경이 제거된 이미지 - # pltshow(cv2.cvtColor(img_fg_only, cv2.COLOR_BGR2RGB), "3. Background Removed Image") - - # 이미지를 numpy 배열 형태로 변환 - pixels = cv2.cvtColor(img_fg_only, cv2.COLOR_BGR2RGB).reshape(-1, 3) - foreground_pixels = pixels[pixels.any(axis=1)] - - # k-means 처리 부분 - k=4 - kmeans = KMeans(n_clusters=k) - kmeans.fit(foreground_pixels) - - rgb_colors = kmeans.cluster_centers_.astype('uint8') - labels = kmeans.labels_ - hsv_colors = cv2.cvtColor(rgb_colors.reshape(-1, 1, 3), cv2.COLOR_BGR2HSV) - - pixel_counts = Counter(labels) - clusters = [] - for i in range(len(rgb_colors)): - clusters.append({ - 'index': i, - 'rgb': rgb_colors[i], - 'hsv': hsv_colors[i][0], # [H, S, V] - 'count': pixel_counts.get(i, 0) # 해당 클러스터의 픽셀 수 - }) - clusters_sorted_by_value = sorted(clusters, key=lambda x: x['hsv'][2]) - candidate_clusters = clusters_sorted_by_value[1:-1] # 명도가 가장 높은 클러스터 제외(글씨 혹은 배경일 가능성), 명도가 가장 낮은 클러스터 제외(어두운 색상의 용기 혹은 그림자진 부분일 가능성) - #final_cluster = max(candidate_clusters, key=lambda x: x['count']) # 남은 클러스터들 중 픽셀 수가 더 많은 클러스터 선택 - final_cluster = max(candidate_clusters, key=lambda x: x['hsv'][1]) # 남은 클러스터들 중 채도가 더 높은 클러스터 선택 - 이걸로 함 - - best_color_rgb = final_cluster['rgb'] - - final_hex_code = f"#{int(best_color_rgb[0]):02x}{int(best_color_rgb[1]):02x}{int(best_color_rgb[2]):02x}" - lab_values = rgb2lab(np.uint8(best_color_rgb).reshape(1, 1, 3) / 255.0).flatten() - print(f"{lab_values}, {final_hex_code}") - - # [디버깅용 출력] k-means 결과 값에 해당하는 hex 색상 이미지 - # swatches_list = [] - # hex_list = [] - - # resized_pil_img = pil_img.resize((100, 100)) - # swatches_list.append(np.array(resized_pil_img)) - - # for i in range(k): - # rgb, hex_code, lab_values, color_swatch = hex_hsl_swatch(rgb_colors, i) - # swatches_list.append(color_swatch) - # hex_list.append(hex_code) - - # combined_swatch = np.concatenate(swatches_list, axis=1) - # pltshow(combined_swatch, f"4. K-Means Result: {hex_list} - {final_hex_code}") - - return final_hex_code, lab_values - - except requests.exceptions.RequestException as e: - print(f"이미지 다운로드 실패: {image_url}, 오류: {e}") - return None, None - except Exception as e: - print(f"이미지 처리 중 오류 발생: {e}") - return None, None - -if __name__ == "__main__": - - #image_url = "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg" - # image_url = "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg" - # new_hex, new_lab = get_product_color_w_kmeans(image_url) - # print(new_hex, new_lab) - - with open('../static/data/all_products.json', 'r', encoding='utf-8') as f: - products = json.load(f) - - new_data = [] - process_num = 0 - - for product in products: - process_num+=1 - image_url = product.get("image") - - print(f"{process_num}. {product['name']} 처리 중 ..") - new_hex, new_lab = get_product_color_w_kmeans(image_url) - - new_product_object = product.copy() - new_product_object['hex'] = new_hex - new_product_object['lab_l'] = round(new_lab[0], 2) - new_product_object['lab_a'] = round(new_lab[1], 2) - new_product_object['lab_b'] = round(new_lab[2], 2) - - new_data.append(new_product_object) - - new_file = "all_products_hex_update_tempk=3_1_1.json" - with open(new_file, 'w', encoding='utf-8') as f: - json.dump(new_data, f, indent = 2, ensure_ascii=False) - print("전 제품 재추출 완료") \ No newline at end of file diff --git a/crawler/scraper.py b/crawler/scraper.py deleted file mode 100644 index 09339fe..0000000 --- a/crawler/scraper.py +++ /dev/null @@ -1,164 +0,0 @@ -import os -import time -import json -import uuid -import requests -import numpy as np -from io import BytesIO -from PIL import Image -from skimage import color -from selenium import webdriver -from selenium.webdriver.chrome.service import Service -from selenium.webdriver.common.by import By -from webdriver_manager.chrome import ChromeDriverManager - -TARGETS = [ - {"brand": "romand", "url": "https://romand.co.kr/product/maincatedetail.html?cate_code=289", "category": "Lips"}, - {"brand": "3ce", "url": "https://www.3cecosmetics.com/all-products/lips", "category": "Lips"}, - {"brand": "3ce", "url": "https://www.3cecosmetics.com/all-products/cheeks/blush", "category": "blush"}, - {"brand": "3ce", "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow", "category": "eyeshadow"} -] - -SCROLL_COUNT = 4 -SAVE_PATH = 'static/data/all_products.json' - -# Selenium Chrome Driver 설정 -options = webdriver.ChromeOptions() -options.add_argument("--headless") -options.add_argument("--no-sandbox") -options.add_argument("--disable-dev-shm-usage") -driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options) - -all_products = [] - -def extract_romand_items(category): - items = driver.find_elements(By.CSS_SELECTOR, 'li.list_prd_item') - results = [] - for item in items: - try: - name = item.find_element(By.CSS_SELECTOR, '.prd_title').text - image = item.find_element(By.CSS_SELECTOR, 'img').get_attribute('src') - price = item.find_element(By.CSS_SELECTOR, '.current_price').text.strip() - url = item.find_element(By.CSS_SELECTOR, 'a').get_attribute('href') - results.append({ - "brand": "romand", - "category": category, - "name": name, - "color_name": name.split('/')[-1].strip(), - "image": image, - "price": price, - "url": url - }) - except Exception as e: - print("Romand Error:", e) - continue - return results - -def extract_3ce_items(category): - items = driver.find_elements(By.CSS_SELECTOR, 'li.tce-grid__item') - results = [] - for item in items: - try: - name = item.find_element(By.CSS_SELECTOR, 'h2.tce-product-card__name').text.strip() - url = item.find_element(By.CSS_SELECTOR, 'a.tce-product-card__link').get_attribute("href") - price = item.find_element(By.CSS_SELECTOR, '.tce-product-card__price').text.strip() - image = item.find_element(By.CSS_SELECTOR, 'img.tce-product-card__image').get_attribute("src") - - results.append({ - "brand": "3CE", - "category": category, - "name": name, - "color_name": name.split('/')[-1].strip() if '/' in name else name, - "url": f"https://www.3cecosmetics.com{url}" if url.startswith('/') else url, - "image": f"https://www.3cecosmetics.com{image}" if image.startswith('/') else image, - "price": price - }) - except Exception as e: - print("3CE Error:", e) - continue - return results - -# def extract_average_color(img_url): -# try: -# response = requests.get(img_url, timeout=5) -# img = Image.open(BytesIO(response.content)).convert('RGB') -# img = img.resize((50, 50)) -# avg_rgb = np.array(img).mean(axis=(0, 1)) -# r, g, b = map(int, avg_rgb) -# hex_code = '#{:02x}{:02x}{:02x}'.format(r, g, b) -# rgb_norm = np.array([[avg_rgb]]) / 255.0 -# lab = color.rgb2lab(rgb_norm)[0][0] -# lab_l, lab_a, lab_b = lab.round(2) -# return hex_code, lab_l, lab_a, lab_b -# except Exception as e: -# print(f"[Color Error] {img_url} - {e}") -# return "#000000", 0, 0, 0 - -# 밝은 배경 제거 -def extract_average_color(img_url): - try: - response = requests.get(img_url, timeout=5) - img = Image.open(BytesIO(response.content)).convert('RGB') - img = img.resize((50, 50)) - pixels = np.array(img).reshape(-1, 3) - - filtered = [px for px in pixels if not all(c > 240 for c in px)] - if not filtered: - filtered = pixels - - avg_rgb = np.array(filtered).mean(axis=0) - r, g, b = map(int, avg_rgb) - hex_code = '#{:02x}{:02x}{:02x}'.format(r, g, b) - - rgb_norm = np.array([[avg_rgb]]) / 255.0 - lab = color.rgb2lab(rgb_norm)[0][0] - lab_l, lab_a, lab_b = lab.round(2) - - return hex_code, lab_l, lab_a, lab_b - except Exception as e: - print(f"[Color Error] {img_url} - {e}") - return "#000000", 0, 0, 0 - -# 스크랩핑 시작 -for target in TARGETS: - brand = target["brand"] - url = target["url"] - category = target["category"] - print(f"Scraping {brand}...") - - driver.get(url) - time.sleep(2) - - for _ in range(SCROLL_COUNT): - driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") - time.sleep(2) - - if brand == "romand": - raw_items = extract_romand_items(category) - elif brand == "3ce": - raw_items = extract_3ce_items(category) - else: - print(f"No extractor defined for {brand}") - continue - - print(f" → {len(raw_items)} items found for {brand} ({category})") - - for item in raw_items: - hex_color, lab_l, lab_a, lab_b = extract_average_color(item["image"]) - product = { - "id": str(uuid.uuid4()), - **item, - "hex": hex_color, - "lab_l": lab_l, - "lab_a": lab_a, - "lab_b": lab_b - } - all_products.append(product) - -# 결과 저장 -os.makedirs(os.path.dirname(SAVE_PATH), exist_ok=True) -with open(SAVE_PATH, 'w', encoding='utf-8') as f: - json.dump(all_products, f, ensure_ascii=False, indent=2) - -driver.quit() -print(f"\nSaved {len(all_products)} products to {SAVE_PATH}") \ No newline at end of file diff --git a/moodico/main/migrations/__init__.py b/moodico/products/management/__init__.py similarity index 100% rename from moodico/main/migrations/__init__.py rename to moodico/products/management/__init__.py diff --git a/moodico/products/management/commands/__init__.py b/moodico/products/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/moodico/products/management/commands/generate_clusters.py b/moodico/products/management/commands/generate_clusters.py new file mode 100644 index 0000000..ead4481 --- /dev/null +++ b/moodico/products/management/commands/generate_clusters.py @@ -0,0 +1,137 @@ +# python manage.py generate_clusters +import os +import json +import numpy as np + +from django.core.management.base import BaseCommand, CommandError +from django.conf import settings + +from sklearn.cluster import KMeans +from sklearn.metrics import silhouette_score +from sklearn.preprocessing import StandardScaler + + +# -------- helpers (kept as in your script) -------- +def hex_to_rgb(hex_code): + h = hex_code.lstrip('#') + if len(h) == 3: + h = ''.join([c * 2 for c in h]) + r = int(h[:2], 16) + g = int(h[2:4], 16) + b = int(h[4:], 16) + return r, g, b + +def rgb_to_hsl(r, g, b): + r, g, b = r / 255, g / 255, b / 255 + maxc, minc = max(r, g, b), min(r, g, b) + l = (maxc + minc) / 2 + if maxc == minc: + h = s = 0 + else: + d = maxc - minc + s = d / (2 - maxc - minc) if l > 0.5 else d / (maxc + minc) + if maxc == r: + h = (g - b) / d + (6 if g < b else 0) + elif maxc == g: + h = (b - r) / d + 2 + else: + h = (r - g) / d + 4 + h /= 6 + return h * 360, s, l + +def calculate_coordinates(h, s, l): + if h >= 330 or h < 60: + if h >= 330: + h -= 360 + warm_cool_score = (h + 30) / 90 + elif 60 <= h < 180: + warm_cool_score = 1 - ((h - 60) / 120) + elif 180 <= h < 300: + warm_cool_score = -((h - 180) / 120) + else: + warm_cool_score = -1 + ((h - 300) / 30) + + if s < 0.05: + warm_cool_score = 0 + else: + warm_cool_score *= s ** 0.8 + + if l < 0.1 or l > 0.9: + warm_cool_score *= (1 - ((abs(0.5 - l) * 2) ** 2)) + + final_warm = (warm_cool_score + 1) * 50 + final_warm = max(0, min(100, final_warm)) + final_deep = (1 - l) * 100 + return round(final_warm, 2), round(final_deep, 2) + + +class Command(BaseCommand): + help = "Cluster products from STATIC_ROOT/data/all_products.json and write clustered results." + + def handle(self, *args, **options): + # paths (match your scraper’s MEDIA_ROOT usage) + in_path = os.path.join(settings.BASE_DIR, "static", "data", "all_products.json") + out_dir = os.path.join(settings.BASE_DIR, "static", "data") + products_out = os.path.join(out_dir, "products_clustered.json") + centers_out = os.path.join(out_dir, "cluster_centers.json") + + if not os.path.exists(in_path): + raise CommandError(f"Input not found: {in_path}") + + with open(in_path, "r", encoding="utf-8") as f: + products = json.load(f) + + coordinates = [] + valid_products = [] + + for p in products: + hex_color = p.get("hex") + if not hex_color: + continue + try: + r, g, b = hex_to_rgb(hex_color) + h, s, l = rgb_to_hsl(r, g, b) + warm, deep = calculate_coordinates(h, s, l) + + lab_l = p.get("lab_l", 0) + lab_a = p.get("lab_a", 0) + lab_b = p.get("lab_b", 0) + + p["warmCool"] = warm + p["lightDeep"] = deep + coordinates.append([warm, deep, lab_l, lab_a, lab_b]) + valid_products.append(p) + except Exception: + continue + + if not coordinates: + raise CommandError("No valid products with color data.") + + # scale once (remove repeated/overwritten arrays) + coords_np = np.array(coordinates, dtype=float) + coords_std = StandardScaler().fit_transform(coords_np) + + # fixed k=4 as in your script + kmeans = KMeans(n_clusters=4, random_state=42, n_init='auto') + labels = kmeans.fit_predict(coords_std) + + for i, label in enumerate(labels): + valid_products[i]["cluster"] = int(label) + + os.makedirs(out_dir, exist_ok=True) + with open(products_out, "w", encoding="utf-8") as f: + json.dump(valid_products, f, ensure_ascii=False, indent=2) + with open(centers_out, "w", encoding="utf-8") as f: + json.dump(kmeans.cluster_centers_.tolist(), f, ensure_ascii=False, indent=2) + + self.stdout.write(self.style.SUCCESS("Clustering complete. Files saved.")) + self.stdout.write(f" → {products_out}") + self.stdout.write(f" → {centers_out}") + + # silhouette sweep (same behavior, now using the standardized features) + max_k = min(len(coords_std) - 1, 10) + for k in range(2, max_k + 1): + model = KMeans(n_clusters=k, random_state=42, n_init='auto') + labels_k = model.fit_predict(coords_std) + score = silhouette_score(coords_std, labels_k) + self.stdout.write(f"k={k}, Silhouette Score={score:.4f}") diff --git a/moodico/products/management/commands/scraper.py b/moodico/products/management/commands/scraper.py new file mode 100644 index 0000000..6164d7e --- /dev/null +++ b/moodico/products/management/commands/scraper.py @@ -0,0 +1,244 @@ +# TODO +# python manage.py scraper +import os +import time +import json +import uuid +import requests +import numpy as np +from io import BytesIO +from PIL import Image +from skimage import color +from skimage.color import rgb2lab # used in get_product_color_w_kmeans +from collections import Counter # used in get_product_color_w_kmeans +import cv2 # used in get_product_color_w_kmeans +from sklearn.cluster import KMeans # used in get_product_color_w_kmeans + +from django.core.management.base import BaseCommand +from django.conf import settings + +from selenium import webdriver +from selenium.webdriver.chrome.service import Service +from selenium.webdriver.common.by import By +from webdriver_manager.chrome import ChromeDriverManager + + +TARGETS = [ + {"brand": "romand", "url": "https://romand.co.kr/product/maincatedetail.html?cate_code=289", "category": "Lips"}, + {"brand": "3ce", "url": "https://www.3cecosmetics.com/all-products/lips", "category": "Lips"}, + {"brand": "3ce", "url": "https://www.3cecosmetics.com/all-products/cheeks/blush", "category": "blush"}, + {"brand": "3ce", "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow", "category": "eyeshadow"} +] + +SCROLL_COUNT = 4 +SAVE_PATH = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products.json') +os.makedirs(os.path.dirname(SAVE_PATH), exist_ok=True) + +def extract_romand_items(driver, category): + items = driver.find_elements(By.CSS_SELECTOR, 'li.list_prd_item') + results = [] + for item in items: + try: + name = item.find_element(By.CSS_SELECTOR, '.prd_title').text + image = item.find_element(By.CSS_SELECTOR, 'img').get_attribute('src') + price = item.find_element(By.CSS_SELECTOR, '.current_price').text.strip() + url = item.find_element(By.CSS_SELECTOR, 'a').get_attribute('href') + results.append({ + "brand": "romand", + "category": category, + "name": name, + "color_name": name.split('/')[-1].strip(), + "image": image, + "price": price, + "url": url + }) + except Exception as e: + print("Romand Error:", e) + continue + return results + +def extract_3ce_items(driver, category): + items = driver.find_elements(By.CSS_SELECTOR, 'li.tce-grid__item') + results = [] + for item in items: + try: + name = item.find_element(By.CSS_SELECTOR, 'h2.tce-product-card__name').text.strip() + url = item.find_element(By.CSS_SELECTOR, 'a.tce-product-card__link').get_attribute("href") + price = item.find_element(By.CSS_SELECTOR, '.tce-product-card__price').text.strip() + image = item.find_element(By.CSS_SELECTOR, 'img.tce-product-card__image').get_attribute("src") + + results.append({ + "brand": "3CE", + "category": category, + "name": name, + "color_name": name.split('/')[-1].strip() if '/' in name else name, + "url": f"https://www.3cecosmetics.com{url}" if url.startswith('/') else url, + "image": f"https://www.3cecosmetics.com{image}" if image.startswith('/') else image, + "price": price + }) + except Exception as e: + print("3CE Error:", e) + continue + return results + +def extract_average_color(img_url): + try: + response = requests.get(img_url, timeout=5) + img = Image.open(BytesIO(response.content)).convert('RGB') + img = img.resize((50, 50)) + pixels = np.array(img).reshape(-1, 3) + + filtered = [px for px in pixels if not all(c > 240 for c in px)] + if not filtered: + filtered = pixels + + avg_rgb = np.array(filtered).mean(axis=0) + r, g, b = map(int, avg_rgb) + hex_code = '#{:02x}{:02x}{:02x}'.format(r, g, b) + + rgb_norm = np.array([[avg_rgb]]) / 255.0 + lab = color.rgb2lab(rgb_norm)[0][0] + lab_l, lab_a, lab_b = lab.round(2) + + return hex_code, lab_l, lab_a, lab_b + except Exception as e: + print(f"[Color Error] {img_url} - {e}") + return "#000000", 0, 0, 0 + +def get_product_color_w_kmeans(image_url): + try: + response = requests.get(image_url, timeout=10) + response.raise_for_status() + + pil_img = Image.open(BytesIO(response.content)).convert("RGB") + cv_img = cv2.cvtColor(np.array(pil_img), cv2.COLOR_RGB2BGR) + + mask = np.zeros(cv_img.shape[:2], np.uint8) + bgdModel = np.zeros((1, 65), np.float64) + fgdModel = np.zeros((1, 65), np.float64) + + height, width = cv_img.shape[:2] + roi_rect = (int(width * 0.1), int(height * 0.1), int(width * 0.8), int(height * 0.8)) + + cv2.grabCut(cv_img, mask, roi_rect, bgdModel, fgdModel, 5, cv2.GC_INIT_WITH_RECT) + final_mask = np.where((mask == 2) | (mask == 0), 0, 1).astype('uint8') + + img_fg_only = cv_img * final_mask[:, :, np.newaxis] + + pixels = cv2.cvtColor(img_fg_only, cv2.COLOR_BGR2RGB).reshape(-1, 3) + foreground_pixels = pixels[pixels.any(axis=1)] + + k = 4 + kmeans = KMeans(n_clusters=k) + kmeans.fit(foreground_pixels) + + rgb_colors = kmeans.cluster_centers_.astype('uint8') + labels = kmeans.labels_ + hsv_colors = cv2.cvtColor(rgb_colors.reshape(-1, 1, 3), cv2.COLOR_BGR2HSV) + + pixel_counts = Counter(labels) + clusters = [] + for i in range(len(rgb_colors)): + clusters.append({ + 'index': i, + 'rgb': rgb_colors[i], + 'hsv': hsv_colors[i][0], + 'count': pixel_counts.get(i, 0) + }) + clusters_sorted_by_value = sorted(clusters, key=lambda x: x['hsv'][2]) + candidate_clusters = clusters_sorted_by_value[1:-1] if len(clusters_sorted_by_value) > 2 else clusters_sorted_by_value + final_cluster = max(candidate_clusters, key=lambda x: x['hsv'][1]) + + best_color_rgb = final_cluster['rgb'] + final_hex_code = f"#{int(best_color_rgb[0]):02x}{int(best_color_rgb[1]):02x}{int(best_color_rgb[2]):02x}" + lab_values = rgb2lab(np.uint8(best_color_rgb).reshape(1, 1, 3) / 255.0).flatten() + print(f"{lab_values}, {final_hex_code}") + + return final_hex_code, lab_values + + except requests.exceptions.RequestException as e: + print(f"이미지 다운로드 실패: {image_url}, 오류: {e}") + return None, None + except Exception as e: + print(f"이미지 처리 중 오류 발생: {e}") + return None, None + +class Command(BaseCommand): + help = "Scrape products and save JSON under STATIC_ROOT/data/all_products.json" + + def handle(self, *args, **options): + # Selenium Chrome Driver 설정 + chrome_options = webdriver.ChromeOptions() + chrome_options.add_argument("--headless") + chrome_options.add_argument("--no-sandbox") + chrome_options.add_argument("--disable-dev-shm-usage") + driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options) + + all_products = [] + + # 스크랩핑 시작 + for target in TARGETS: + brand = target["brand"] + url = target["url"] + category = target["category"] + print(f"Scraping {brand}...") + + driver.get(url) + time.sleep(2) + + for _ in range(SCROLL_COUNT): + driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") + time.sleep(2) + + if brand == "romand": + raw_items = extract_romand_items(driver, category) + elif brand == "3ce": + raw_items = extract_3ce_items(driver, category) + else: + print(f"No extractor defined for {brand}") + continue + + print(f" → {len(raw_items)} items found for {brand} ({category})") + + for item in raw_items: + hex_color, lab_l, lab_a, lab_b = extract_average_color(item["image"]) + product = { + "id": str(uuid.uuid4()), + **item, + "hex": hex_color, + "lab_l": lab_l, + "lab_a": lab_a, + "lab_b": lab_b + } + all_products.append(product) + + # (원본 스크립트 로직 유지) — KMeans 재추출 루프 + new_data = [] + process_num = 0 + for product in all_products: + process_num += 1 + image_url = product.get("image") + print(f"{process_num}. {product['name']} 처리 중 ..") + new_hex, new_lab = get_product_color_w_kmeans(image_url) + + new_product_object = product.copy() + if new_lab is not None: + new_product_object['hex'] = new_hex + new_product_object['lab_l'] = round(new_lab[0], 2) + new_product_object['lab_a'] = round(new_lab[1], 2) + new_product_object['lab_b'] = round(new_lab[2], 2) + new_data.append(new_product_object) + + # 결과 저장 (원본과 동일하게 all_products를 저장) + os.makedirs(os.path.dirname(SAVE_PATH), exist_ok=True) + with open(SAVE_PATH, 'w', encoding='utf-8') as f: + json.dump(all_products, f, ensure_ascii=False, indent=2) + + driver.quit() + print(f"\nSaved {len(all_products)} products to {SAVE_PATH}") + + # 테스트 저장 주석 로직 유지 + # test_products = all_products[:5] + all_products[-5:] + # with open(SAVE_PATH,'w',encoding='utf-8') as f: + # json.dump(test_products,f,ensure_ascii=False,indent=2) + # print("테스트용 JSON 생성 완료") diff --git a/moodico/products/views.py b/moodico/products/views.py index 564e887..e9b0610 100644 --- a/moodico/products/views.py +++ b/moodico/products/views.py @@ -15,15 +15,22 @@ from moodico.users.utils import login_or_kakao_required # Create your views here. - def color_matrix_explore(request): """색상 매트릭스 페이지 뷰""" - product_path = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products_hex_update_tempk=4_2_1_1.json') #all_products_hex_update_tempk=4_2_1_1.json + media_cluster = os.path.join(settings.BASE_DIR, 'static','data', 'products_clustered.json') + static_all = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products.json') + + product_path = None + if os.path.exists(media_cluster): + product_path = media_cluster + else: + product_path = static_all + with open(product_path, 'r', encoding='utf-8') as f: products = json.load(f) return render(request, 'recommendation/color_matrix.html', {'makeupProducts': products}) - +from django.templatetags.static import static def product_detail(request, product_id): """제품 상세 페이지 뷰""" # 제품 상세 정보 (백엔드에서 받아올 예정) @@ -32,7 +39,7 @@ def product_detail(request, product_id): 'name': f'제품 {product_id}', 'description': '이 제품은 아주 좋은 제품입니다.', 'price': '30,000원', - 'image': '/static/images/test.jpg', # 임시 이미지 + 'image': static('images/test.jpg') } return render(request, 'products/detail.html', {'product': product}) @@ -42,7 +49,7 @@ def crawled_product_detail(request, crawled_id): logger.info(f"크롤링된 제품 상세 페이지 요청: crawled_id = {crawled_id}") # products_clustered.json에서 제품 정보 찾기 - product_path = os.path.join(settings.BASE_DIR, 'static', 'data', 'products_clustered_new.json') + product_path = os.path.join(settings.BASE_DIR, 'static', 'data', 'products_clustered.json') logger.info(f"제품 데이터 파일 경로: {product_path}") with open(product_path, 'r', encoding='utf-8') as f: @@ -135,11 +142,13 @@ def crawled_product_detail(request, crawled_id): }) def product_list(request): - json_path = os.path.join('static', 'data', 'products.json') - + media_path = os.path.join(settings.MEDIA_ROOT, 'data', 'products.json') + static_path = os.path.join(settings.BASE_DIR, 'static', 'data', 'products.json') + json_path = media_path if os.path.exists(media_path) else static_path + with open(json_path, 'r', encoding='utf-8') as f: products = json.load(f) - + return render(request, 'products/product_list.html', {'products': products}) # DB 구현 이후 검색 로직 수정 필요 - 현재는 검색시마다 json 파일을 매번 불러오고 있음 @@ -149,21 +158,23 @@ def search_product(request): query = request.GET.get('q', '').lower().strip() query_words = query.split() - product_path = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products_hex_update_tempk=4_2_1_1.json') + static_cluster = os.path.join(settings.BASE_DIR, 'static','data', 'products_clustered.json') + static_all = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products.json') + + product_path = static_cluster if os.path.exists(static_cluster) else static_all + with open(product_path, 'r', encoding='utf-8') as f: products = json.load(f) - def normalize(text): - text = text.lower() - return text - + def normalize(text): return text.lower() + filtered = [] for p in products: - search_for = normalize(p['brand'] + ' - ' + p['name']) + search_for = normalize(p.get('brand','') + ' - ' + p.get('name','')) if all(word in search_for for word in query_words): filtered.append(p) - return JsonResponse({'results':filtered}) + return JsonResponse({'results': filtered}) @csrf_exempt @require_http_methods(["POST"]) @@ -297,14 +308,20 @@ def get_liked_products_color_info(liked_products): import os # 좌표 정보가 포함된 제품 데이터 로드 - json_path = os.path.join('static', 'data', 'products_clustered_new.json') + static_cluster = os.path.join(settings.BASE_DIR, 'static', 'data', 'products_clustered.json') + static_all = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products.json') + + json_path = None + if os.path.exists(static_cluster): + json_path = static_cluster + else: + json_path = static_all try: with open(json_path, 'r', encoding='utf-8') as f: all_products = json.load(f) except FileNotFoundError: - logger.error("products_clustered_new.json 파일을 찾을 수 없습니다.") + logger.error("products JSON 파일을 찾을 수 없습니다: %s", json_path) return [] - # 제품명으로 매칭하여 색상 정보 추가 products_with_colors = [] @@ -331,9 +348,9 @@ def get_liked_products_color_info(liked_products): break if matching_product: - logger.info(f"제품 매칭 성공: {matching_product.get('name')} -> URL: {matching_product.get('url')}") + logger.info("제품 매칭 성공: %s -> URL: %s", matching_product.get('name'), matching_product.get('url')) products_with_colors.append({ - 'id': liked_product.product_id, # ProductLike의 product_id 사용 + 'id': liked_product.product_id, # 기존과 동일: Like의 product_id 유지 'name': liked_product.product_name, 'brand': liked_product.product_brand, 'price': liked_product.product_price, @@ -362,6 +379,7 @@ def get_liked_products_color_info(liked_products): return products_with_colors + from django.views.decorators.http import require_POST from django.contrib.admin.views.decorators import staff_member_required @@ -371,7 +389,6 @@ def clear_likes(request): ProductLike.objects.all().delete() return JsonResponse({'success': True}) - @require_http_methods(["GET"]) def get_product_like_count(request): """제품별 좋아요 수 조회 API""" @@ -635,29 +652,39 @@ def get_multiple_products_like_info(request): }, status=500) -def get_top_liked_products(limit=10): - """상위 찜 제품 조회 함수 - 전체 제품 데이터 기반""" +def get_top_liked_products(limit=10, include_unliked=True, exclude_brands=None): + """ + 상위 찜 제품 조회 함수 + - include_unliked: True면 좋아요 없는 제품도 포함 + - exclude_brands: set/list로 제외할 브랜드명 지정 + """ import json import os + from django.conf import settings from django.db.models import Count from collections import defaultdict - + + exclude_brands = set(exclude_brands or []) + # 전체 제품 데이터 로드 - json_path = os.path.join('static', 'data', 'all_products_hex_update_tempk=4_2_1_1.json') + json_path = os.path.join(settings.BASE_DIR, 'static', 'data', 'all_products.json') try: with open(json_path, 'r', encoding='utf-8') as f: all_products = json.load(f) except FileNotFoundError: - logger.error("all_products_hex_update_tempk=4_2_1_1.json 파일을 찾을 수 없습니다.") + logger.error("all_products.json 파일을 찾을 수 없습니다.") return [] - - # 제품명+브랜드별로 찜 개수 집계 (중복 제거) + + # 1) 찜 개수 집계 product_likes_summary = {} for item in ProductLike.objects.all(): key = f"{item.product_brand}_{item.product_name}" + if item.product_brand in exclude_brands: + continue # 지정한 브랜드 제외 + if key not in product_likes_summary: product_likes_summary[key] = { - 'product_id': item.product_id, + 'product_id': str(item.product_id), # 항상 문자열로 'product_name': item.product_name, 'product_brand': item.product_brand, 'product_price': item.product_price, @@ -665,40 +692,44 @@ def get_top_liked_products(limit=10): 'like_count': 0 } product_likes_summary[key]['like_count'] += 1 - - # 전체 제품 리스트 생성 - products_with_likes = [] - - # 1. 먼저 찜된 제품들 추가 (찜 개수 > 0) - for product_data in product_likes_summary.values(): - products_with_likes.append(product_data) - - # 2. 찜되지 않은 제품들도 추가 (찜 개수 = 0) - # JSON 파일의 제품들 중 찜되지 않은 것들 찾기 - existing_product_keys = set(f"{item['product_brand']}_{item['product_name']}" - for item in product_likes_summary.values()) - - for product in all_products: - product_name = product.get('name', '') - product_brand = product.get('brand', '') - product_key = f"{product_brand}_{product_name}" - - if product_name and product_key not in existing_product_keys: - products_with_likes.append({ - 'product_id': product.get('id', product_name), - 'product_name': product_name, - 'product_brand': product_brand, - 'product_price': product.get('price', ''), - 'product_image': product.get('image', ''), - 'like_count': 0 - }) - - # 찜 개수로 정렬 (찜 개수가 같으면 이름순) + + products_with_likes = list(product_likes_summary.values()) + + # 2) 좋아요 없는 제품 추가 (옵션) + if include_unliked: + existing_product_keys = set(f"{p['product_brand']}_{p['product_name']}" + for p in product_likes_summary.values()) + + for product in all_products: + product_brand = product.get('brand', '') + product_name = product.get('name', '') + if product_brand in exclude_brands or not product_name: + continue + + product_key = f"{product_brand}_{product_name}" + if product_key not in existing_product_keys: + # id 필드 없으면 고유 UUID 생성 or 건너뛰기 + pid = product.get('id') + if not pid: + import uuid + pid = str(uuid.uuid4()) + + products_with_likes.append({ + 'product_id': str(pid), + 'product_name': product_name, + 'product_brand': product_brand, + 'product_price': product.get('price', ''), + 'product_image': product.get('image', ''), + 'like_count': 0 + }) + + # 3) 정렬 products_with_likes.sort(key=lambda x: (-x['like_count'], x['product_name'])) - + return products_with_likes[:limit] + @require_http_methods(["GET"]) def product_ranking_api(request): """제품 랭킹 API""" diff --git a/moodico/recommendation/views.py b/moodico/recommendation/views.py index 7039c32..f0b9d44 100644 --- a/moodico/recommendation/views.py +++ b/moodico/recommendation/views.py @@ -6,15 +6,22 @@ import logging logger = logging.getLogger(__name__) from sklearn.metrics.pairwise import cosine_similarity +from moodico.products.views import get_top_liked_products # Create your views here. - def my_item_recommendation(request): - """내 아이템 기반 추천 페이지 뷰""" - # 백엔드 연동을 위해 임시로 빈 리스트 전달 - recommended_items = [] - search_results = [] - return render(request, 'upload/upload.html', {'search_results': search_results, 'recommended_items': recommended_items}) + # Get recommended or default products + search_results = get_top_liked_products(limit=10) + recommended_items = [] # Set this if you want a separate recommended section + + return render( + request, + 'upload/upload.html', + { + 'search_results': search_results, + 'recommended_items': recommended_items + } + ) @csrf_exempt def recommend_by_color(request): @@ -34,11 +41,18 @@ def recommend_by_color(request): coord = np.array([warm, deep, lab_l, lab_a, lab_b]) logger.info(f"Received coordinates: warmCool={warm}, lightDeep={deep}, lab_l={lab_l}, lab_a={lab_a}, lab_b={lab_b}") - - with open("static/data/cluster_centers_new.json", "r") as f: + import os + from django.conf import settings + with open("static/data/cluster_centers.json", "r") as f: centers = json.load(f) - with open("static/data/products_clustered_new.json", "r", encoding="utf-8") as f: + # path = os.path.join(settings.MEDIA_ROOT, 'data', 'cluster_centers.json') + # with open(path, "r", encoding="utf-8") as f: + # centers = json.load(f) + with open("static/data/products_clustered.json", "r", encoding="utf-8") as f: products = json.load(f) + # path = os.path.join(settings.MEDIA_ROOT, 'data', 'products_clustered.json') + # with open(path, "r", encoding="utf-8") as f: + # products = json.load(f) # Step 1: Find closest cluster cluster_idx = np.argmin([np.linalg.norm(coord - np.array(c)) for c in centers]) diff --git a/moodico_project/settings.py b/moodico_project/settings.py index b3df7f9..81dcd7b 100644 --- a/moodico_project/settings.py +++ b/moodico_project/settings.py @@ -12,6 +12,8 @@ from pathlib import Path import os +from decouple import config, Csv +import sys # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent @@ -21,13 +23,20 @@ # See https://docs.djangoproject.com/en/5.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-f+2cp%8dmctmuc-8#8@t)7zkd!=#smii5e+tv&eb-0g$970fkd' +if os.getenv('GITHUB_ACTIONS') == 'true': # running in GitHub Actions + SECRET_KEY = config('DJANGO_SECRET_KEY', default='insecure-ci-only-secret') +else: # production or local dev + SECRET_KEY = config('DJANGO_SECRET_KEY') # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = ['localhost', '127.0.0.1'] +DEBUG = config('DJANGO_DEBUG', cast=bool, default=False) +ALLOWED_HOSTS = config('DJANGO_ALLOWED_HOSTS', default='localhost,127.0.0.1', cast=Csv()) +CSRF_TRUSTED_ORIGINS = config( + 'DJANGO_CSRF_TRUSTED_ORIGINS', + default='http://localhost:8000,http://127.0.0.1:8000', + cast=Csv() +) # Application definition @@ -44,7 +53,6 @@ 'moodico.products', # 제품 관련 앱 'moodico.moodtest', # 무드 테스트 앱 'moodico.users', # 유저 앱 - 'storages' ] MIDDLEWARE = [ @@ -141,31 +149,56 @@ MEDIA_ROOT = os.path.join(BASE_DIR, 'media') # NCP에 저장될 예정 -> 사용되지 않음 - -############### -# NCP Object Storage setting(S3) - -DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage' - - -AWS_STORAGE_BUCKET_NAME = ''# 추후 버킷 명 기입 -AWS_S3_ENDPOINT_URL = 'https://kr.object.ncloudstorage.com' -AWS_S3_REGION_NAME = 'kr-standard' # 추후 정확한 region명 확인 후 기입 필요 - -AWS_ACCESS_KEY_ID = os.environ.get('NCP_ACCESS_KEY_ID', '') -AWS_SECRET_ACCESS_KEY = os.environ.get('NCP_SECRET_ACCESS_KEY', '') - -AWS_S3_FILE_OVERWRITE = False -AWS_DEFAULT_ACL = None - +# # NCP Object Storage setting(S3) +# # dummy key is for github actions +# # AWS_ACCESS_KEY_ID = config("AWS_ACCESS_KEY_ID", default="dummy-key") +# # AWS_SECRET_ACCESS_KEY = config("AWS_SECRET_ACCESS_KEY", default="dummy-key") +# # AWS_STORAGE_BUCKET_NAME = config("AWS_STORAGE_BUCKET_NAME",default="dummy-key") +# AWS_ACCESS_KEY_ID = config("AWS_ACCESS_KEY_ID") +# AWS_SECRET_ACCESS_KEY = config("AWS_SECRET_ACCESS_KEY") +# AWS_STORAGE_BUCKET_NAME = config("AWS_STORAGE_BUCKET_NAME") + +# AWS_S3_REGION_NAME = "kr-standard" +# AWS_S3_ENDPOINT_URL = "https://kr.object.ncloudstorage.com" +# AWS_S3_SIGNATURE_VERSION = "s3v4" +# AWS_S3_ADDRESSING_STYLE = "virtual" +# AWS_DEFAULT_ACL = None +# AWS_QUERYSTRING_AUTH = False + +# INSTALLED_APPS += ["storages"] + +# STORAGES = { +# "default": { +# "BACKEND": "storages.backends.s3.S3Storage", +# "OPTIONS": { +# "bucket_name": AWS_STORAGE_BUCKET_NAME, +# "region_name": AWS_S3_REGION_NAME, +# "endpoint_url": AWS_S3_ENDPOINT_URL, +# "signature_version": AWS_S3_SIGNATURE_VERSION, +# "addressing_style": AWS_S3_ADDRESSING_STYLE, +# }, +# }, +# "staticfiles": { +# "BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage", +# }, +# } # 카카오 로그인 설정 -KAKAO_REDIRECT_URI = "http://localhost:8000/users/kakao/callback/" KAKAO_AUTH_HOST = "https://kauth.kakao.com" KAKAO_API_HOST = "https://kapi.kakao.com" -from decouple import config -KAKAO_CLIENT_ID = config("KAKAO_CLIENT_ID") -KAKAO_CLIENT_SECRET = config("KAKAO_CLIENT_SECRET") +IS_TEST = 'test' in sys.argv +KAKAO_REDIRECT_URI = config( + "KAKAO_REDIRECT_URI", + default="http://localhost:8000/users/kakao/callback/" +) +KAKAO_CLIENT_ID = config( + "KAKAO_CLIENT_ID", + default="dummy" if IS_TEST else None # None => raise if missing +) +KAKAO_CLIENT_SECRET = config( + "KAKAO_CLIENT_SECRET", + default="dummy" if IS_TEST else None +) # 로그인 로그아웃 후 리다이렉트 URL 설정 LOGIN_REDIRECT_URL = "/" diff --git a/moodico_project/urls.py b/moodico_project/urls.py index c91465b..b5ca914 100644 --- a/moodico_project/urls.py +++ b/moodico_project/urls.py @@ -24,6 +24,6 @@ path('admin/', admin.site.urls), ] -#개발 환경에서 미디어 파일 서빙을 위한 설정 (운영 환경에서는 웹 서버가 처리) +#개발 환경에서 미디어 파일 서빙을 위한 설정 (운영 환경에서는 웹 서버가 처리 if settings.DEBUG: urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 0a93c0d..2eed392 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ asgiref==3.9.1 attrs==25.3.0 -boto3==1.6.19 -botocore==1.9.23 +boto3==1.40.8 +botocore==1.40.8 certifi==2025.7.14 charset-normalizer==3.4.2 Django==5.2.4 @@ -14,16 +14,17 @@ jmespath==0.10.0 joblib==1.5.1 lazy_loader==0.4 networkx==3.5 -numpy==2.3.2 +numpy==2.2.6 +opencv-python==4.12.0.88 outcome==1.3.0.post0 packaging==25.0 pillow==11.3.0 PySocks==1.7.1 -python-dateutil==2.6.1 +python-dateutil==2.9.0.post0 python-decouple==3.8 python-dotenv==1.1.1 requests==2.32.4 -s3transfer==0.1.13 +s3transfer==0.13.1 scikit-image==0.25.2 scikit-learn==1.7.1 scipy==1.16.1 @@ -38,7 +39,6 @@ trio==0.30.0 trio-websocket==0.12.2 typing_extensions==4.14.1 urllib3==2.5.0 -pillow==11.3.0 webdriver-manager==4.0.2 websocket-client==1.8.0 wsproto==1.2.0 diff --git a/static/css/upload/upload.css b/static/css/upload/upload.css index ce07f6b..40c7b23 100644 --- a/static/css/upload/upload.css +++ b/static/css/upload/upload.css @@ -1,3 +1,8 @@ +.image-preview-area img.color-picker-active, +.image-preview-area canvas.color-picker-active { + cursor: url("../../images/eyedropper.svg") 12 12, auto, + crosshair; +} .image-preview-area { margin-top: 30px; border: 1px solid #ddd; diff --git a/static/data/all_products.json b/static/data/all_products.json index 5426336..936fa6b 100644 --- a/static/data/all_products.json +++ b/static/data/all_products.json @@ -1,6 +1,6 @@ [ { - "id": "21bea116-0f90-48a1-8372-4b546978c423", + "id": "ee358e4c-86d7-4035-9dda-bb7cd46a8244", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", @@ -14,7 +14,7 @@ "lab_b": 12.55 }, { - "id": "9a5fe61e-ba9f-4875-9fc5-f502034fc633", + "id": "2f96791d-40c2-4f04-9411-c660a73fe0a1", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", @@ -28,7 +28,7 @@ "lab_b": 13.33 }, { - "id": "8f45796f-298e-46c0-aa7a-145eb9dea9d4", + "id": "08587a89-b98f-4e4a-9333-d7ae268ce577", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", @@ -42,7 +42,7 @@ "lab_b": 1.09 }, { - "id": "1a66c7c0-18da-459a-9e7e-3f3e162a0810", + "id": "5c9d25d4-8a56-4697-b9ff-2efe73a96e16", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", @@ -56,7 +56,7 @@ "lab_b": 14.01 }, { - "id": "b4a597d4-7a85-493d-b00a-6964a897c1e7", + "id": "3435f36f-d90e-4dde-94ec-d02af0b09449", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", @@ -70,7 +70,217 @@ "lab_b": 12.83 }, { - "id": "66ffbc21-3859-426b-8b4a-81acfe32056a", + "id": "141411dd-a978-43b8-89c3-6624efda4543", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", + "color_name": "30 캐슈넛 로즈", + "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", + "price": "6,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", + "hex": "#dca49f", + "lab_l": 72.45, + "lab_a": 20.16, + "lab_b": 10.28 + }, + { + "id": "9be4e244-3420-4a6f-bfe7-84a03ee6e804", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", + "color_name": "10 누 베이지", + "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", + "hex": "#ddb3a2", + "lab_l": 76.43, + "lab_a": 12.72, + "lab_b": 14.57 + }, + { + "id": "2033ce30-09c9-4e40-913f-41e5802fc801", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", + "color_name": "11 버피 코랄", + "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", + "hex": "#dfafa3", + "lab_l": 75.59, + "lab_a": 15.73, + "lab_b": 12.87 + }, + { + "id": "7fb0a536-63a4-451a-83fe-f34bd9b2c59a", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", + "color_name": "12 베일드 로즈", + "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", + "hex": "#d8a4a5", + "lab_l": 72.26, + "lab_a": 19.41, + "lab_b": 6.77 + }, + { + "id": "e8445791-6397-4f73-b142-5bc647df59e2", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", + "color_name": "13 스카치 누드", + "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", + "hex": "#d29d8f", + "lab_l": 69.43, + "lab_a": 18.03, + "lab_b": 14.72 + }, + { + "id": "93eb7e29-6a96-4d16-8de8-fa228e2c4586", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", + "color_name": "14 디어 애플", + "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", + "hex": "#df968e", + "lab_l": 69.24, + "lab_a": 26.2, + "lab_b": 15.39 + }, + { + "id": "8365038a-9020-413a-929a-3fd420a5f706", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", + "color_name": "15 피칸 브루", + "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", + "hex": "#d88d7a", + "lab_l": 65.99, + "lab_a": 26.02, + "lab_b": 21.69 + }, + { + "id": "a4b3caf5-2dd4-4626-8d0f-323382949eab", + "brand": "romand", + "category": "Lips", + "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", + "color_name": "펑키 멜론", + "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", + "hex": "#d45c7b", + "lab_l": 55.25, + "lab_a": 50.09, + "lab_b": 6.01 + }, + { + "id": "0f643e72-0e38-4687-b544-0334248dc10b", + "brand": "romand", + "category": "Lips", + "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", + "color_name": "36 피치 허니 비", + "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", + "hex": "#e4a49e", + "lab_l": 73.39, + "lab_a": 22.7, + "lab_b": 12.73 + }, + { + "id": "63fd3703-eb4d-480b-a5b7-9ac7654188e5", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", + "color_name": "06 인 바이너리", + "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", + "hex": "#c58b96", + "lab_l": 63.92, + "lab_a": 23.85, + "lab_b": 2.83 + }, + { + "id": "947445cf-dbb9-4c75-aa3c-3bbdabe381be", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", + "color_name": "05 더치 코코아", + "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", + "hex": "#c98e89", + "lab_l": 64.95, + "lab_a": 21.59, + "lab_b": 11.85 + }, + { + "id": "e69472e2-4c82-4573-b7f7-ad6e68cf4148", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", + "color_name": "04 카멜 너츠", + "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", + "hex": "#db9e93", + "lab_l": 70.84, + "lab_a": 20.79, + "lab_b": 14.94 + }, + { + "id": "39641962-6b2c-4339-975b-3c7dac4d39fe", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", + "color_name": "03 태피 베리", + "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", + "hex": "#e5919a", + "lab_l": 69.05, + "lab_a": 33.11, + "lab_b": 8.81 + }, + { + "id": "5d0f9d52-ad32-4ecb-91e9-1416cbdf7c87", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", + "color_name": "02 버니 홉", + "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", + "hex": "#e6a3ae", + "lab_l": 73.8, + "lab_a": 26.15, + "lab_b": 4.43 + }, + { + "id": "08081a9b-063e-410a-83a7-60b3c11d2538", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", + "color_name": "01 베어 펌킨", + "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", + "hex": "#e5ac9b", + "lab_l": 75.27, + "lab_a": 18.86, + "lab_b": 16.81 + }, + { + "id": "e9097c94-d792-4e87-80d9-a5e1a55fadad", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", @@ -84,7 +294,7 @@ "lab_b": 3.7 }, { - "id": "36b1325d-1b14-4e4e-8679-6fafac4eb813", + "id": "31264bd7-3de1-434d-b231-0e8c1b2a6944", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", @@ -98,7 +308,7 @@ "lab_b": 3.99 }, { - "id": "a91d0c50-5e01-451f-b104-0ab2aa6f7ad6", + "id": "27589d28-3793-4ebe-bb02-76f625ede783", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", @@ -112,7 +322,7 @@ "lab_b": 15.31 }, { - "id": "4f9e71e6-d66a-487e-b1b5-95a2da49c9e3", + "id": "b33617ea-2fd4-4c34-8aae-429c7ff5aee1", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", @@ -126,7 +336,7 @@ "lab_b": 18.06 }, { - "id": "b79901fb-6dac-4511-9767-4bd21704e294", + "id": "72879336-93e7-4ee0-ab6a-4eb5f9cc1347", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", @@ -140,7 +350,7 @@ "lab_b": 13.06 }, { - "id": "0d604060-193d-49fc-8bce-988091301390", + "id": "26ba5c45-d1bc-4940-a83f-c9cbafc49161", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", @@ -154,7 +364,7 @@ "lab_b": 28.74 }, { - "id": "a5ffebb0-1d7b-4a46-adaa-4d56f6edad19", + "id": "da606bdd-2d83-4591-ae77-81873b53f797", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", @@ -168,7 +378,7 @@ "lab_b": 5.82 }, { - "id": "2614d23d-96ed-4d9b-b1f4-21533aa7268a", + "id": "2467a4db-8a4b-48d7-ae4b-7187274dd184", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", @@ -182,7 +392,7 @@ "lab_b": 12.54 }, { - "id": "5873a043-e3e5-49c3-b727-1ef9b1efaa99", + "id": "69880f1f-81ec-4e56-acfc-b1188bca8e56", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", @@ -196,7 +406,7 @@ "lab_b": -4.94 }, { - "id": "906deddd-6ddf-47be-ae00-fd1bdf0e676f", + "id": "142dfdac-0fed-4814-bc21-eff3ea2537d4", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", @@ -210,7 +420,7 @@ "lab_b": 7.41 }, { - "id": "2f2cdf81-a944-4f49-b64c-d49ed7875792", + "id": "19ab1d34-10a6-4f71-b79c-b9776540076a", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", @@ -224,7 +434,7 @@ "lab_b": 22.22 }, { - "id": "40970f84-0955-4b50-90bb-a82d4561e153", + "id": "4b7fa6d4-d667-4773-a4fc-05e3c7dbabd4", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", @@ -238,7 +448,7 @@ "lab_b": 14.13 }, { - "id": "0d1df210-4905-4986-8dc0-6a844de0bcd9", + "id": "e430d1d6-3b9c-4c3b-85c6-4b265216ae29", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", @@ -252,7 +462,7 @@ "lab_b": 4.81 }, { - "id": "9f89ea8e-c5d3-40a9-a9ff-f81d7f163445", + "id": "ae43a2fa-7ff9-4957-b1c3-200f5ec6c5c5", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", @@ -266,7 +476,7 @@ "lab_b": 2.4 }, { - "id": "9f9e3060-c423-4de2-ad29-66cab3a560ff", + "id": "7b50314a-341a-4534-8cc1-45ff117669ea", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", @@ -280,7 +490,7 @@ "lab_b": 10.15 }, { - "id": "a53dc816-28d8-493b-a320-6b099ac9974d", + "id": "cb677659-d2d3-4005-bb92-ba6723f55b67", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", @@ -294,7 +504,7 @@ "lab_b": 18.65 }, { - "id": "9ae2ef4f-9e2b-48c2-b605-e443168131aa", + "id": "8a406109-28d3-48ae-bd47-5db532937106", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", @@ -308,7 +518,7 @@ "lab_b": 22.24 }, { - "id": "caabd5bb-195f-4225-b83d-b95f586b2578", + "id": "8de62e86-7c24-4d60-b738-d80844b7e37c", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", @@ -322,7 +532,7 @@ "lab_b": 23.69 }, { - "id": "06c2254d-8d72-476d-845f-3ef1674071f9", + "id": "e572778a-bf40-4c4e-b6fb-ea667ac97800", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", @@ -336,315 +546,63 @@ "lab_b": 17.27 }, { - "id": "11f11c8e-f3fe-4fc1-937e-f2067a768e73", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "color_name": "09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", - "hex": "#d88b89", - "lab_l": 65.73, - "lab_a": 29.1, - "lab_b": 13.26 - }, - { - "id": "2535ace4-3ebe-4397-b1ab-3f7ec2c4bdd9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "color_name": "08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "hex": "#d6746d", - "lab_l": 59.87, - "lab_a": 37.62, - "lab_b": 20.71 - }, - { - "id": "be91e7bf-9b23-46cd-8ff9-66f842f0571d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "color_name": "07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", - "hex": "#b34f5a", - "lab_l": 46.97, - "lab_a": 41.6, - "lab_b": 13.65 - }, - { - "id": "eb76ec0d-e969-4245-a2ad-61066804a775", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "color_name": "05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", - "hex": "#ce7373", - "lab_l": 58.67, - "lab_a": 35.71, - "lab_b": 15.85 - }, - { - "id": "60a49f29-76f9-4912-b405-1cbbfaf8909b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "color_name": "06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", - "hex": "#c58b96", - "lab_l": 63.92, - "lab_a": 23.85, - "lab_b": 2.83 - }, - { - "id": "199e9f32-f575-4281-8903-66bd875228e9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "color_name": "05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", - "hex": "#c98e89", - "lab_l": 64.95, - "lab_a": 21.59, - "lab_b": 11.85 - }, - { - "id": "6e1126de-2ef5-413a-84a5-3cb6642e03d9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "color_name": "04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", - "hex": "#db9e93", - "lab_l": 70.84, - "lab_a": 20.79, - "lab_b": 14.94 - }, - { - "id": "71ce99ca-c86e-427e-bd19-f59622ad7cb1", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "color_name": "03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "hex": "#e5919a", - "lab_l": 69.05, - "lab_a": 33.11, - "lab_b": 8.81 - }, - { - "id": "6a3f15be-f9f4-4151-8088-b81618bdc4f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "color_name": "02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", - "hex": "#e6a3ae", - "lab_l": 73.8, - "lab_a": 26.15, - "lab_b": 4.43 - }, - { - "id": "ddcb78a1-8b88-4d01-afd9-42c81209b3ba", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "color_name": "01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", - "hex": "#e5ac9b", - "lab_l": 75.27, - "lab_a": 18.86, - "lab_b": 16.81 - }, - { - "id": "89f24b19-9513-4389-85a5-c8acabcbec9e", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "color_name": "30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", - "hex": "#dca49f", - "lab_l": 72.45, - "lab_a": 20.16, - "lab_b": 10.28 - }, - { - "id": "8bb4c2be-c633-40ea-8b90-51fb34270472", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "color_name": "10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", - "hex": "#ddb3a2", - "lab_l": 76.43, - "lab_a": 12.72, - "lab_b": 14.57 - }, - { - "id": "3651ff14-cd6c-4366-a794-8362961eb0b6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "color_name": "11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", - "hex": "#dfafa3", - "lab_l": 75.59, - "lab_a": 15.73, - "lab_b": 12.87 - }, - { - "id": "dd279635-cb31-4111-947d-9562dfc3aa84", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "color_name": "12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "hex": "#d8a4a5", - "lab_l": 72.26, - "lab_a": 19.41, - "lab_b": 6.77 - }, - { - "id": "0ed05f59-e439-4367-8951-99bb0e6e99ad", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "color_name": "13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", - "hex": "#d29d8f", - "lab_l": 69.43, - "lab_a": 18.03, - "lab_b": 14.72 - }, - { - "id": "21890fc3-32e9-4c93-8208-f37f41f4b379", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "color_name": "14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", - "hex": "#df968e", - "lab_l": 69.24, - "lab_a": 26.2, - "lab_b": 15.39 - }, - { - "id": "660a7198-216d-4bff-aa76-e1f332be81ff", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "color_name": "15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", - "hex": "#d88d7a", - "lab_l": 65.99, - "lab_a": 26.02, - "lab_b": 21.69 - }, - { - "id": "030b8f73-d685-4bcc-81ce-3e4cff60badf", + "id": "6ac3276f-3745-4ffb-b830-53eb087547a7", "brand": "romand", "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "color_name": "펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", - "hex": "#d45c7b", - "lab_l": 55.25, - "lab_a": 50.09, - "lab_b": 6.01 - }, - { - "id": "43abb70c-37b9-423f-90bf-958bc1ad4e1a", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "color_name": "36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", + "color_name": "09 멀드 피치", + "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", - "hex": "#e4a49e", - "lab_l": 73.39, - "lab_a": 22.7, - "lab_b": 12.73 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", + "hex": "#d88b89", + "lab_l": 65.73, + "lab_a": 29.1, + "lab_b": 13.26 }, { - "id": "d78da058-47ff-4fcb-b0c5-dfc3f73bc9fa", + "id": "1bad06a3-1a67-44d2-82a5-b2a10a7ab290", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "color_name": "17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", + "color_name": "08 핑크 펌킨", + "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", - "hex": "#686064", - "lab_l": 41.84, - "lab_a": 3.68, - "lab_b": -1.15 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", + "hex": "#d6746d", + "lab_l": 59.87, + "lab_a": 37.62, + "lab_b": 20.71 }, { - "id": "f71e86f6-e2d1-4300-abcc-f0d3313c6e72", + "id": "64fc166a-e44d-476f-a4be-8513eb34c11e", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "color_name": "16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", + "color_name": "07 체리 밤", + "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", - "hex": "#936f70", - "lab_l": 50.72, - "lab_a": 14.39, - "lab_b": 5.15 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", + "hex": "#b34f5a", + "lab_l": 46.97, + "lab_a": 41.6, + "lab_b": 13.65 }, { - "id": "129d267f-2f89-45bb-98b9-fc9c144287a0", + "id": "0c4daa58-b564-4ebe-9231-949d2448b0a2", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "color_name": "06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", + "color_name": "05 쥬쥬브", + "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "hex": "#886f70", - "lab_l": 49.41, - "lab_a": 10.06, - "lab_b": 3.4 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", + "hex": "#ce7373", + "lab_l": 58.67, + "lab_a": 35.71, + "lab_b": 15.85 }, { - "id": "acc203c5-1625-46b2-a9d8-bb453d0ac930", + "id": "71c10932-cb6d-4db1-b0b8-461403db6f46", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", @@ -658,7 +616,7 @@ "lab_b": 0.19 }, { - "id": "0360c61a-b1ba-449d-9fc5-bf473ea088ab", + "id": "75e91c80-ada7-44f1-860c-17591fec811b", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", @@ -672,7 +630,7 @@ "lab_b": 6.46 }, { - "id": "d913b2cb-3f1d-4865-99c9-104b681fa7a6", + "id": "6d9c6994-a026-40db-9ce0-d51ae481552f", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", @@ -686,7 +644,7 @@ "lab_b": 10.95 }, { - "id": "d51fdbaf-1cf3-4d69-b609-d2e82147da6c", + "id": "278e5ee0-6874-4a74-9fec-800df0568029", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", @@ -700,7 +658,49 @@ "lab_b": -5.11 }, { - "id": "58cfa7d4-9e93-4db2-849e-b640ca8385f6", + "id": "a5c019d6-0c38-4f75-92e7-7cc913eb60ee", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", + "color_name": "17 베리 인 블랙", + "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", + "hex": "#686064", + "lab_l": 41.84, + "lab_a": 3.68, + "lab_b": -1.15 + }, + { + "id": "04389ed6-cfe5-4843-9047-20f3c7e6c627", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", + "color_name": "16 키튼 피치", + "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", + "hex": "#936f70", + "lab_l": 50.72, + "lab_a": 14.39, + "lab_b": 5.15 + }, + { + "id": "083697b4-2f5a-4ae2-b82f-e88c5f7f6120", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", + "color_name": "06 카야 피그", + "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", + "hex": "#886f70", + "lab_l": 49.41, + "lab_a": 10.06, + "lab_b": 3.4 + }, + { + "id": "98dca307-9f09-43d9-9d2c-48f67db44dee", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", @@ -714,7 +714,7 @@ "lab_b": 12.64 }, { - "id": "6b18d829-8fa5-482f-ac74-bf1032fc8c67", + "id": "b4d5ef03-754e-4946-a4b7-644ea7b8c21d", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", @@ -728,7 +728,7 @@ "lab_b": 5.47 }, { - "id": "f0af499d-b2a3-4201-b0a4-0cffb06f69d1", + "id": "ae8a4e12-4a2c-4a8e-9722-e69f5b47e4f9", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", @@ -742,7 +742,7 @@ "lab_b": 6.62 }, { - "id": "56cc8ba6-3059-46b7-9fd2-84bbf1b9ebcd", + "id": "e6924cc5-ef5e-462c-9692-209a7a057fd1", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", @@ -756,7 +756,7 @@ "lab_b": 10.4 }, { - "id": "79e08d1c-19a3-4377-a710-cba89b246709", + "id": "3900c241-6a2a-4afd-ac57-3bb167cc84d6", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", @@ -770,7 +770,7 @@ "lab_b": 3.68 }, { - "id": "450cb4de-e40c-4301-bf15-d2cb87b58650", + "id": "5003a42f-9f49-4ddf-a899-ce17358696fa", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", @@ -784,7 +784,7 @@ "lab_b": 9.63 }, { - "id": "587eecaa-6532-4644-9bd2-8c8bf1e8a195", + "id": "3737491d-1138-4075-918a-ffac868ba77c", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", @@ -798,7 +798,7 @@ "lab_b": 7.81 }, { - "id": "d4e40595-6024-4c1d-b159-b3213f56f61f", + "id": "7fed05ea-b1f8-4dec-9e3a-759797b1ec06", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", @@ -812,7 +812,7 @@ "lab_b": 8.3 }, { - "id": "247f4663-5967-4872-88c6-577fabda407c", + "id": "b4a88e82-f6ef-435e-8401-d9503b900638", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", @@ -826,7 +826,7 @@ "lab_b": 3.23 }, { - "id": "b97ba469-b7a2-4e62-95f3-2e8049600841", + "id": "d5f0059c-d64a-4b8b-af14-81b46a032483", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", @@ -840,7 +840,7 @@ "lab_b": 15.58 }, { - "id": "1f4fd646-944b-47ab-9924-987e89ad8c93", + "id": "a9b8ed3b-168d-4770-b15f-f60d3fd429fe", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", @@ -854,7 +854,7 @@ "lab_b": -3.65 }, { - "id": "1f0de0fb-496b-49c0-926b-539c17e44758", + "id": "404c60b8-bab9-41b3-abee-79f58bcfed87", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", @@ -868,7 +868,7 @@ "lab_b": -8.02 }, { - "id": "58bb7b88-83ce-4eaf-8013-7ee165515384", + "id": "ca495e42-3ae4-44f4-ab74-c2adcac58fbf", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", @@ -882,7 +882,7 @@ "lab_b": 22.48 }, { - "id": "c565f605-2955-43d5-91c8-3e060e7339d9", + "id": "08c4c9f9-6de7-4c14-9581-5d5b979b67c8", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", @@ -896,7 +896,7 @@ "lab_b": 11.53 }, { - "id": "679e2b2b-4506-41f4-a318-bb4ecfefc1a3", + "id": "e714de6f-8651-474f-bed1-4a46436f9926", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", @@ -910,7 +910,7 @@ "lab_b": -0.61 }, { - "id": "c232563b-a8c5-45c0-8549-bebe80e0a950", + "id": "bdaf40c6-a0d5-4cca-96d1-0db037c90bc1", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", @@ -924,7 +924,7 @@ "lab_b": 22.09 }, { - "id": "01842932-9555-4609-b422-c1201599afe0", + "id": "807cbb63-e06c-4e32-80de-89b95366c8a2", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", @@ -938,7 +938,7 @@ "lab_b": 12.4 }, { - "id": "5c2a9cf0-3ef3-4dab-8ce5-4e699b8fbe2b", + "id": "672bc8d6-b75b-4485-9c20-804e13b1d3c1", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", @@ -952,7 +952,7 @@ "lab_b": 15.73 }, { - "id": "c621725c-51e5-4cef-b6ef-cf750847bb19", + "id": "18d350e1-0090-47f5-8fbf-0f4872b46e0c", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", @@ -966,7 +966,7 @@ "lab_b": 14.94 }, { - "id": "5948abf0-990f-48f0-978d-cf4ed09cd219", + "id": "664aedcd-4f19-42df-8a28-d1d756f4cbaf", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", @@ -980,7 +980,7 @@ "lab_b": 15.04 }, { - "id": "8580e08a-96ac-48fb-a1c7-e8a14f289a06", + "id": "4f82c58d-ac2e-473d-b3c3-bda52418d1e7", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", @@ -994,7 +994,7 @@ "lab_b": 11.5 }, { - "id": "ba467c69-d3ed-4c8b-8630-4d5773759841", + "id": "a5375e55-6078-40f3-8047-960b9bc95787", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", @@ -1008,7 +1008,7 @@ "lab_b": 6.7 }, { - "id": "9ae57ab3-3bc8-47ae-a944-651bba48c6b9", + "id": "1bf38ad6-81fe-45c0-a1ec-e5f92d116d76", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", @@ -1022,7 +1022,7 @@ "lab_b": 8.11 }, { - "id": "a19ebd66-a30b-47df-a88a-6155d782255b", + "id": "47fb83eb-86c2-46fb-8d65-77ec463c73ce", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", @@ -1036,7 +1036,7 @@ "lab_b": -0.76 }, { - "id": "679545da-ced9-4fbb-a2e8-5aae8e3704af", + "id": "35764400-d47d-4e5e-ad83-4f28a7a4d9e7", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", @@ -1050,7 +1050,7 @@ "lab_b": 17.11 }, { - "id": "9c791fc9-0c76-46aa-a0be-692de6718109", + "id": "7a668a31-e2e1-4f79-93c4-6e1336a00a43", "brand": "romand", "category": "Lips", "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", @@ -1064,7 +1064,7 @@ "lab_b": 17.78 }, { - "id": "a6a4f541-4e96-4d05-88da-a3a22cedf463", + "id": "ca4ba3ac-9db3-4ea2-bc5b-bcb3aac3c09a", "brand": "romand", "category": "Lips", "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", @@ -1078,7 +1078,7 @@ "lab_b": 1.63 }, { - "id": "37c155d8-f204-4a50-96e9-0a8161b96c90", + "id": "6fe2b5ae-0fa2-4c1c-bdd1-2f999b9042a4", "brand": "romand", "category": "Lips", "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", @@ -1092,7 +1092,7 @@ "lab_b": 17.17 }, { - "id": "550049c9-a8a7-4c9a-a45d-b0b5d7ff5d12", + "id": "a5e13466-454a-4657-b540-4131fbcc9eae", "brand": "romand", "category": "Lips", "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", @@ -1106,7 +1106,91 @@ "lab_b": 12.94 }, { - "id": "ffe21a6a-3fe2-43fe-a017-c75de910d409", + "id": "bd4eba83-890d-4e4b-804e-08ea78b6bc50", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", + "color_name": "12 캐니언", + "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", + "hex": "#cd8f82", + "lab_l": 65.26, + "lab_a": 21.92, + "lab_b": 16.11 + }, + { + "id": "be223aca-77d0-4029-bb9c-b74f33841212", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", + "color_name": "13 커스터드 모브", + "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", + "hex": "#d6989c", + "lab_l": 69.1, + "lab_a": 23.65, + "lab_b": 7.19 + }, + { + "id": "b74d5584-523f-4406-9429-64fbaf157b8f", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", + "color_name": "14 모브 문", + "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", + "hex": "#d49ba6", + "lab_l": 69.84, + "lab_a": 22.65, + "lab_b": 2.75 + }, + { + "id": "7619ab1f-7330-45c8-a2b0-e99bf94afdd3", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", + "color_name": "15 누디 선다운", + "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", + "hex": "#d5a295", + "lab_l": 71.1, + "lab_a": 17.37, + "lab_b": 13.95 + }, + { + "id": "95d605b8-f71c-49f6-a1ad-b09b92555d1f", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", + "color_name": "16 피그 라이즈", + "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", + "hex": "#c4898d", + "lab_l": 63.26, + "lab_a": 23.04, + "lab_b": 7.21 + }, + { + "id": "67b1b66c-71be-4754-8996-9b789f41b6c5", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", + "color_name": "17 우디 선셋", + "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", + "hex": "#ac7f7d", + "lab_l": 57.67, + "lab_a": 17.5, + "lab_b": 7.62 + }, + { + "id": "e28ca45d-1356-4e71-9466-9cf7349d909a", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 05 딤모브", @@ -1120,21 +1204,21 @@ "lab_b": 6.74 }, { - "id": "aaee454a-4385-4c6b-80d6-1aa588e76f4b", + "id": "aadc9b2e-2556-4435-98c0-6d5378d69b38", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "color_name": "02 너티 베이그", + "name": "롬앤 글래스팅 컬러 글로스 / 02 너티베이그", + "color_name": "02 너티베이그", "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%EB%B2%A0%EC%9D%B4%EA%B7%B8", "hex": "#d29e8f", "lab_l": 69.63, "lab_a": 17.49, "lab_b": 14.97 }, { - "id": "986543ac-819f-4a2c-9d9a-cd22db9da4a6", + "id": "ca7cc89d-8612-47ad-84fa-4a0029e5acf8", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", @@ -1148,7 +1232,7 @@ "lab_b": 3.04 }, { - "id": "9359d1fa-71e7-45cb-b14f-a234204bfbb6", + "id": "8a9a89c7-0dc7-4e09-af02-c6b532acf90e", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", @@ -1162,21 +1246,21 @@ "lab_b": 6.63 }, { - "id": "68c057b9-bf64-43eb-bfc6-f68062fcc273", + "id": "ac2d1341-7016-42b1-9e3e-fe5f4bc46476", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "color_name": "06 디픈 무어", + "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈무어", + "color_name": "06 디픈무어", "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%EB%AC%B4%EC%96%B4", "hex": "#b27f79", "lab_l": 58.16, "lab_a": 18.8, "lab_b": 11.06 }, { - "id": "418d0db8-e6d3-42b8-b715-05f8bd67e56b", + "id": "842cb359-cb1e-49ec-8569-628675208a31", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", @@ -1190,7 +1274,7 @@ "lab_b": 3.92 }, { - "id": "0df6f4f6-5cca-4991-9a74-75bc52020c24", + "id": "bf7772f5-4c82-4e97-a7a7-3ba93df5e11c", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", @@ -1204,21 +1288,21 @@ "lab_b": 1.81 }, { - "id": "324d1e09-25af-4704-ab0c-9dd669a3f255", + "id": "881dddb2-0c6a-4d47-baa6-35b0e504ab30", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "color_name": "07 스프링 피버", + "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링피버", + "color_name": "07 스프링피버", "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%ED%94%BC%EB%B2%84", "hex": "#e9a09f", "lab_l": 73.03, "lab_a": 27.06, "lab_b": 11.5 }, { - "id": "4000ca86-fa94-433a-8c28-437b8b2ec702", + "id": "61730b9b-b8e6-483c-af6e-67c704157228", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", @@ -1232,63 +1316,7 @@ "lab_b": 5.54 }, { - "id": "7c57701a-2899-4e36-911d-c3de14fac2f8", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "color_name": "14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", - "hex": "#d49ba6", - "lab_l": 69.84, - "lab_a": 22.65, - "lab_b": 2.75 - }, - { - "id": "67b2b414-9c12-4aa4-9666-4adf1ec73666", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "color_name": "15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", - "hex": "#d5a295", - "lab_l": 71.1, - "lab_a": 17.37, - "lab_b": 13.95 - }, - { - "id": "6bbd9c1b-5556-4745-b39f-91fe09d12dfd", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "color_name": "16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", - "hex": "#c4898d", - "lab_l": 63.26, - "lab_a": 23.04, - "lab_b": 7.21 - }, - { - "id": "46816127-8b1a-48e7-be0f-2d079db2dc74", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "color_name": "17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", - "hex": "#ac7f7d", - "lab_l": 57.67, - "lab_a": 17.5, - "lab_b": 7.62 - }, - { - "id": "e543bef5-4ca0-44e9-bfca-ee08eced5aa2", + "id": "c4f07667-9a50-46a1-baea-461debee96c1", "brand": "romand", "category": "Lips", "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", @@ -1302,7 +1330,7 @@ "lab_b": 1.78 }, { - "id": "22fc5c7d-c8ab-4ec9-825e-37da3eca9940", + "id": "7e41363a-b02f-43f8-b26f-bf3b361cbd41", "brand": "romand", "category": "Lips", "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", @@ -1316,35 +1344,7 @@ "lab_b": -4.95 }, { - "id": "228f0017-e135-45e7-ab0b-f8bee33fd5a3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "color_name": "12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", - "hex": "#cd8f82", - "lab_l": 65.26, - "lab_a": 21.92, - "lab_b": 16.11 - }, - { - "id": "c0d29700-600e-4376-8e9b-c73debfe6628", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "color_name": "13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", - "hex": "#d6989c", - "lab_l": 69.1, - "lab_a": 23.65, - "lab_b": 7.19 - }, - { - "id": "7c91fa1b-5347-447a-b752-629c915a4188", + "id": "17c6c617-0786-49e2-a9fd-244147c9b4bb", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", @@ -1358,7 +1358,7 @@ "lab_b": -25.5 }, { - "id": "0cee538b-beb7-49ed-91f8-78afa3f1298d", + "id": "6539ae47-e6b6-44c9-b3c6-2e5111e25487", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", @@ -1372,7 +1372,7 @@ "lab_b": 2.14 }, { - "id": "c132431a-8637-4691-a0c7-4aa3b31aa045", + "id": "71929b44-3e3a-40fb-b6b0-e24d33494a30", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", @@ -1386,7 +1386,7 @@ "lab_b": 10.41 }, { - "id": "5b7ad327-a914-4b87-92a4-bcd6efa1ab8b", + "id": "02771332-9d3b-45d5-9de8-4c72b28c7036", "brand": "3CE", "category": "Lips", "name": "[3CE X MUUT] BLUR WATER TINT", @@ -1400,7 +1400,7 @@ "lab_b": -1.58 }, { - "id": "cc78bd55-dce5-4b85-bf4f-fe6fe33f080d", + "id": "879f2aa1-6171-493c-bc4a-2cc9f1a23e7d", "brand": "3CE", "category": "Lips", "name": "[3CE X MUUT] VELVET LIP TINT", @@ -1414,7 +1414,7 @@ "lab_b": 3.13 }, { - "id": "481514ee-4c28-4708-ac49-e5f7f8837c96", + "id": "7d63a456-b37b-4808-8c96-fce7cec936ea", "brand": "3CE", "category": "Lips", "name": "[3CE X MUUT] CASHMERE HUG LIPSTICK", @@ -1428,7 +1428,7 @@ "lab_b": 2.02 }, { - "id": "5bf3fbe4-b850-43fb-9c85-5bd881d07dcc", + "id": "adc8b0bd-6880-4aa3-af69-88431f47d3e2", "brand": "3CE", "category": "Lips", "name": "3CE GLAZY LIP GLOW", @@ -1442,7 +1442,7 @@ "lab_b": 0.93 }, { - "id": "80c092b1-691a-4dc4-86dd-7c29ab3a6d66", + "id": "42bb9de0-fefa-41bf-a50f-8871f5c2812b", "brand": "3CE", "category": "Lips", "name": "3CE BLUR WATER TINT", @@ -1456,7 +1456,7 @@ "lab_b": 2.71 }, { - "id": "e1f21e7d-9f44-47fc-9ce4-42cc01aa19c9", + "id": "b1022180-edab-47ba-9dc9-380631e4dec6", "brand": "3CE", "category": "Lips", "name": "3CE VELVET LIP TINT", @@ -1470,7 +1470,7 @@ "lab_b": 5.38 }, { - "id": "f4c5e948-f91d-4f35-b8a5-ff2ef9e6ad58", + "id": "a99be2f8-5cdc-46c3-8513-c64514fccc23", "brand": "3CE", "category": "Lips", "name": "3CE CASHMERE HUG LIPSTICK", @@ -1484,7 +1484,7 @@ "lab_b": 2.97 }, { - "id": "0cffb8b2-7cbb-4f8a-8764-0619419ca36d", + "id": "2775698a-bb64-4c05-a3ad-e126cc9a635a", "brand": "3CE", "category": "Lips", "name": "3CE HAZY LIP CLAY", @@ -1498,7 +1498,7 @@ "lab_b": 0.0 }, { - "id": "ffb477ee-7eb4-44ea-9c48-8a0a78ddfd74", + "id": "28256242-f9bf-4184-8978-389538c69845", "brand": "3CE", "category": "Lips", "name": "3CE BLUR MATTE LIPSTICK", @@ -1512,7 +1512,7 @@ "lab_b": 0.29 }, { - "id": "fe0f55cd-80d0-4d28-8efe-5c6da1615fa5", + "id": "ad7ff592-6a21-44ce-b5a9-2dab80ab84e6", "brand": "3CE", "category": "Lips", "name": "3CE BLURRING LIQUID LIP", @@ -1526,7 +1526,7 @@ "lab_b": 5.92 }, { - "id": "b2cb0318-1669-4f87-84a9-8d6d2d407e2f", + "id": "1d80bc37-59f0-4136-b967-de5017916f26", "brand": "3CE", "category": "Lips", "name": "3CE CLOUD LIP TINT", @@ -1540,7 +1540,7 @@ "lab_b": 7.06 }, { - "id": "d873f0b7-b044-4fe3-8854-c7f23bfddf34", + "id": "0aa1c3cc-ee5e-416e-bd37-d45a964de98d", "brand": "3CE", "category": "Lips", "name": "3CE DROP GLOW GEL", @@ -1554,7 +1554,7 @@ "lab_b": 3.77 }, { - "id": "5c60e12a-2285-4e93-b55e-eea6a6db06f7", + "id": "5e2aba0c-13d7-4a9b-aff6-b49ac0b79f1d", "brand": "3CE", "category": "Lips", "name": "3CE GLAZE LIP TINT", @@ -1568,7 +1568,7 @@ "lab_b": 2.12 }, { - "id": "5652a687-3549-4cfd-9fef-40ab1fb15625", + "id": "db02f4b8-d7fd-4939-ae9e-45b9ab6f8570", "brand": "3CE", "category": "Lips", "name": "3CE LAZY POP LIP STAIN", @@ -1582,7 +1582,7 @@ "lab_b": 3.23 }, { - "id": "2ccb414b-dd3e-4dd0-b1d9-bffe85903b0d", + "id": "1040a232-6a85-4a37-a552-05969deca1f4", "brand": "3CE", "category": "Lips", "name": "3CE MOOD RECIPE MATTE LIP COLOR", @@ -1596,7 +1596,7 @@ "lab_b": 1.94 }, { - "id": "d7e80c03-3146-4921-8ab5-98b7626c1fe8", + "id": "a780d52f-05a3-4faa-b238-047f08a8144a", "brand": "3CE", "category": "Lips", "name": "3CE SHINE REFLECTOR", @@ -1610,7 +1610,7 @@ "lab_b": 3.68 }, { - "id": "e5ada97b-0c73-44c4-95a9-084925ef6ed6", + "id": "21fd2193-71ec-43fc-a190-c2f332ebf75e", "brand": "3CE", "category": "Lips", "name": "3CE SOFT MATTE LIPSTICK", @@ -1624,7 +1624,7 @@ "lab_b": 2.91 }, { - "id": "da7bef63-b905-42bf-974d-2a8401cf9b1d", + "id": "5ad69829-0a13-4904-b261-05b7aac4a4a9", "brand": "3CE", "category": "Lips", "name": "3CE SYRUP LAYERING TINT", @@ -1638,7 +1638,7 @@ "lab_b": 1.62 }, { - "id": "a7d87635-649c-4ca5-bc49-aa824cfc9675", + "id": "10fd5e34-7319-4bcb-87e1-b4d98358365e", "brand": "3CE", "category": "blush", "name": "[3CE X MUUT] BOUNCY BLUR BALM", @@ -1652,7 +1652,7 @@ "lab_b": 5.13 }, { - "id": "e13dc09e-9417-4682-a144-98113be0d2bf", + "id": "86b0145e-30d0-4be6-a865-e6bedac22eef", "brand": "3CE", "category": "blush", "name": "3CE LAYER-IT-ALL BLUSH PALETTE", @@ -1666,7 +1666,7 @@ "lab_b": 3.63 }, { - "id": "021a18ac-822c-41de-8f13-665ca4649ea6", + "id": "81c93ecd-91cc-434b-9956-814b94fd0104", "brand": "3CE", "category": "blush", "name": "3CE BLUSHLIGHTER", @@ -1680,7 +1680,7 @@ "lab_b": 0.71 }, { - "id": "ccffdf60-43c9-4cc0-acfd-56d6363f6e74", + "id": "715f6755-eb3d-44b3-bac8-8888a587a529", "brand": "3CE", "category": "blush", "name": "3CE FACE BLUSH", @@ -1694,7 +1694,7 @@ "lab_b": 2.52 }, { - "id": "d93d7a10-a055-4443-ab9b-046b590f245f", + "id": "99768c9e-087b-4614-b270-119fe54b523d", "brand": "3CE", "category": "blush", "name": "3CE NEW TAKE FACE BLUSHER", @@ -1708,7 +1708,7 @@ "lab_b": 5.7 }, { - "id": "59ba707d-7c08-4786-84d3-a8ddfe795c83", + "id": "114f25c6-4406-407c-88c8-5f414b3573ef", "brand": "3CE", "category": "blush", "name": "3CE SHEER LIQUID BLUSHER", @@ -1722,7 +1722,7 @@ "lab_b": 2.35 }, { - "id": "9c920444-47ea-48c6-9937-b8160cdb85f2", + "id": "b3870433-e09a-447b-bb93-30622bfb0ec5", "brand": "3CE", "category": "eyeshadow", "name": "3CE COLOR GRID EYESHADOW", @@ -1736,7 +1736,7 @@ "lab_b": 0.11 }, { - "id": "4b5ec573-af0a-4295-a5b3-40006ca12882", + "id": "20346dac-c67c-461b-8c88-f63062904701", "brand": "3CE", "category": "eyeshadow", "name": "[3CE X MUUT] MULTI EYE COLOR PALETTE", @@ -1750,7 +1750,7 @@ "lab_b": -7.92 }, { - "id": "70430544-bd86-4d41-ac2e-49827a472aed", + "id": "6b78f3a4-4a40-44a0-856f-b4065b4c98fa", "brand": "3CE", "category": "eyeshadow", "name": "3CE LAYER-IT-ALL EYESHADOW PALETTE", @@ -1764,7 +1764,7 @@ "lab_b": 2.22 }, { - "id": "6330673b-9616-40d3-9fec-bed08d75dcc1", + "id": "24887d17-8580-4809-aa90-ad903e400951", "brand": "3CE", "category": "eyeshadow", "name": "3CE MULTI EYE COLOR PALETTE", @@ -1778,7 +1778,7 @@ "lab_b": 3.41 }, { - "id": "a8ed8f6d-a884-46fe-8ba7-a679bc57a72d", + "id": "eed1502b-07c7-472d-b7e4-9cd7de630766", "brand": "3CE", "category": "eyeshadow", "name": "3CE MINI MULTI EYE COLOR PALETTE", @@ -1792,7 +1792,7 @@ "lab_b": 5.93 }, { - "id": "64105de9-e47f-4387-9ae8-c76493919a47", + "id": "a4c0a977-cced-4ce8-abea-f718dcff8325", "brand": "3CE", "category": "eyeshadow", "name": "3CE ALL ROUNDER FACE PALETTE", @@ -1806,7 +1806,7 @@ "lab_b": -1.16 }, { - "id": "dead0110-27cb-4189-9e42-27dc0370563a", + "id": "aae2b01b-f84f-4bcf-9979-88ab9b4900cc", "brand": "3CE", "category": "eyeshadow", "name": "3CE EYE SWITCH", @@ -1820,7 +1820,7 @@ "lab_b": -13.34 }, { - "id": "b6ff218b-0a66-4435-8304-57d44e4698c4", + "id": "428205ad-0aee-4888-ad22-5a3640c5afc3", "brand": "3CE", "category": "eyeshadow", "name": "3CE LIQUID PRIMER EYE SHADOW", @@ -1834,7 +1834,7 @@ "lab_b": 5.0 }, { - "id": "e19d7eb9-bfab-40e4-839d-e7ff11df8c21", + "id": "22b7a16e-3bf7-4385-a03e-0655fa746839", "brand": "3CE", "category": "eyeshadow", "name": "3CE NEW TAKE EYESHADOW PALETTE", @@ -1848,7 +1848,7 @@ "lab_b": 2.23 }, { - "id": "bc5856bb-7e4f-45b3-8be8-babc01c2acb7", + "id": "ff300de4-808b-40b8-a8c2-dd12aea92dad", "brand": "3CE", "category": "eyeshadow", "name": "3CE XL EYESHADOW PALETTE", diff --git a/static/data/all_products_hex_update_tempk=4_2_1_1.json b/static/data/all_products_hex_update_tempk=4_2_1_1.json deleted file mode 100644 index 7a77375..0000000 --- a/static/data/all_products_hex_update_tempk=4_2_1_1.json +++ /dev/null @@ -1,1864 +0,0 @@ -[ - { - "id": "21bea116-0f90-48a1-8372-4b546978c423", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", - "color_name": "30 보늬 밤", - "image": "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000K&option_name=30%20%EB%B3%B4%EB%8A%AC%20%EB%B0%A4", - "hex": "#ba7363", - "lab_l": 55.69, - "lab_a": 26.18, - "lab_b": 20.66 - }, - { - "id": "9a5fe61e-ba9f-4875-9fc5-f502034fc633", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", - "color_name": "29 조선 무화과", - "image": "https://romand.io/images/product/994/vp2VylRiIA3287NecXLwESdOZlPL1uQ0uDbl1GT6.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000J&option_name=29%20%EC%A1%B0%EC%84%A0%20%EB%AC%B4%ED%99%94%EA%B3%BC", - "hex": "#e17773", - "lab_l": 62.03, - "lab_a": 40.65, - "lab_b": 20.96 - }, - { - "id": "8f45796f-298e-46c0-aa7a-145eb9dea9d4", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", - "color_name": "28 설화 딸기", - "image": "https://romand.io/images/product/994/0y64Ojupqdu8ZW8Z4KZ4ucrIKrdf3lpueojfZtcK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000I&option_name=28%20%EC%84%A4%ED%99%94%20%EB%94%B8%EA%B8%B0", - "hex": "#ef89a0", - "lab_l": 68.59, - "lab_a": 41.37, - "lab_b": 4.97 - }, - { - "id": "1a66c7c0-18da-459a-9e7e-3f3e162a0810", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", - "color_name": "27 허니 듀 멜론", - "image": "https://romand.io/images/product/994/h4KEgqv0XejM1hZxnxZF0SPOcsingVAlg9LJC2TR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000H&option_name=27%20%ED%97%88%EB%8B%88%20%EB%93%80%20%EB%A9%9C%EB%A1%A0", - "hex": "#e68e82", - "lab_l": 67.86, - "lab_a": 32.05, - "lab_b": 20.56 - }, - { - "id": "b4a597d4-7a85-493d-b00a-6964a897c1e7", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", - "color_name": "26 신비 복숭아", - "image": "https://romand.io/images/product/994/aL8OhiGRHY20X4WS3q8mKmqKNHCdBDYAhPvi88oy.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000G&option_name=26%20%EC%8B%A0%EB%B9%84%20%EB%B3%B5%EC%88%AD%EC%95%84", - "hex": "#ef5c66", - "lab_l": 58.95, - "lab_a": 57.27, - "lab_b": 24.63 - }, - { - "id": "66ffbc21-3859-426b-8b4a-81acfe32056a", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", - "color_name": "04 피그 피그", - "image": "https://romand.io/images/product/958/hVrWzeIAuVwXIUXGqSPfedtnS9ON0FiAC859PKgD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000D&option_name=04%20%ED%94%BC%EA%B7%B8%20%ED%94%BC%EA%B7%B8", - "hex": "#a74054", - "lab_l": 42.04, - "lab_a": 44.08, - "lab_b": 10.49 - }, - { - "id": "36b1325d-1b14-4e4e-8679-6fafac4eb813", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", - "color_name": "03 베어 그레이프", - "image": "https://romand.io/images/product/958/Ax5b75vAi528eIiYmonRqylpfzrKROrVZVxnUa5w.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000C&option_name=03%20%EB%B2%A0%EC%96%B4%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84", - "hex": "#c26573", - "lab_l": 54.05, - "lab_a": 38.5, - "lab_b": 9.23 - }, - { - "id": "a91d0c50-5e01-451f-b104-0ab2aa6f7ad6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", - "color_name": "02 누카다미아", - "image": "https://romand.io/images/product/958/nO3CrysMVL9U55KfxZurkmyIcryGpKjNZrYmDMr0.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000B&option_name=02%20%EB%88%84%EC%B9%B4%EB%8B%A4%EB%AF%B8%EC%95%84", - "hex": "#bd594b", - "lab_l": 50.07, - "lab_a": 39.1, - "lab_b": 27.24 - }, - { - "id": "4f9e71e6-d66a-487e-b1b5-95a2da49c9e3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", - "color_name": "01 포멜로 스킨", - "image": "https://romand.io/images/product/958/KrjjrJXJNXjcmUKPkXrWAyobbvyVZxEaaiGAsDaS.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000A&option_name=01%20%ED%8F%AC%EB%A9%9C%EB%A1%9C%20%EC%8A%A4%ED%82%A8", - "hex": "#d78b6f", - "lab_l": 65.01, - "lab_a": 25.9, - "lab_b": 26.95 - }, - { - "id": "b79901fb-6dac-4511-9767-4bd21704e294", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", - "color_name": "06 필링 앵두", - "image": "https://romand.io/images/product/958/OA70z7jUdDOWeoUQEhsm61uHilEXmHkEMSpnkIJ3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000F&option_name=06%20%ED%95%84%EB%A7%81%20%EC%95%B5%EB%91%90", - "hex": "#df666b", - "lab_l": 58.28, - "lab_a": 47.65, - "lab_b": 20.41 - }, - { - "id": "0d604060-193d-49fc-8bce-988091301390", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", - "color_name": "24 베어 쥬시 오", - "image": "https://romand.io/images/product/958/HVs9RVIp3xylieHLYevVIjGWwe6mlre889pPsnoQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000X&option_name=24%20%EB%B2%A0%EC%96%B4%20%EC%A5%AC%EC%8B%9C%20%EC%98%A4", - "hex": "#f6905e", - "lab_l": 69.72, - "lab_a": 34.15, - "lab_b": 42.82 - }, - { - "id": "a5ffebb0-1d7b-4a46-adaa-4d56f6edad19", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", - "color_name": "23 피치 피치 미", - "image": "https://romand.io/images/product/958/kOY2uHHIYeeicQZh8S162C63jtojxgS0EAq9ZR8H.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000W&option_name=23%20%ED%94%BC%EC%B9%98%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "hex": "#f07a8a", - "lab_l": 65.19, - "lab_a": 46.8, - "lab_b": 12.56 - }, - { - "id": "2614d23d-96ed-4d9b-b1f4-21533aa7268a", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", - "color_name": "22 도토리 밤", - "image": "https://romand.io/images/product/958/yMaewlQ2iW42hrhNZw2kLlG40dD9JY5ZRgWIqIdi.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000V&option_name=22%20%EB%8F%84%ED%86%A0%EB%A6%AC%20%EB%B0%A4", - "hex": "#c64d5c", - "lab_l": 49.6, - "lab_a": 49.42, - "lab_b": 16.83 - }, - { - "id": "5873a043-e3e5-49c3-b727-1ef9b1efaa99", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", - "color_name": "21 그레이프 밤", - "image": "https://romand.io/images/product/958/inczn5S3hX1dOAt7UCkPINdupgH6qbJZ1xVQpPET.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000U&option_name=21%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84%20%EB%B0%A4", - "hex": "#c72c62", - "lab_l": 45.4, - "lab_a": 62.65, - "lab_b": 7.35 - }, - { - "id": "906deddd-6ddf-47be-ae00-fd1bdf0e676f", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", - "color_name": "20 쥬쥬 피그", - "image": "https://romand.io/images/product/958/1I9OyW4j0wijPOsEbaoljzreN4aGXUTRlcAK7L04.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000T&option_name=20%20%EC%A5%AC%EC%A5%AC%20%ED%94%BC%EA%B7%B8", - "hex": "#e66f7e", - "lab_l": 61.4, - "lab_a": 47.49, - "lab_b": 13.9 - }, - { - "id": "2f2cdf81-a944-4f49-b64c-d49ed7875792", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", - "color_name": "19 썸머 센트", - "image": "https://romand.io/images/product/958/2OBJbPaANmkScXjLtjRX48shuuCgsYE9p1j9Nbz1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000S&option_name=19%20%EC%8D%B8%EB%A8%B8%20%EC%84%BC%ED%8A%B8", - "hex": "#ee7b86", - "lab_l": 65.02, - "lab_a": 45.19, - "lab_b": 14.55 - }, - { - "id": "40970f84-0955-4b50-90bb-a82d4561e153", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", - "color_name": "17 다크 코코넛", - "image": "https://romand.io/images/product/958/XP3eLtN4ZcjUmvyvmgyXiaeDZnwxYJ2HaDjeffdb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000Q&option_name=17%20%EB%8B%A4%ED%81%AC%20%EC%BD%94%EC%BD%94%EB%84%9B", - "hex": "#87382d", - "lab_l": 34.33, - "lab_a": 33.04, - "lab_b": 23.6 - }, - { - "id": "0d1df210-4905-4986-8dc0-6a844de0bcd9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", - "color_name": "16 플럼 콕", - "image": "https://romand.io/images/product/958/MeHqAPbIXbv1DYd4ttfVFpdODslPH4cKYzG8Amsb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000P&option_name=16%20%ED%94%8C%EB%9F%BC%20%EC%BD%95", - "hex": "#8b3249", - "lab_l": 34.5, - "lab_a": 39.87, - "lab_b": 6.16 - }, - { - "id": "9f89ea8e-c5d3-40a9-a9ff-f81d7f163445", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", - "color_name": "15 베어 피그", - "image": "https://romand.io/images/product/958/EfEL2EDNWkUFzS741F9hN9M7fFYUvjTIQ4X9GX6Y.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000O&option_name=15%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "hex": "#ac4b62", - "lab_l": 45.2, - "lab_a": 41.95, - "lab_b": 6.43 - }, - { - "id": "9f9e3060-c423-4de2-ad29-66cab3a560ff", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", - "color_name": "14 아몬드 로즈", - "image": "https://romand.io/images/product/958/oxJxwHns1GrJk0WAn9QXxQiil0CalGNZceDsluQg.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000N&option_name=14%20%EC%95%84%EB%AA%AC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "hex": "#b24a4d", - "lab_l": 45.5, - "lab_a": 42.61, - "lab_b": 19.79 - }, - { - "id": "a53dc816-28d8-493b-a320-6b099ac9974d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", - "color_name": "13 잇 도토리", - "image": "https://romand.io/images/product/958/QK4geWmsw4P0tJNFQEOeHgdrC8PD89ABuP6xCIBx.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000M&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "hex": "#9f3b2c", - "lab_l": 39.04, - "lab_a": 40.65, - "lab_b": 30.8 - }, - { - "id": "9ae2ef4f-9e2b-48c2-b605-e443168131aa", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", - "color_name": "12 애플 브라운", - "image": "https://romand.io/images/product/958/B06iurpARo7agGql1klQnt9XEO2blsvJFgd73Yf3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000L&option_name=12%20%EC%95%A0%ED%94%8C%20%EB%B8%8C%EB%9D%BC%EC%9A%B4", - "hex": "#d36349", - "lab_l": 55.34, - "lab_a": 42.26, - "lab_b": 35.62 - }, - { - "id": "caabd5bb-195f-4225-b83d-b95f586b2578", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", - "color_name": "11 파파야 잼", - "image": "https://romand.io/images/product/958/oJgHkcoeViDMvaiM7ZDEAGAOHG3BJ2L3F4rv9ZuD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000K&option_name=11%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "hex": "#e9634d", - "lab_l": 58.78, - "lab_a": 50.52, - "lab_b": 38.35 - }, - { - "id": "06c2254d-8d72-476d-845f-3ef1674071f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "color_name": "10 베어 애프리콧", - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7", - "hex": "#f4756d", - "lab_l": 64.21, - "lab_a": 48.04, - "lab_b": 27.72 - }, - { - "id": "11f11c8e-f3fe-4fc1-937e-f2067a768e73", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "color_name": "09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", - "hex": "#dc6e69", - "lab_l": 59.33, - "lab_a": 42.47, - "lab_b": 22.9 - }, - { - "id": "2535ace4-3ebe-4397-b1ab-3f7ec2c4bdd9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "color_name": "08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "hex": "#d64f44", - "lab_l": 52.19, - "lab_a": 52.38, - "lab_b": 34.77 - }, - { - "id": "be91e7bf-9b23-46cd-8ff9-66f842f0571d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "color_name": "07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", - "hex": "#a8242e", - "lab_l": 37.46, - "lab_a": 52.8, - "lab_b": 28.19 - }, - { - "id": "eb76ec0d-e969-4245-a2ad-61066804a775", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "color_name": "05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", - "hex": "#c94e4c", - "lab_l": 49.97, - "lab_a": 48.82, - "lab_b": 26.92 - }, - { - "id": "60a49f29-76f9-4912-b405-1cbbfaf8909b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "color_name": "06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", - "hex": "#d08493", - "lab_l": 63.36, - "lab_a": 31.15, - "lab_b": 4.28 - }, - { - "id": "199e9f32-f575-4281-8903-66bd875228e9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "color_name": "05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", - "hex": "#d4837c", - "lab_l": 63.08, - "lab_a": 30.37, - "lab_b": 17.02 - }, - { - "id": "6e1126de-2ef5-413a-84a5-3cb6642e03d9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "color_name": "04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", - "hex": "#eb9a8a", - "lab_l": 71.29, - "lab_a": 28.46, - "lab_b": 20.93 - }, - { - "id": "71ce99ca-c86e-427e-bd19-f59622ad7cb1", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "color_name": "03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "hex": "#ea818e", - "lab_l": 65.87, - "lab_a": 41.58, - "lab_b": 11.13 - }, - { - "id": "6a3f15be-f9f4-4151-8088-b81618bdc4f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "color_name": "02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", - "hex": "#df8494", - "lab_l": 65.23, - "lab_a": 36.77, - "lab_b": 6.63 - }, - { - "id": "ddcb78a1-8b88-4d01-afd9-42c81209b3ba", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "color_name": "01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", - "hex": "#eb947f", - "lab_l": 69.74, - "lab_a": 30.49, - "lab_b": 24.86 - }, - { - "id": "89f24b19-9513-4389-85a5-c8acabcbec9e", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "color_name": "30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", - "hex": "#db968f", - "lab_l": 68.65, - "lab_a": 25.06, - "lab_b": 14.23 - }, - { - "id": "8bb4c2be-c633-40ea-8b90-51fb34270472", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "color_name": "10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", - "hex": "#d09177", - "lab_l": 65.75, - "lab_a": 20.68, - "lab_b": 23.36 - }, - { - "id": "3651ff14-cd6c-4366-a794-8362961eb0b6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "color_name": "11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", - "hex": "#d89687", - "lab_l": 68.14, - "lab_a": 22.94, - "lab_b": 17.91 - }, - { - "id": "dd279635-cb31-4111-947d-9562dfc3aa84", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "color_name": "12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "hex": "#d38d8e", - "lab_l": 65.64, - "lab_a": 26.75, - "lab_b": 10.41 - }, - { - "id": "0ed05f59-e439-4367-8951-99bb0e6e99ad", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "color_name": "13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", - "hex": "#cf836d", - "lab_l": 62.17, - "lab_a": 26.84, - "lab_b": 24.12 - }, - { - "id": "21890fc3-32e9-4c93-8208-f37f41f4b379", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "color_name": "14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", - "hex": "#db6e61", - "lab_l": 59.05, - "lab_a": 41.44, - "lab_b": 27.06 - }, - { - "id": "660a7198-216d-4bff-aa76-e1f332be81ff", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "color_name": "15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", - "hex": "#e26f4e", - "lab_l": 59.97, - "lab_a": 42.25, - "lab_b": 38.97 - }, - { - "id": "030b8f73-d685-4bcc-81ce-3e4cff60badf", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "color_name": "펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", - "hex": "#ce466c", - "lab_l": 50.2, - "lab_a": 56.41, - "lab_b": 8.22 - }, - { - "id": "43abb70c-37b9-423f-90bf-958bc1ad4e1a", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "color_name": "36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", - "hex": "#d8887f", - "lab_l": 64.76, - "lab_a": 29.56, - "lab_b": 17.71 - }, - { - "id": "d78da058-47ff-4fcb-b0c5-dfc3f73bc9fa", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "color_name": "17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", - "hex": "#463c42", - "lab_l": 26.53, - "lab_a": 5.59, - "lab_b": -2.08 - }, - { - "id": "f71e86f6-e2d1-4300-abcc-f0d3313c6e72", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "color_name": "16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", - "hex": "#cd5354", - "lab_l": 51.62, - "lab_a": 48.48, - "lab_b": 24.48 - }, - { - "id": "129d267f-2f89-45bb-98b9-fc9c144287a0", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "color_name": "06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "hex": "#a84c4f", - "lab_l": 44.32, - "lab_a": 38.12, - "lab_b": 16.72 - }, - { - "id": "acc203c5-1625-46b2-a9d8-bb453d0ac930", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", - "color_name": "09 피오니즈", - "image": "https://romand.io/images/product/757/yJp29K9lzByeOCbmaKahgMnnJKpXIqxNxDHPDUo5.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000P&option_name=09%20%ED%94%BC%EC%98%A4%EB%8B%88%EC%A6%88", - "hex": "#ebe1e3", - "lab_l": 90.35, - "lab_a": 3.74, - "lab_b": 0.24 - }, - { - "id": "0360c61a-b1ba-449d-9fc5-bf473ea088ab", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", - "color_name": "08 코랄리아", - "image": "https://romand.io/images/product/757/91eoj10Pz9IVNHamBY3Xed6tIjMJchIbqjbTQZXt.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000O&option_name=08%20%EC%BD%94%EB%9E%84%EB%A6%AC%EC%95%84", - "hex": "#e9e2e0", - "lab_l": 90.37, - "lab_a": 2.02, - "lab_b": 1.82 - }, - { - "id": "d913b2cb-3f1d-4865-99c9-104b681fa7a6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", - "color_name": "05 피치 미", - "image": "https://romand.io/images/product/890/2XljHRzFt8z6KtKJB59rxGkn0AukfHVkMp7MqRuV.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000C&option_name=05%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "hex": "#f66775", - "lab_l": 62.15, - "lab_a": 55.89, - "lab_b": 20.49 - }, - { - "id": "d51fdbaf-1cf3-4d69-b609-d2e82147da6c", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", - "color_name": "04 드래곤 핑크", - "image": "https://romand.io/images/product/890/PGGDHAoQsh980WHj9zys2vbds0snYQMhizUie6PY.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000B&option_name=04%20%20%EB%93%9C%EB%9E%98%EA%B3%A4%20%ED%95%91%ED%81%AC", - "hex": "#f92e83", - "lab_l": 55.82, - "lab_a": 77.62, - "lab_b": 3.49 - }, - { - "id": "58cfa7d4-9e93-4db2-849e-b640ca8385f6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", - "color_name": "29 파파야 잼", - "image": "https://romand.io/images/product/49/JV8NqUVwLthMiBxlmAbQ65XLjXRHXt0Qf1nqKYqP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00OG&option_name=29%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "hex": "#e66a55", - "lab_l": 59.7, - "lab_a": 46.61, - "lab_b": 34.95 - }, - { - "id": "6b18d829-8fa5-482f-ac74-bf1032fc8c67", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", - "color_name": "28 베어 피그", - "image": "https://romand.io/images/product/49/PvDFiup7g5fJvEfkiJNyn73CBOkZp2VucBuNZhSq.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00NX&option_name=28%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "hex": "#d96987", - "lab_l": 58.61, - "lab_a": 46.88, - "lab_b": 4.48 - }, - { - "id": "f0af499d-b2a3-4201-b0a4-0cffb06f69d1", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", - "color_name": "06 카야 피그", - "image": "https://romand.io/images/product/655/vl3Kp3qFAEe2ermmW7L4cuJoBXrxXEyZ56YTaWL4.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FI&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "hex": "#d18486", - "lab_l": 63.16, - "lab_a": 29.85, - "lab_b": 11.4 - }, - { - "id": "56cc8ba6-3059-46b7-9fd2-84bbf1b9ebcd", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", - "color_name": "01 코코 누드", - "image": "https://romand.io/images/product/655/fkMWkrsCoeqGyO1onb5tkOvgIaxVvIbR6VdTPRoV.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FD&option_name=01%20%EC%BD%94%EC%BD%94%20%EB%88%84%EB%93%9C", - "hex": "#e8ae9d", - "lab_l": 75.99, - "lab_a": 18.9, - "lab_b": 17.0 - }, - { - "id": "79e08d1c-19a3-4377-a710-cba89b246709", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", - "color_name": "02 러비 핑크", - "image": "https://romand.io/images/product/655/4aMjABkiueyfVm12habY4NR4M48s7sWfJrLMMawd.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FE&option_name=02%20%EB%9F%AC%EB%B9%84%20%ED%95%91%ED%81%AC", - "hex": "#e9b7bf", - "lab_l": 79.02, - "lab_a": 19.23, - "lab_b": 2.89 - }, - { - "id": "450cb4de-e40c-4301-bf15-d2cb87b58650", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", - "color_name": "03 소르베 밤", - "image": "https://romand.io/images/product/655/1vV6pMdBV627mX2QSq4aPdLeQnbopcnrLXChumBo.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FF&option_name=03%20%EC%86%8C%EB%A5%B4%EB%B2%A0%20%EB%B0%A4", - "hex": "#e99990", - "lab_l": 70.96, - "lab_a": 28.9, - "lab_b": 17.13 - }, - { - "id": "587eecaa-6532-4644-9bd2-8c8bf1e8a195", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", - "color_name": "04 히피 베리", - "image": "https://romand.io/images/product/655/otoAh9xx2OvsmaAKFhdhVxd71Q3FoI5rCezxqpvb.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FG&option_name=04%20%ED%9E%88%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "hex": "#c82f3f", - "lab_l": 45.19, - "lab_a": 59.74, - "lab_b": 28.64 - }, - { - "id": "d4e40595-6024-4c1d-b159-b3213f56f61f", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", - "color_name": "05 누가 샌드", - "image": "https://romand.io/images/product/655/kpZBguUaYBShV9UjCqjxiejfWSAm0ZXFQybihogt.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FH&option_name=05%20%EB%88%84%EA%B0%80%20%EC%83%8C%EB%93%9C", - "hex": "#d09383", - "lab_l": 66.46, - "lab_a": 20.96, - "lab_b": 17.67 - }, - { - "id": "247f4663-5967-4872-88c6-577fabda407c", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", - "color_name": "07 모브 휩", - "image": "https://romand.io/images/product/655/lw6TIt1IFTdWl2s4no8tHeLN2YxgM9tdK1wYUips.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FJ&option_name=07%20%EB%AA%A8%EB%B8%8C%20%ED%9C%A9", - "hex": "#ae5661", - "lab_l": 47.65, - "lab_a": 36.97, - "lab_b": 10.54 - }, - { - "id": "b97ba469-b7a2-4e62-95f3-2e8049600841", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", - "color_name": "16 코니 소다", - "image": "https://romand.io/images/product/515/PKURcokT6yaSMCghl5QJNBTyIYCJqWCEjA1fjrsw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/515/?variant_code=P00000TV000C&option_name=16%20%EC%BD%94%EB%8B%88%20%EC%86%8C%EB%8B%A4", - "hex": "#af3235", - "lab_l": 40.66, - "lab_a": 50.48, - "lab_b": 28.08 - }, - { - "id": "1f4fd646-944b-47ab-9924-987e89ad8c93", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", - "color_name": "02 나이트 마린", - "image": "https://romand.io/images/product/817/SefjWR5iYfiWloM9IUu083u2ZO9f03ppLuS2wGpq.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000F&option_name=02%20%EB%82%98%EC%9D%B4%ED%8A%B8%20%EB%A7%88%EB%A6%B0", - "hex": "#c8acbf", - "lab_l": 73.25, - "lab_a": 13.4, - "lab_b": -5.92 - }, - { - "id": "1f0de0fb-496b-49c0-926b-539c17e44758", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", - "color_name": "03 페어리 샤베트", - "image": "https://romand.io/images/product/817/y3vX9lxV6fhJZEZylr2hOLWjEDksT9Fq4WJONf9c.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000G&option_name=03%20%ED%8E%98%EC%96%B4%EB%A6%AC%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "hex": "#d3c6cf", - "lab_l": 81.15, - "lab_a": 6.12, - "lab_b": -2.85 - }, - { - "id": "58bb7b88-83ce-4eaf-8013-7ee165515384", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", - "color_name": "04 허니 샤베트", - "image": "https://romand.io/images/product/817/g0Jo8nHxXolDshoOkWVJpJVFqdFPG6wgE0WJXCRZ.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000H&option_name=04%20%ED%97%88%EB%8B%88%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "hex": "#fac77e", - "lab_l": 83.27, - "lab_a": 9.46, - "lab_b": 43.26 - }, - { - "id": "c565f605-2955-43d5-91c8-3e060e7339d9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", - "color_name": "05 피치 샤베트", - "image": "https://romand.io/images/product/817/e1zRzltrbR79ByQNXXqyOuaPV2W268gwdd3QKRds.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000I&option_name=05%20%ED%94%BC%EC%B9%98%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "hex": "#f5d6c7", - "lab_l": 87.79, - "lab_a": 8.44, - "lab_b": 11.37 - }, - { - "id": "679e2b2b-4506-41f4-a318-bb4ecfefc1a3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", - "color_name": "06 클리어 젤리", - "image": "https://romand.io/images/product/817/19z3uTts0K4r09iHf3DKMSiNkT7dtRSV4LT0Q93Z.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000J&option_name=06%20%ED%81%B4%EB%A6%AC%EC%96%B4%20%EC%A0%A4%EB%A6%AC", - "hex": "#bebec1", - "lab_l": 77.06, - "lab_a": 0.56, - "lab_b": -1.5 - }, - { - "id": "c232563b-a8c5-45c0-8549-bebe80e0a950", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", - "color_name": "13 잇 도토리", - "image": "https://romand.io/images/product/300/GDNb1zDIFg6oP0su1vDRlKUc2T8aLWStdk4Tfv4o.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000I&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "hex": "#b55641", - "lab_l": 48.09, - "lab_a": 36.86, - "lab_b": 30.28 - }, - { - "id": "01842932-9555-4609-b422-c1201599afe0", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", - "color_name": "11 핑크 펌킨", - "image": "https://romand.io/images/product/300/HbMLPwuYY0vtbEZHE2e0Fsq9CDmXCqaZMY3LXmqR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000G&option_name=11%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "hex": "#c15658", - "lab_l": 50.34, - "lab_a": 43.09, - "lab_b": 20.07 - }, - { - "id": "5c2a9cf0-3ef3-4dab-8ce5-4e699b8fbe2b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", - "color_name": "10 누디 피넛", - "image": "https://romand.io/images/product/300/AM3zv8bwCn0OPbUqFxyXnt9t78kSUy088r31xR7K.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000F&option_name=10%20%EB%88%84%EB%94%94%20%ED%94%BC%EB%84%9B", - "hex": "#cd6d62", - "lab_l": 56.88, - "lab_a": 36.75, - "lab_b": 23.27 - }, - { - "id": "c621725c-51e5-4cef-b6ef-cf750847bb19", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", - "color_name": "02 레드 드롭", - "image": "https://romand.io/images/product/343/83hNUBzKzJQlENPe1SzACyEp4LRLHs829TPrKJL1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CJ&option_name=02%20%EB%A0%88%EB%93%9C%20%EB%93%9C%EB%A1%AD", - "hex": "#de1f25", - "lab_l": 47.81, - "lab_a": 68.94, - "lab_b": 47.46 - }, - { - "id": "5948abf0-990f-48f0-978d-cf4ed09cd219", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", - "color_name": "03 브릭 리버", - "image": "https://romand.io/images/product/343/hQexC85XR5qR4DkMetrs1SiMg5Y6RvUMMo90H2Nk.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CK&option_name=03%20%EB%B8%8C%EB%A6%AD%20%EB%A6%AC%EB%B2%84", - "hex": "#c54235", - "lab_l": 47.01, - "lab_a": 51.39, - "lab_b": 36.49 - }, - { - "id": "8580e08a-96ac-48fb-a1c7-e8a14f289a06", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", - "color_name": "04 빈티지 오션", - "image": "https://romand.io/images/product/343/BZgkQP0CTQ1Wb8FTVcLlVBqfPwSBpyZ3BeEQVdCu.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CL&option_name=04%20%EB%B9%88%ED%8B%B0%EC%A7%80%20%EC%98%A4%EC%85%98", - "hex": "#882d25", - "lab_l": 32.36, - "lab_a": 38.32, - "lab_b": 26.18 - }, - { - "id": "ba467c69-d3ed-4c8b-8630-4d5773759841", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", - "color_name": "05 로즈 스플래쉬", - "image": "https://romand.io/images/product/343/Zgt57l9jOIHt0W047LxwsfxW4r24ARMearETLLC2.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CM&option_name=05%20%EB%A1%9C%EC%A6%88%20%EC%8A%A4%ED%94%8C%EB%9E%98%EC%89%AC", - "hex": "#e54455", - "lab_l": 53.44, - "lab_a": 62.52, - "lab_b": 27.04 - }, - { - "id": "9ae57ab3-3bc8-47ae-a944-651bba48c6b9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", - "color_name": "08 로제 스트림", - "image": "https://romand.io/images/product/343/q0xStU1kzFEXTy8AziwIyiF2WShatd1rfNwkMNzJ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CN&option_name=08%20%EB%A1%9C%EC%A0%9C%20%EC%8A%A4%ED%8A%B8%EB%A6%BC", - "hex": "#bd4a50", - "lab_l": 47.36, - "lab_a": 46.75, - "lab_b": 20.78 - }, - { - "id": "a19ebd66-a30b-47df-a88a-6155d782255b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", - "color_name": "00 메테오 트랙", - "image": "https://romand.io/images/product/451/MiJFUm3pVt8PRHg5dBak9UJMYVcTvtuWFqoFaMqb.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BB&option_name=00%20%EB%A9%94%ED%85%8C%EC%98%A4%20%ED%8A%B8%EB%9E%99", - "hex": "#d4d1d7", - "lab_l": 84.23, - "lab_a": 2.12, - "lab_b": -2.59 - }, - { - "id": "679545da-ced9-4fbb-a2e8-5aae8e3704af", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", - "color_name": "01 산호 크러쉬", - "image": "https://romand.io/images/product/451/TM1sDRWJvxsVuJaYtXOQ2C1sB3mq7icZuaJBHZvC.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BC&option_name=01%20%EC%82%B0%ED%98%B8%20%ED%81%AC%EB%9F%AC%EC%89%AC", - "hex": "#fac1b0", - "lab_l": 82.7, - "lab_a": 18.07, - "lab_b": 16.43 - }, - { - "id": "9c791fc9-0c76-46aa-a0be-692de6718109", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", - "color_name": "04 칠리 업", - "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85", - "hex": "#ad4540", - "lab_l": 43.53, - "lab_a": 42.24, - "lab_b": 24.91 - }, - { - "id": "a6a4f541-4e96-4d05-88da-a3a22cedf463", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "color_name": "06 툴리안", - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88", - "hex": "#c7577b", - "lab_l": 52.28, - "lab_a": 48.16, - "lab_b": 2.05 - }, - { - "id": "37c155d8-f204-4a50-96e9-0a8161b96c90", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "color_name": "07 체리 웨이", - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4", - "hex": "#e14653", - "lab_l": 52.97, - "lab_a": 60.44, - "lab_b": 27.47 - }, - { - "id": "550049c9-a8a7-4c9a-a45d-b0b5d7ff5d12", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "color_name": "03 이프 로즈", - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88", - "hex": "#ca5d5e", - "lab_l": 53.16, - "lab_a": 43.42, - "lab_b": 20.56 - }, - { - "id": "ffe21a6a-3fe2-43fe-a017-c75de910d409", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 05 딤모브", - "color_name": "05 딤모브", - "image": "https://romand.io/images/product/847/Yvq1cQTmyhIhO1bi3jqhmdS7I7EboT3muVjsDvRt.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GX&option_name=05%20%EB%94%A4%EB%AA%A8%EB%B8%8C", - "hex": "#b07c7f", - "lab_l": 57.25, - "lab_a": 20.66, - "lab_b": 6.48 - }, - { - "id": "aaee454a-4385-4c6b-80d6-1aa588e76f4b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "color_name": "02 너티 베이그", - "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8", - "hex": "#c47f6c", - "lab_l": 59.89, - "lab_a": 24.54, - "lab_b": 21.39 - }, - { - "id": "986543ac-819f-4a2c-9d9a-cd22db9da4a6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", - "color_name": "04 그레이피 웨이", - "image": "https://romand.io/images/product/847/nXD733s6NgeMuPj5hVLwORizy2MJ9r8JCdX8tYuY.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GW&option_name=04%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%BC%20%EC%9B%A8%EC%9D%B4", - "hex": "#be6979", - "lab_l": 54.48, - "lab_a": 35.63, - "lab_b": 6.25 - }, - { - "id": "9359d1fa-71e7-45cb-b14f-a234204bfbb6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", - "color_name": "03 로즈 핀치", - "image": "https://romand.io/images/product/847/6EADRhaRhU7YXAytPK2rRsvg0rdS8dRTxXqzmLZm.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GV&option_name=03%20%EB%A1%9C%EC%A6%88%20%ED%95%80%EC%B9%98", - "hex": "#c28387", - "lab_l": 61.18, - "lab_a": 24.82, - "lab_b": 7.77 - }, - { - "id": "68c057b9-bf64-43eb-bfc6-f68062fcc273", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "color_name": "06 디픈 무어", - "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4", - "hex": "#a05e54", - "lab_l": 47.13, - "lab_a": 25.77, - "lab_b": 17.32 - }, - { - "id": "418d0db8-e6d3-42b8-b715-05f8bd67e56b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", - "color_name": "01 피오니 발레", - "image": "https://romand.io/images/product/847/dt3narGEEUTYpJG5Qbldcenng5Pgke18Z9cH61ZV.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GT&option_name=01%20%ED%94%BC%EC%98%A4%EB%8B%88%20%EB%B0%9C%EB%A0%88", - "hex": "#de9fa9", - "lab_l": 71.69, - "lab_a": 24.82, - "lab_b": 4.17 - }, - { - "id": "0df6f4f6-5cca-4991-9a74-75bc52020c24", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", - "color_name": "09 소프트 풀", - "image": "https://romand.io/images/product/859/y5NwVVP7YTnU3l0HAlzWkwxoxw7OkNWnhfQAfNzE.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/859/?variant_code=P0000BHB000A&option_name=09%20%EC%86%8C%ED%94%84%ED%8A%B8%20%ED%92%80", - "hex": "#d65074", - "lab_l": 53.27, - "lab_a": 55.48, - "lab_b": 7.97 - }, - { - "id": "324d1e09-25af-4704-ab0c-9dd669a3f255", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "color_name": "07 스프링 피버", - "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84", - "hex": "#de7f82", - "lab_l": 63.61, - "lab_a": 36.92, - "lab_b": 14.54 - }, - { - "id": "4000ca86-fa94-433a-8c28-437b8b2ec702", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", - "color_name": "08 체리 업", - "image": "https://romand.io/images/product/879/mSn9TLjjWdOIg0T8FG2xAvhGNa7rCJNeDpH7pZ6D.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000C&option_name=08%20%EC%B2%B4%EB%A6%AC%20%EC%97%85", - "hex": "#d66279", - "lab_l": 56.5, - "lab_a": 47.75, - "lab_b": 9.59 - }, - { - "id": "7c57701a-2899-4e36-911d-c3de14fac2f8", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "color_name": "14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", - "hex": "#c66c7e", - "lab_l": 56.33, - "lab_a": 37.59, - "lab_b": 6.1 - }, - { - "id": "67b2b414-9c12-4aa4-9666-4adf1ec73666", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "color_name": "15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", - "hex": "#d38774", - "lab_l": 63.71, - "lab_a": 26.97, - "lab_b": 22.34 - }, - { - "id": "6bbd9c1b-5556-4745-b39f-91fe09d12dfd", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "color_name": "16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", - "hex": "#ac494f", - "lab_l": 44.38, - "lab_a": 41.09, - "lab_b": 16.91 - }, - { - "id": "46816127-8b1a-48e7-be0f-2d079db2dc74", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "color_name": "17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", - "hex": "#954946", - "lab_l": 40.57, - "lab_a": 31.57, - "lab_b": 16.68 - }, - { - "id": "e543bef5-4ca0-44e9-bfca-ee08eced5aa2", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", - "color_name": "40 블랙 사파이어", - "image": "https://romand.io/images/product/900/20zNZqkRxaxi0TBA5Xi1rHFxVbf6PteRuSJthWTM.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000G&option_name=40%20%EB%B8%94%EB%9E%99%20%EC%82%AC%ED%8C%8C%EC%9D%B4%EC%96%B4", - "hex": "#77303f", - "lab_l": 30.39, - "lab_a": 32.59, - "lab_b": 6.36 - }, - { - "id": "22fc5c7d-c8ab-4ec9-825e-37da3eca9940", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", - "color_name": "41 자두인냥", - "image": "https://romand.io/images/product/900/XqcciN7iH3Hz7wU4LDTfsZE9t606KxLRpkubIfc7.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000H&option_name=41%20%EC%9E%90%EB%91%90%EC%9D%B8%EB%83%A5", - "hex": "#bb1d5c", - "lab_l": 41.56, - "lab_a": 62.86, - "lab_b": 5.32 - }, - { - "id": "228f0017-e135-45e7-ab0b-f8bee33fd5a3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "color_name": "12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", - "hex": "#b55e52", - "lab_l": 50.03, - "lab_a": 33.97, - "lab_b": 22.87 - }, - { - "id": "c0d29700-600e-4376-8e9b-c73debfe6628", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "color_name": "13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", - "hex": "#bc5d67", - "lab_l": 51.27, - "lab_a": 39.15, - "lab_b": 12.31 - }, - { - "id": "7c91fa1b-5347-447a-b752-629c915a4188", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", - "color_name": "02 블랙 베리 팟", - "image": "https://romand.io/images/product/965/09M9HtLkGPO8GNM3NToxgzDyIXoJ8Gv8WaTfyWXk.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000B&option_name=02%20%EB%B8%94%EB%9E%99%20%EB%B2%A0%EB%A6%AC%20%ED%8C%9F", - "hex": "#021d5a", - "lab_l": 13.41, - "lab_a": 18.05, - "lab_b": -39.12 - }, - { - "id": "0cee538b-beb7-49ed-91f8-78afa3f1298d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", - "color_name": "01 코튼 밀크 팟", - "image": "https://romand.io/images/product/965/30BQaNQpgtjbPym2zAAqNqDsiBwAkC9OYcqlSzX4.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000A&option_name=01%20%EC%BD%94%ED%8A%BC%20%EB%B0%80%ED%81%AC%20%ED%8C%9F", - "hex": "#dcc2c3", - "lab_l": 80.59, - "lab_a": 9.34, - "lab_b": 2.87 - }, - { - "id": "c132431a-8637-4691-a0c7-4aa3b31aa045", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", - "color_name": "03 피치 허니 팟", - "image": "https://romand.io/images/product/965/rXnio3CB5DJRiOVlHQ1eHFvi6F8rQGxdjcQu3FhM.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000C&option_name=03%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%ED%8C%9F", - "hex": "#e8aca8", - "lab_l": 75.76, - "lab_a": 21.41, - "lab_b": 10.69 - }, - { - "id": "5b7ad327-a914-4b87-92a4-bcd6efa1ab8b", - "brand": "3CE", - "category": "Lips", - "name": "[3CE X MUUT] BLUR WATER TINT", - "color_name": "[3CE X MUUT] BLUR WATER TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-x-muut-blur-water-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/blur-water-tint/berry-it/blur-water-tint_berry-it_plp.png?rev=b3b00cc396b64e03a2f27cafb69f9c2b&cx=0&cy=0&cw=480&ch=480&hash=45E0714A9336D2E0E4832A6A8A507B8A", - "price": "₩ 18,000", - "hex": "#d64178", - "lab_l": 51.19, - "lab_a": 61.84, - "lab_b": 2.59 - }, - { - "id": "cc78bd55-dce5-4b85-bf4f-fe6fe33f080d", - "brand": "3CE", - "category": "Lips", - "name": "[3CE X MUUT] VELVET LIP TINT", - "color_name": "[3CE X MUUT] VELVET LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-x-muut-velvet-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/velvet-lip-tint/spiced-chill/velvet-lip-tint_spiced-chill_pck_plp.png?rev=601919fdf57e4e65a2214d6fac1d464f&cx=0&cy=0&cw=480&ch=480&hash=69AE32B8ED33F70155D41E7918631D06", - "price": "₩ 18,000", - "hex": "#b77e50", - "lab_l": 57.63, - "lab_a": 17.06, - "lab_b": 33.72 - }, - { - "id": "481514ee-4c28-4708-ac49-e5f7f8837c96", - "brand": "3CE", - "category": "Lips", - "name": "[3CE X MUUT] CASHMERE HUG LIPSTICK", - "color_name": "[3CE X MUUT] CASHMERE HUG LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-x-muut-cashmere-hug-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/cashmere-hug-lipstick/hush-rose/cashmere-hug-lipstick_hush-rose_plp.png?rev=06c0e9f47a1f4494839ca6ae47f537bf&cx=0&cy=0&cw=480&ch=480&hash=01CF18E5555F9362216D84B2C64364A7", - "price": "₩ 22,000", - "hex": "#aa4a52", - "lab_l": 44.31, - "lab_a": 40.13, - "lab_b": 14.94 - }, - { - "id": "5bf3fbe4-b850-43fb-9c85-5bd881d07dcc", - "brand": "3CE", - "category": "Lips", - "name": "3CE GLAZY LIP GLOW", - "color_name": "3CE GLAZY LIP GLOW", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-glazy-lip-glow", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-gloss/glazy-lip-glow/30-melting-smore/glazy-lip-glow_30-melting-smore_plp_pck.png?rev=399e9a6cff844d929b757d22cccfc8dc&cx=0.47&cy=0.5&cw=480&ch=480&hash=CE094FDCD2A23A613CE806DCB1F59040", - "price": "₩ 21,000", - "hex": "#cca8a1", - "lab_l": 71.84, - "lab_a": 12.06, - "lab_b": 8.56 - }, - { - "id": "80c092b1-691a-4dc4-86dd-7c29ab3a6d66", - "brand": "3CE", - "category": "Lips", - "name": "3CE BLUR WATER TINT", - "color_name": "3CE BLUR WATER TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-blur-water-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/blur-water-tint/dear-march/blur-water-tint_dear-march_plp_pck_2.png?rev=fe098a356c514083901d9585e977773a&cx=0&cy=0&cw=480&ch=480&hash=A0ED5AB12C2B1BFD2866D7F5D2A317AC", - "price": "₩ 18,000", - "hex": "#bb6f68", - "lab_l": 55.01, - "lab_a": 29.3, - "lab_b": 16.86 - }, - { - "id": "e1f21e7d-9f44-47fc-9ce4-42cc01aa19c9", - "brand": "3CE", - "category": "Lips", - "name": "3CE VELVET LIP TINT", - "color_name": "3CE VELVET LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-velvet-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/velvet-lip-tint/cashmere-nude/low/velvet-lip-tint_cashmere-nude_plp_pck_2.png?rev=a54c233926454b918f0b7b12ef825e34&cx=0.49&cy=0.49&cw=480&ch=480&hash=56A7559962F9C1FB0A65B22490962CDE", - "price": "₩ 18,000", - "hex": "#a4504f", - "lab_l": 44.51, - "lab_a": 34.52, - "lab_b": 16.88 - }, - { - "id": "f4c5e948-f91d-4f35-b8a5-ff2ef9e6ad58", - "brand": "3CE", - "category": "Lips", - "name": "3CE CASHMERE HUG LIPSTICK", - "color_name": "3CE CASHMERE HUG LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-cashmere-hug-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/cashmere-hug-lipstick/hush-red/plp-low/cashmere-hug-lipstick_hush-red_plp_pck_2.png?rev=3e5371ead7804957ac57cb6aab1e77cd&cx=0.51&cy=0.49&cw=480&ch=480&hash=50677396A49FC593C293DA87CC410696", - "price": "₩ 22,000", - "hex": "#c33c4a", - "lab_l": 46.09, - "lab_a": 54.28, - "lab_b": 22.93 - }, - { - "id": "0cffb8b2-7cbb-4f8a-8764-0619419ca36d", - "brand": "3CE", - "category": "Lips", - "name": "3CE HAZY LIP CLAY", - "color_name": "3CE HAZY LIP CLAY", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-hazy-lip-clay", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/hazy-lip-clay/cherry-fluff/plp-low/hazy-lip-clay_cherry-fluff_plp_pck_1.png?rev=a9050ca1397b479498b245e9e1cd855e&cx=0.48&cy=0.47&cw=480&ch=480&hash=D07297A1C9CAAED2A49435ED3F261FF6", - "price": "₩ 20,000", - "hex": "#a84d5f", - "lab_l": 44.89, - "lab_a": 39.2, - "lab_b": 7.73 - }, - { - "id": "ffb477ee-7eb4-44ea-9c48-8a0a78ddfd74", - "brand": "3CE", - "category": "Lips", - "name": "3CE BLUR MATTE LIPSTICK", - "color_name": "3CE BLUR MATTE LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-blur-matte-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/blur-matte-lipstick/apricot-filter/plp-low/blur-matte-lipstick_apricot-filter_plp_pck_1.png?rev=856b6ce3c59f4498bb450bf92c82697f&cx=0.55&cy=0.5&cw=480&ch=480&hash=2C9A9E9271C183ADAAD9080DAE5EBB88", - "price": "₩ 22,000", - "hex": "#7b6665", - "lab_l": 45.16, - "lab_a": 8.2, - "lab_b": 3.7 - }, - { - "id": "fe0f55cd-80d0-4d28-8efe-5c6da1615fa5", - "brand": "3CE", - "category": "Lips", - "name": "3CE BLURRING LIQUID LIP", - "color_name": "3CE BLURRING LIQUID LIP", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-blurring-liquid-lip", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/blurring-liquid-lip/start-now/low/blurring-liquid-lip_start-now_plp_pck_2.png?rev=6d82d411834c411abd7073145f1ba8e0&cx=0.55&cy=0.55&cw=480&ch=480&hash=DB82CC3A4B630C9CB3137875DED35734", - "price": "₩ 18,000", - "hex": "#9f2627", - "lab_l": 35.8, - "lab_a": 49.05, - "lab_b": 30.08 - }, - { - "id": "b2cb0318-1669-4f87-84a9-8d6d2d407e2f", - "brand": "3CE", - "category": "Lips", - "name": "3CE CLOUD LIP TINT", - "color_name": "3CE CLOUD LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-cloud-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/cloud-lip-tint/active-lady/cloud-lip-tint_active-lady_plp_pck_2.png?rev=3fc525d163454d2d968f3edc21707774&cx=0.52&cy=0.53&cw=480&ch=480&hash=017F1449385DAE84ADC20C55E9C2570B", - "price": "₩ 18,000", - "hex": "#ab4a3c", - "lab_l": 44.07, - "lab_a": 38.79, - "lab_b": 27.89 - }, - { - "id": "d873f0b7-b044-4fe3-8854-c7f23bfddf34", - "brand": "3CE", - "category": "Lips", - "name": "3CE DROP GLOW GEL", - "color_name": "3CE DROP GLOW GEL", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-gloss/3ce-drop-glow-gel", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-gloss/drop-glow-gel/weekend/plp-low/drop-glow-gel_weekend_plp_pck_2.png?rev=588f0003327048b9be59f8d818d7daad&cx=0&cy=0&cw=480&ch=480&hash=7E750DDF32D3E288800EA82082E66744", - "price": "₩ 18,000", - "hex": "#844443", - "lab_l": 36.83, - "lab_a": 27.21, - "lab_b": 13.05 - }, - { - "id": "5c60e12a-2285-4e93-b55e-eea6a6db06f7", - "brand": "3CE", - "category": "Lips", - "name": "3CE GLAZE LIP TINT", - "color_name": "3CE GLAZE LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-glaze-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/glaze-lip-tint/any-better/plp-low/glaze-lip-tint_any-better_plp_pck_1.png?rev=7139ef97c6104278bd5140427f7f68ff&cx=0.49&cy=0.56&cw=480&ch=480&hash=34C09357464AE25B3F7BA8EF79A9F46E", - "price": "₩ 15,000", - "hex": "#a23e30", - "lab_l": 40.15, - "lab_a": 40.55, - "lab_b": 29.88 - }, - { - "id": "5652a687-3549-4cfd-9fef-40ab1fb15625", - "brand": "3CE", - "category": "Lips", - "name": "3CE LAZY POP LIP STAIN", - "color_name": "3CE LAZY POP LIP STAIN", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-lazy-pop-lip-stain", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/lazy-pop-lip-stain/yayornay/plp-low/lazy-pop-lip-stain_yayornay_plp_pck_1.png?rev=4c7322ac5b904d79ab404e7ab6f44e80&cx=0.48&cy=0.52&cw=480&ch=480&hash=6C84AE48389E6E640D80AC6E71EC4207", - "price": "₩ 18,000", - "hex": "#e44a3c", - "lab_l": 53.73, - "lab_a": 58.71, - "lab_b": 41.62 - }, - { - "id": "2ccb414b-dd3e-4dd0-b1d9-bffe85903b0d", - "brand": "3CE", - "category": "Lips", - "name": "3CE MOOD RECIPE MATTE LIP COLOR", - "color_name": "3CE MOOD RECIPE MATTE LIP COLOR", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-mood-recipe-matte-lip-color", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/mood-recipe-matte-lip-color/909-smoked-rose/plp-low/mood-recipe-lip-color_smoked-rose_plp_pck_1.png?rev=721e69ecf5a74dc1bde2e16ba713613f&cx=0.52&cy=0.48&cw=480&ch=480&hash=5837DB51E3F542B5A38AE2A3B012A098", - "price": "₩ 19,000", - "hex": "#7e3c33", - "lab_l": 33.79, - "lab_a": 27.7, - "lab_b": 18.88 - }, - { - "id": "d7e80c03-3146-4921-8ab5-98b7626c1fe8", - "brand": "3CE", - "category": "Lips", - "name": "3CE SHINE REFLECTOR", - "color_name": "3CE SHINE REFLECTOR", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-gloss/3ce-shine-reflector", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-gloss/shine-reflector/rain-or-shine/250616-update/shine-reflector_rain-or-shine_plp_pck_te.png?rev=fa2e455c1e5f47fc8d6820e96ddb850f&cx=0.48&cy=0.51&cw=480&ch=480&hash=90B975AD6890B86B548AAD58283FC8B8", - "price": "₩ 19,000", - "hex": "#be5763", - "lab_l": 50.3, - "lab_a": 42.51, - "lab_b": 13.39 - }, - { - "id": "e5ada97b-0c73-44c4-95a9-084925ef6ed6", - "brand": "3CE", - "category": "Lips", - "name": "3CE SOFT MATTE LIPSTICK", - "color_name": "3CE SOFT MATTE LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-soft-matte-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/soft-matte-lipstick/speak-to-me/low/soft-matte-lipstick_speak-to-me_plp_pck_2.png?rev=dbb501b0417c405db1b2e681bff80e78&cx=0.5&cy=0.57&cw=480&ch=480&hash=049B58B85F4B5C831BC1E0EE6B339436", - "price": "₩ 19,000", - "hex": "#87423d", - "lab_l": 36.72, - "lab_a": 28.95, - "lab_b": 16.73 - }, - { - "id": "da7bef63-b905-42bf-974d-2a8401cf9b1d", - "brand": "3CE", - "category": "Lips", - "name": "3CE SYRUP LAYERING TINT", - "color_name": "3CE SYRUP LAYERING TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-syrup-layering-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/syrup-layering-tint/alive-pink/low/syrup-layering-tint_alive-pink_plp_pck_2.png?rev=75f245df2e6d4a599f9c42ee075f254e&cx=0.48&cy=0.52&cw=480&ch=480&hash=79D7CE9BDAFE616BF751CD3A58B73B2C", - "price": "₩ 18,000", - "hex": "#df7682", - "lab_l": 61.88, - "lab_a": 41.93, - "lab_b": 12.14 - }, - { - "id": "a7d87635-649c-4ca5-bc49-aa824cfc9675", - "brand": "3CE", - "category": "blush", - "name": "[3CE X MUUT] BOUNCY BLUR BALM", - "color_name": "[3CE X MUUT] BOUNCY BLUR BALM", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-x-muut-bouncy-blur-balm", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/bouncy-blur-balm/beige-crush/250527/bouncy-blur-balm_beige-crush_plp_pck_te.png?rev=9e633c04c9d84246961d41e86fe36144&cx=0.47&cy=0.48&cw=480&ch=480&hash=187307319B3E34B27B537909205D8D68", - "price": "₩ 21,000", - "hex": "#be7556", - "lab_l": 56.43, - "lab_a": 25.48, - "lab_b": 29.1 - }, - { - "id": "e13dc09e-9417-4682-a144-98113be0d2bf", - "brand": "3CE", - "category": "blush", - "name": "3CE LAYER-IT-ALL BLUSH PALETTE", - "color_name": "3CE LAYER-IT-ALL BLUSH PALETTE", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-layer-it-all-blush-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/layer-it-all-palette/rosy-tan/layer-it-all-blush-palette_rosy-tan_plp_pck_te.png?rev=d7c34ae2a7ee4421997809591a3033ba&cx=0.45&cy=0.52&cw=480&ch=480&hash=D86F8BE156D1BE9F6434C9B3BB0D13A5", - "price": "₩ 26,000", - "hex": "#b07a7a", - "lab_l": 56.64, - "lab_a": 21.08, - "lab_b": 8.5 - }, - { - "id": "021a18ac-822c-41de-8f13-665ca4649ea6", - "brand": "3CE", - "category": "blush", - "name": "3CE BLUSHLIGHTER", - "color_name": "3CE BLUSHLIGHTER", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-blushlighter", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/blushlighter/middy-hype/low/blushlighter_middy-hype_plp.png?rev=faf42016372840a0aca4807afee03ab0&cx=0.54&cy=0.5&cw=480&ch=480&hash=767346277B16FEDA2DE08D0C33B363A2", - "price": "₩ 24,000", - "hex": "#d09099", - "lab_l": 66.26, - "lab_a": 25.48, - "lab_b": 5.07 - }, - { - "id": "ccffdf60-43c9-4cc0-acfd-56d6363f6e74", - "brand": "3CE", - "category": "blush", - "name": "3CE FACE BLUSH", - "color_name": "3CE FACE BLUSH", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-face-blush", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/face-blush/mono-pink/plp-low/face-blush-mood-recipe_mono-pink_plp_pck_1.png?rev=855be95ca954421d819f0751ab623578&cx=0.5&cy=0.52&cw=480&ch=480&hash=EAFBBFA2A954861C2B5F764001D24F7D", - "price": "₩ 18,000", - "hex": "#ca948a", - "lab_l": 66.19, - "lab_a": 18.96, - "lab_b": 13.3 - }, - { - "id": "d93d7a10-a055-4443-ab9b-046b590f245f", - "brand": "3CE", - "category": "blush", - "name": "3CE NEW TAKE FACE BLUSHER", - "color_name": "3CE NEW TAKE FACE BLUSHER", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-new-take-face-blusher", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/new-take-face-blusher/haze-beige/plp-low/new-take-face-blusher_haze-beige_plp.png?rev=9b14e825e1ed4824b5e5c03d553d84c8&cx=0.52&cy=0.53&cw=480&ch=480&hash=69314B03B432FA145941980E507D1BAB", - "price": "₩ 20,000", - "hex": "#997a61", - "lab_l": 53.55, - "lab_a": 8.38, - "lab_b": 18.27 - }, - { - "id": "59ba707d-7c08-4786-84d3-a8ddfe795c83", - "brand": "3CE", - "category": "blush", - "name": "3CE SHEER LIQUID BLUSHER", - "color_name": "3CE SHEER LIQUID BLUSHER", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-sheer-liquid-blusher", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/sheer-liquid-blusher/joyful-affair/plp-low/sheer-liquid-blusher_joyful-affair_plp_pck_1.png?rev=55bc7b22e41a45b58b93f3f6c16446ff&cx=0.52&cy=0.47&cw=480&ch=480&hash=18062A8DADA211865D7E8E6D855F0033", - "price": "₩ 17,000", - "hex": "#cf645e", - "lab_l": 55.27, - "lab_a": 41.77, - "lab_b": 23.49 - }, - { - "id": "9c920444-47ea-48c6-9937-b8160cdb85f2", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE COLOR GRID EYESHADOW", - "color_name": "3CE COLOR GRID EYESHADOW", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-color-grid-eyeshadow", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/color-grid-eyeshadow/mint-zest/color-grid-eye-shadow_mint-zest_plp_pck_te.png?rev=b6618874236a4c96b15cf7c0e8ba5e85&cx=0&cy=0&cw=480&ch=480&hash=FAF44709795C5137D9DD38E355B431D0", - "price": "₩ 19,000", - "hex": "#7ca797", - "lab_l": 65.09, - "lab_a": -17.95, - "lab_b": 3.58 - }, - { - "id": "4b5ec573-af0a-4295-a5b3-40006ca12882", - "brand": "3CE", - "category": "eyeshadow", - "name": "[3CE X MUUT] MULTI EYE COLOR PALETTE", - "color_name": "[3CE X MUUT] MULTI EYE COLOR PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-x-muut-multi-eye-color-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/multi-eye-color-palette/chill-wave/250527/multi-eye-color-palette_chill-wave_plp_pkg.png?rev=42db89c12f184abd827e6a810d56aa78&cx=0&cy=0&cw=480&ch=480&hash=CAC8B810B2A94C1DC99A3C5D23DA244F", - "price": "₩ 38,000", - "hex": "#886c8d", - "lab_l": 49.35, - "lab_a": 17.29, - "lab_b": -13.85 - }, - { - "id": "70430544-bd86-4d41-ac2e-49827a472aed", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE LAYER-IT-ALL EYESHADOW PALETTE", - "color_name": "3CE LAYER-IT-ALL EYESHADOW PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-layer-it-all-eyeshadow-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/layer-it-all-palette/pink-soda/layer-it-all-eyeshadow-palette_pink-soda_plp_pck_te.png?rev=8967395346924339b13ca8eb00699787&cx=0.49&cy=0.51&cw=480&ch=480&hash=0C87180A4BB5240E5A0A7732690C2A0D", - "price": "₩ 32,000", - "hex": "#b28785", - "lab_l": 60.33, - "lab_a": 16.13, - "lab_b": 7.46 - }, - { - "id": "6330673b-9616-40d3-9fec-bed08d75dcc1", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE MULTI EYE COLOR PALETTE", - "color_name": "3CE MULTI EYE COLOR PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-multi-eye-color-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/multi-eye-color-palette/auto-focus/plp-low/multi-eye--color-palette_auto-focus_pck_plp_1.png?rev=7f05bbb2c0674c2f811d97f9ad962d39&cx=0&cy=0&cw=480&ch=480&hash=C417AE84128F0FD1F22126DCD93D34D3", - "price": "₩ 39,000", - "hex": "#91615c", - "lab_l": 46.1, - "lab_a": 18.84, - "lab_b": 10.8 - }, - { - "id": "a8ed8f6d-a884-46fe-8ba7-a679bc57a72d", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE MINI MULTI EYE COLOR PALETTE", - "color_name": "3CE MINI MULTI EYE COLOR PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-mini-multi-eye-color-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/mini-multi-eye-color-palette/almond-fudge/low/mini-multi-eye-color-palette_almond-fudge_plp_pck_1.png?rev=b4c1a7db5ef7442283022be2da94fdb7&cx=0.52&cy=0.51&cw=480&ch=480&hash=788F4A2A9749E6D1B5DEFBD3ED9C2313", - "price": "₩ 24,000", - "hex": "#ba784b", - "lab_l": 56.47, - "lab_a": 21.27, - "lab_b": 35.09 - }, - { - "id": "64105de9-e47f-4387-9ae8-c76493919a47", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE ALL ROUNDER FACE PALETTE", - "color_name": "3CE ALL ROUNDER FACE PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-all-rounder-face-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/all-rounder-face-palette/pale-veil/plp-low/all-rounder-face-palette_pale-veil_plp_pck.png?rev=a1469eb4361a40d685106fb91fbafb3c&cx=0.49&cy=0.53&cw=480&ch=480&hash=DA5F70A7805FD4DA1BCE48662DF7017E", - "price": "₩ 40,000", - "hex": "#ebd8e7", - "lab_l": 88.23, - "lab_a": 9.12, - "lab_b": -4.97 - }, - { - "id": "dead0110-27cb-4189-9e42-27dc0370563a", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE EYE SWITCH", - "color_name": "3CE EYE SWITCH", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-eye-switch", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/eye-switch/double-note/eye-switch_double-note_plp_pck_3.png?rev=2926a0332c3c4690a3d23d3b99679d22&cx=0.48&cy=0.54&cw=480&ch=480&hash=B635DEEBA18684321940A8179BFE5826", - "price": "₩ 15,000", - "hex": "#5a0aa4", - "lab_l": 26.94, - "lab_a": 58.77, - "lab_b": -63.64 - }, - { - "id": "b6ff218b-0a66-4435-8304-57d44e4698c4", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE LIQUID PRIMER EYE SHADOW", - "color_name": "3CE LIQUID PRIMER EYE SHADOW", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-liquid-primer-eye-shadow", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/liquid-primer-eye-shadow/common-place/plp-low/liquid-primer-eye-shadow_common-place_plp_pck_2.png?rev=234ccf970243495c8e2f94b080e01f45&cx=0.52&cy=0.53&cw=480&ch=480&hash=544D2D6C53117089DE3EE7A36EED5A94", - "price": "₩ 15,000", - "hex": "#d19f7f", - "lab_l": 69.39, - "lab_a": 14.36, - "lab_b": 23.89 - }, - { - "id": "e19d7eb9-bfab-40e4-839d-e7ff11df8c21", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE NEW TAKE EYESHADOW PALETTE", - "color_name": "3CE NEW TAKE EYESHADOW PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-new-take-eyeshadow-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/new-take-eye-shadow-palette/pink-journey/plp-low/new-take--eyeshadow-palette_pink-journey_plp_pck_1.png?rev=3ab2f2fedd4b46fa91abd1055ac76b78&cx=0.46&cy=0.48&cw=480&ch=480&hash=A0FCDFD8BC009C89E5FBBA3221BB1D82", - "price": "₩ 49,000", - "hex": "#a06f6c", - "lab_l": 51.75, - "lab_a": 19.03, - "lab_b": 9.5 - }, - { - "id": "bc5856bb-7e4f-45b3-8be8-babc01c2acb7", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE XL EYESHADOW PALETTE", - "color_name": "3CE XL EYESHADOW PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-xl-eyeshadow-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/xl-eyeshadow-palette/plp-low/xl-palette_plp_pck_1.png?rev=22150147353342268e77a901d7b39a3d&cx=0.51&cy=0.52&cw=480&ch=480&hash=91CE1BAD332BCBE2201F4C6D9A21390E", - "price": "₩ 80,000", - "hex": "#b48787", - "lab_l": 60.59, - "lab_a": 17.2, - "lab_b": 6.72 - } -] \ No newline at end of file diff --git a/static/data/cluster_centers.json b/static/data/cluster_centers.json index d26433f..f89c307 100644 --- a/static/data/cluster_centers.json +++ b/static/data/cluster_centers.json @@ -1,30 +1,30 @@ [ [ - 55.2976, - 44.4284, - 53.9404, - 37.52720000000001, - 10.8528 + -0.8337172035058602, + 1.3211934312760558, + -1.2673344752233935, + -0.9522763638295709, + -0.7880439865248533 ], [ - 51.71125, - 63.388, - 34.41899999999999, - 7.414750000000003, - 1.5735000000000001 + 0.33695385117701, + -0.0013404905715001187, + -0.09679133678677139, + 1.0335330590389817, + 0.9952700564761677 ], [ - 57.60255319148936, - 34.53063829787234, - 67.2927659574468, - 24.85510638297872, - 11.138936170212766 + 1.2309482352490249, + -0.8845917369961788, + 0.933938989686642, + -0.02693457663154252, + 0.8401649965156659 ], [ - 57.47095238095238, - 24.35571428571428, - 81.98095238095237, - 12.197142857142858, - 6.65952380952381 + -0.4018194907544225, + -0.680758038968807, + 0.6451976321842344, + 0.3642954035949325, + -0.5623686622058715 ] ] \ No newline at end of file diff --git a/static/data/cluster_centers_new.json b/static/data/cluster_centers_new.json deleted file mode 100644 index 0130b97..0000000 --- a/static/data/cluster_centers_new.json +++ /dev/null @@ -1,30 +0,0 @@ -[ - [ - 60.18936170212766, - 41.60191489361702, - 54.80297872340426, - 49.50893617021276, - 21.214468085106382 - ], - [ - 59.309333333333335, - 28.75333333333333, - 70.51711111111112, - 19.912888888888887, - 11.614444444444445 - ], - [ - 57.99974358974359, - 54.469743589743594, - 44.28230769230769, - 32.05128205128205, - 17.195384615384615 - ], - [ - 24.415, - 73.91999999999999, - 20.174999999999997, - 38.410000000000004, - -51.379999999999995 - ] -] \ No newline at end of file diff --git a/static/data/products.json b/static/data/products.json deleted file mode 100644 index 4093d0f..0000000 --- a/static/data/products.json +++ /dev/null @@ -1,497 +0,0 @@ -[ - { - "image": "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/994/vp2VylRiIA3287NecXLwESdOZlPL1uQ0uDbl1GT6.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/994/0y64Ojupqdu8ZW8Z4KZ4ucrIKrdf3lpueojfZtcK.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/994/h4KEgqv0XejM1hZxnxZF0SPOcsingVAlg9LJC2TR.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/994/aL8OhiGRHY20X4WS3q8mKmqKNHCdBDYAhPvi88oy.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/hVrWzeIAuVwXIUXGqSPfedtnS9ON0FiAC859PKgD.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/Ax5b75vAi528eIiYmonRqylpfzrKROrVZVxnUa5w.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/nO3CrysMVL9U55KfxZurkmyIcryGpKjNZrYmDMr0.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/KrjjrJXJNXjcmUKPkXrWAyobbvyVZxEaaiGAsDaS.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/OA70z7jUdDOWeoUQEhsm61uHilEXmHkEMSpnkIJ3.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/HVs9RVIp3xylieHLYevVIjGWwe6mlre889pPsnoQ.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/kOY2uHHIYeeicQZh8S162C63jtojxgS0EAq9ZR8H.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/yMaewlQ2iW42hrhNZw2kLlG40dD9JY5ZRgWIqIdi.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/inczn5S3hX1dOAt7UCkPINdupgH6qbJZ1xVQpPET.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/1I9OyW4j0wijPOsEbaoljzreN4aGXUTRlcAK7L04.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/2OBJbPaANmkScXjLtjRX48shuuCgsYE9p1j9Nbz1.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/XP3eLtN4ZcjUmvyvmgyXiaeDZnwxYJ2HaDjeffdb.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/MeHqAPbIXbv1DYd4ttfVFpdODslPH4cKYzG8Amsb.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/EfEL2EDNWkUFzS741F9hN9M7fFYUvjTIQ4X9GX6Y.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/oxJxwHns1GrJk0WAn9QXxQiil0CalGNZceDsluQg.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/QK4geWmsw4P0tJNFQEOeHgdrC8PD89ABuP6xCIBx.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/B06iurpARo7agGql1klQnt9XEO2blsvJFgd73Yf3.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/oJgHkcoeViDMvaiM7ZDEAGAOHG3BJ2L3F4rv9ZuD.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/757/yJp29K9lzByeOCbmaKahgMnnJKpXIqxNxDHPDUo5.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/757/91eoj10Pz9IVNHamBY3Xed6tIjMJchIbqjbTQZXt.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/890/2XljHRzFt8z6KtKJB59rxGkn0AukfHVkMp7MqRuV.png", - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/890/PGGDHAoQsh980WHj9zys2vbds0snYQMhizUie6PY.png", - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/49/JV8NqUVwLthMiBxlmAbQ65XLjXRHXt0Qf1nqKYqP.jpg", - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/49/PvDFiup7g5fJvEfkiJNyn73CBOkZp2VucBuNZhSq.jpg", - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/655/vl3Kp3qFAEe2ermmW7L4cuJoBXrxXEyZ56YTaWL4.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/655/fkMWkrsCoeqGyO1onb5tkOvgIaxVvIbR6VdTPRoV.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/655/4aMjABkiueyfVm12habY4NR4M48s7sWfJrLMMawd.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/655/1vV6pMdBV627mX2QSq4aPdLeQnbopcnrLXChumBo.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/655/otoAh9xx2OvsmaAKFhdhVxd71Q3FoI5rCezxqpvb.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/655/kpZBguUaYBShV9UjCqjxiejfWSAm0ZXFQybihogt.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/655/lw6TIt1IFTdWl2s4no8tHeLN2YxgM9tdK1wYUips.jpg", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/515/PKURcokT6yaSMCghl5QJNBTyIYCJqWCEjA1fjrsw.jpg", - "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/817/SefjWR5iYfiWloM9IUu083u2ZO9f03ppLuS2wGpq.png", - "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/817/y3vX9lxV6fhJZEZylr2hOLWjEDksT9Fq4WJONf9c.png", - "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/817/g0Jo8nHxXolDshoOkWVJpJVFqdFPG6wgE0WJXCRZ.png", - "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/817/e1zRzltrbR79ByQNXXqyOuaPV2W268gwdd3QKRds.jpg", - "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/817/19z3uTts0K4r09iHf3DKMSiNkT7dtRSV4LT0Q93Z.jpg", - "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/300/GDNb1zDIFg6oP0su1vDRlKUc2T8aLWStdk4Tfv4o.jpg", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/300/HbMLPwuYY0vtbEZHE2e0Fsq9CDmXCqaZMY3LXmqR.jpg", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/300/AM3zv8bwCn0OPbUqFxyXnt9t78kSUy088r31xR7K.jpg", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/343/83hNUBzKzJQlENPe1SzACyEp4LRLHs829TPrKJL1.jpg", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/343/hQexC85XR5qR4DkMetrs1SiMg5Y6RvUMMo90H2Nk.jpg", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/343/BZgkQP0CTQ1Wb8FTVcLlVBqfPwSBpyZ3BeEQVdCu.jpg", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/343/Zgt57l9jOIHt0W047LxwsfxW4r24ARMearETLLC2.jpg", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/343/q0xStU1kzFEXTy8AziwIyiF2WShatd1rfNwkMNzJ.jpg", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/451/MiJFUm3pVt8PRHg5dBak9UJMYVcTvtuWFqoFaMqb.jpg", - "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/451/TM1sDRWJvxsVuJaYtXOQ2C1sB3mq7icZuaJBHZvC.jpg", - "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/847/Yvq1cQTmyhIhO1bi3jqhmdS7I7EboT3muVjsDvRt.jpg", - "name": "롬앤 글래스팅 컬러 글로스 / 05 딤 모브", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/847/nXD733s6NgeMuPj5hVLwORizy2MJ9r8JCdX8tYuY.jpg", - "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/847/6EADRhaRhU7YXAytPK2rRsvg0rdS8dRTxXqzmLZm.jpg", - "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/847/dt3narGEEUTYpJG5Qbldcenng5Pgke18Z9cH61ZV.jpg", - "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/859/y5NwVVP7YTnU3l0HAlzWkwxoxw7OkNWnhfQAfNzE.png", - "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/879/mSn9TLjjWdOIg0T8FG2xAvhGNa7rCJNeDpH7pZ6D.jpg", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/900/20zNZqkRxaxi0TBA5Xi1rHFxVbf6PteRuSJthWTM.jpg", - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/900/XqcciN7iH3Hz7wU4LDTfsZE9t606KxLRpkubIfc7.jpg", - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/965/09M9HtLkGPO8GNM3NToxgzDyIXoJ8Gv8WaTfyWXk.jpg", - "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/965/30BQaNQpgtjbPym2zAAqNqDsiBwAkC9OYcqlSzX4.jpg", - "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/965/rXnio3CB5DJRiOVlHQ1eHFvi6F8rQGxdjcQu3FhM.jpg", - "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", - "price": "5,900원" - } -] \ No newline at end of file diff --git a/static/data/products_clustered.json b/static/data/products_clustered.json index b9fc6ff..ebfe477 100644 --- a/static/data/products_clustered.json +++ b/static/data/products_clustered.json @@ -1,6 +1,6 @@ [ { - "id": "21bea116-0f90-48a1-8372-4b546978c423", + "id": "ee358e4c-86d7-4035-9dda-bb7cd46a8244", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", @@ -12,12 +12,12 @@ "lab_l": 57.21, "lab_a": 18.27, "lab_b": 12.55, - "warmCool": 56.09, - "lightDeep": 44.35, - "cluster": 2 + "warmCool": 57.62, + "lightDeep": 42.94, + "cluster": 1 }, { - "id": "9a5fe61e-ba9f-4875-9fc5-f502034fc633", + "id": "2f96791d-40c2-4f04-9411-c660a73fe0a1", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", @@ -29,12 +29,12 @@ "lab_l": 68.63, "lab_a": 30.21, "lab_b": 13.33, - "warmCool": 59.12, - "lightDeep": 31.96, + "warmCool": 61.39, + "lightDeep": 27.45, "cluster": 2 }, { - "id": "8f45796f-298e-46c0-aa7a-145eb9dea9d4", + "id": "08587a89-b98f-4e4a-9333-d7ae268ce577", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", @@ -46,12 +46,12 @@ "lab_l": 76.76, "lab_a": 24.75, "lab_b": 1.09, - "warmCool": 54.46, - "lightDeep": 26.16, + "warmCool": 55.57, + "lightDeep": 20.2, "cluster": 3 }, { - "id": "1a66c7c0-18da-459a-9e7e-3f3e162a0810", + "id": "5c9d25d4-8a56-4697-b9ff-2efe73a96e16", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", @@ -63,12 +63,12 @@ "lab_l": 74.1, "lab_a": 23.94, "lab_b": 14.01, - "warmCool": 61.2, - "lightDeep": 28.82, + "warmCool": 64.0, + "lightDeep": 23.53, "cluster": 2 }, { - "id": "b4a597d4-7a85-493d-b00a-6964a897c1e7", + "id": "3435f36f-d90e-4dde-94ec-d02af0b09449", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", @@ -80,12 +80,267 @@ "lab_l": 66.01, "lab_a": 37.02, "lab_b": 12.83, - "warmCool": 58.13, - "lightDeep": 33.37, + "warmCool": 60.16, + "lightDeep": 29.22, + "cluster": 1 + }, + { + "id": "141411dd-a978-43b8-89c3-6624efda4543", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", + "color_name": "30 캐슈넛 로즈", + "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", + "price": "6,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", + "hex": "#dca49f", + "lab_l": 72.45, + "lab_a": 20.16, + "lab_b": 10.28, + "warmCool": 60.53, + "lightDeep": 25.69, + "cluster": 2 + }, + { + "id": "9be4e244-3420-4a6f-bfe7-84a03ee6e804", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", + "color_name": "10 누 베이지", + "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", + "hex": "#ddb3a2", + "lab_l": 76.43, + "lab_a": 12.72, + "lab_b": 14.57, + "warmCool": 64.23, + "lightDeep": 24.9, + "cluster": 2 + }, + { + "id": "2033ce30-09c9-4e40-913f-41e5802fc801", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", + "color_name": "11 버피 코랄", + "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", + "hex": "#dfafa3", + "lab_l": 75.59, + "lab_a": 15.73, + "lab_b": 12.87, + "warmCool": 63.05, + "lightDeep": 24.31, + "cluster": 2 + }, + { + "id": "7fb0a536-63a4-451a-83fe-f34bd9b2c59a", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", + "color_name": "12 베일드 로즈", + "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", + "hex": "#d8a4a5", + "lab_l": 72.26, + "lab_a": 19.41, + "lab_b": 6.77, + "warmCool": 57.7, + "lightDeep": 25.49, + "cluster": 3 + }, + { + "id": "e8445791-6397-4f73-b142-5bc647df59e2", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", + "color_name": "13 스카치 누드", + "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", + "hex": "#d29d8f", + "lab_l": 69.43, + "lab_a": 18.03, + "lab_b": 14.72, + "warmCool": 61.96, + "lightDeep": 30.78, + "cluster": 2 + }, + { + "id": "93eb7e29-6a96-4d16-8de8-fa228e2c4586", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", + "color_name": "14 디어 애플", + "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", + "hex": "#df968e", + "lab_l": 69.24, + "lab_a": 26.2, + "lab_b": 15.39, + "warmCool": 62.53, + "lightDeep": 28.43, + "cluster": 2 + }, + { + "id": "8365038a-9020-413a-929a-3fd420a5f706", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", + "color_name": "15 피칸 브루", + "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", + "hex": "#d88d7a", + "lab_l": 65.99, + "lab_a": 26.02, + "lab_b": 21.69, + "warmCool": 64.43, + "lightDeep": 33.73, + "cluster": 2 + }, + { + "id": "a4b3caf5-2dd4-4626-8d0f-323382949eab", + "brand": "romand", + "category": "Lips", + "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", + "color_name": "펑키 멜론", + "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", + "hex": "#d45c7b", + "lab_l": 55.25, + "lab_a": 50.09, + "lab_b": 6.01, + "warmCool": 55.23, + "lightDeep": 40.39, + "cluster": 1 + }, + { + "id": "0f643e72-0e38-4687-b544-0334248dc10b", + "brand": "romand", + "category": "Lips", + "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", + "color_name": "36 피치 허니 비", + "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", + "hex": "#e4a49e", + "lab_l": 73.39, + "lab_a": 22.7, + "lab_b": 12.73, + "warmCool": 62.36, + "lightDeep": 24.31, + "cluster": 2 + }, + { + "id": "63fd3703-eb4d-480b-a5b7-9ac7654188e5", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", + "color_name": "06 인 바이너리", + "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", + "hex": "#c58b96", + "lab_l": 63.92, + "lab_a": 23.85, + "lab_b": 2.83, + "warmCool": 54.3, + "lightDeep": 34.12, + "cluster": 3 + }, + { + "id": "947445cf-dbb9-4c75-aa3c-3bbdabe381be", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", + "color_name": "05 더치 코코아", + "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", + "hex": "#c98e89", + "lab_l": 64.95, + "lab_a": 21.59, + "lab_b": 11.85, + "warmCool": 58.74, + "lightDeep": 33.73, + "cluster": 2 + }, + { + "id": "e69472e2-4c82-4573-b7f7-ad6e68cf4148", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", + "color_name": "04 카멜 너츠", + "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", + "hex": "#db9e93", + "lab_l": 70.84, + "lab_a": 20.79, + "lab_b": 14.94, + "warmCool": 62.5, + "lightDeep": 28.24, + "cluster": 2 + }, + { + "id": "39641962-6b2c-4339-975b-3c7dac4d39fe", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", + "color_name": "03 태피 베리", + "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", + "hex": "#e5919a", + "lab_l": 69.05, + "lab_a": 33.11, + "lab_b": 8.81, + "warmCool": 58.91, + "lightDeep": 26.67, + "cluster": 3 + }, + { + "id": "5d0f9d52-ad32-4ecb-91e9-1416cbdf7c87", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", + "color_name": "02 버니 홉", + "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", + "hex": "#e6a3ae", + "lab_l": 73.8, + "lab_a": 26.15, + "lab_b": 4.43, + "warmCool": 57.17, + "lightDeep": 22.94, + "cluster": 3 + }, + { + "id": "08081a9b-063e-410a-83a7-60b3c11d2538", + "brand": "romand", + "category": "Lips", + "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", + "color_name": "01 베어 펌킨", + "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", + "price": "10,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", + "hex": "#e5ac9b", + "lab_l": 75.27, + "lab_a": 18.86, + "lab_b": 16.81, + "warmCool": 65.89, + "lightDeep": 24.71, "cluster": 2 }, { - "id": "66ffbc21-3859-426b-8b4a-81acfe32056a", + "id": "e9097c94-d792-4e87-80d9-a5e1a55fadad", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", @@ -97,12 +352,12 @@ "lab_l": 54.35, "lab_a": 32.96, "lab_b": 3.7, - "warmCool": 53.23, - "lightDeep": 44.35, - "cluster": 0 + "warmCool": 54.03, + "lightDeep": 42.94, + "cluster": 3 }, { - "id": "36b1325d-1b14-4e4e-8679-6fafac4eb813", + "id": "31264bd7-3de1-434d-b231-0e8c1b2a6944", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", @@ -114,12 +369,12 @@ "lab_l": 63.26, "lab_a": 28.07, "lab_b": 3.99, - "warmCool": 53.88, - "lightDeep": 37.29, - "cluster": 2 + "warmCool": 54.85, + "lightDeep": 34.12, + "cluster": 3 }, { - "id": "a91d0c50-5e01-451f-b104-0ab2aa6f7ad6", + "id": "27589d28-3793-4ebe-bb02-76f625ede783", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", @@ -131,12 +386,12 @@ "lab_l": 65.97, "lab_a": 24.89, "lab_b": 15.31, - "warmCool": 58.75, - "lightDeep": 35.88, + "warmCool": 60.94, + "lightDeep": 32.35, "cluster": 2 }, { - "id": "4f9e71e6-d66a-487e-b1b5-95a2da49c9e3", + "id": "b33617ea-2fd4-4c34-8aae-429c7ff5aee1", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", @@ -148,12 +403,12 @@ "lab_l": 70.05, "lab_a": 18.19, "lab_b": 18.06, - "warmCool": 61.12, - "lightDeep": 34.63, + "warmCool": 63.91, + "lightDeep": 30.78, "cluster": 2 }, { - "id": "b79901fb-6dac-4511-9767-4bd21704e294", + "id": "72879336-93e7-4ee0-ab6a-4eb5f9cc1347", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", @@ -165,12 +420,12 @@ "lab_l": 54.96, "lab_a": 36.01, "lab_b": 13.06, - "warmCool": 55.93, - "lightDeep": 43.1, - "cluster": 0 + "warmCool": 57.42, + "lightDeep": 41.37, + "cluster": 1 }, { - "id": "0d604060-193d-49fc-8bce-988091301390", + "id": "26ba5c45-d1bc-4940-a83f-c9cbafc49161", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", @@ -182,12 +437,12 @@ "lab_l": 72.77, "lab_a": 24.45, "lab_b": 28.74, - "warmCool": 66.85, - "lightDeep": 33.06, + "warmCool": 71.06, + "lightDeep": 28.82, "cluster": 2 }, { - "id": "a5ffebb0-1d7b-4a46-adaa-4d56f6edad19", + "id": "da606bdd-2d83-4591-ae77-81873b53f797", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", @@ -199,12 +454,12 @@ "lab_l": 73.46, "lab_a": 28.71, "lab_b": 5.82, - "warmCool": 56.79, - "lightDeep": 28.2, - "cluster": 2 + "warmCool": 58.49, + "lightDeep": 22.75, + "cluster": 3 }, { - "id": "2614d23d-96ed-4d9b-b1f4-21533aa7268a", + "id": "2467a4db-8a4b-48d7-ae4b-7187274dd184", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", @@ -216,12 +471,12 @@ "lab_l": 44.82, "lab_a": 36.93, "lab_b": 12.54, - "warmCool": 54.82, - "lightDeep": 51.73, - "cluster": 0 + "warmCool": 56.03, + "lightDeep": 52.16, + "cluster": 1 }, { - "id": "5873a043-e3e5-49c3-b727-1ef9b1efaa99", + "id": "69880f1f-81ec-4e56-acfc-b1188bca8e56", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", @@ -233,12 +488,12 @@ "lab_l": 61.66, "lab_a": 42.08, "lab_b": -4.94, - "warmCool": 51.36, - "lightDeep": 37.92, - "cluster": 0 + "warmCool": 51.7, + "lightDeep": 34.9, + "cluster": 3 }, { - "id": "906deddd-6ddf-47be-ae00-fd1bdf0e676f", + "id": "142dfdac-0fed-4814-bc21-eff3ea2537d4", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", @@ -250,12 +505,12 @@ "lab_l": 64.35, "lab_a": 33.49, "lab_b": 7.41, - "warmCool": 55.52, - "lightDeep": 35.57, - "cluster": 2 + "warmCool": 56.9, + "lightDeep": 31.96, + "cluster": 3 }, { - "id": "2f2cdf81-a944-4f49-b64c-d49ed7875792", + "id": "19ab1d34-10a6-4f71-b79c-b9776540076a", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", @@ -267,12 +522,12 @@ "lab_l": 57.15, "lab_a": 53.97, "lab_b": 22.22, - "warmCool": 58.73, - "lightDeep": 39.96, - "cluster": 0 + "warmCool": 60.91, + "lightDeep": 37.45, + "cluster": 1 }, { - "id": "40970f84-0955-4b50-90bb-a82d4561e153", + "id": "4b7fa6d4-d667-4773-a4fc-05e3c7dbabd4", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", @@ -284,12 +539,12 @@ "lab_l": 42.19, "lab_a": 22.27, "lab_b": 14.13, - "warmCool": 56.06, - "lightDeep": 55.96, + "warmCool": 57.57, + "lightDeep": 57.45, "cluster": 1 }, { - "id": "0d1df210-4905-4986-8dc0-6a844de0bcd9", + "id": "e430d1d6-3b9c-4c3b-85c6-4b265216ae29", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", @@ -301,12 +556,12 @@ "lab_l": 39.35, "lab_a": 31.61, "lab_b": 4.81, - "warmCool": 53.06, - "lightDeep": 56.9, + "warmCool": 53.83, + "lightDeep": 58.63, "cluster": 0 }, { - "id": "9f89ea8e-c5d3-40a9-a9ff-f81d7f163445", + "id": "ae43a2fa-7ff9-4957-b1c3-200f5ec6c5c5", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", @@ -318,12 +573,12 @@ "lab_l": 55.41, "lab_a": 32.1, "lab_b": 2.4, - "warmCool": 52.83, - "lightDeep": 43.73, - "cluster": 0 + "warmCool": 53.54, + "lightDeep": 42.16, + "cluster": 3 }, { - "id": "9f9e3060-c423-4de2-ad29-66cab3a560ff", + "id": "7b50314a-341a-4534-8cc1-45ff117669ea", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", @@ -335,12 +590,12 @@ "lab_l": 56.76, "lab_a": 32.0, "lab_b": 10.15, - "warmCool": 55.36, - "lightDeep": 42.0, - "cluster": 0 + "warmCool": 56.7, + "lightDeep": 40.0, + "cluster": 1 }, { - "id": "a53dc816-28d8-493b-a320-6b099ac9974d", + "id": "cb677659-d2d3-4005-bb92-ba6723f55b67", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", @@ -352,12 +607,12 @@ "lab_l": 50.39, "lab_a": 29.91, "lab_b": 18.65, - "warmCool": 56.96, - "lightDeep": 48.59, - "cluster": 0 + "warmCool": 58.69, + "lightDeep": 48.24, + "cluster": 1 }, { - "id": "9ae2ef4f-9e2b-48c2-b605-e443168131aa", + "id": "8a406109-28d3-48ae-bd47-5db532937106", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", @@ -369,12 +624,12 @@ "lab_l": 54.14, "lab_a": 29.18, "lab_b": 22.24, - "warmCool": 58.68, - "lightDeep": 46.39, - "cluster": 0 + "warmCool": 60.84, + "lightDeep": 45.49, + "cluster": 1 }, { - "id": "caabd5bb-195f-4225-b83d-b95f586b2578", + "id": "8de62e86-7c24-4d60-b738-d80844b7e37c", "brand": "romand", "category": "Lips", "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", @@ -384,405 +639,99 @@ "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000K&option_name=11%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", "hex": "#e07e71", "lab_l": 63.49, - "lab_a": 36.33, - "lab_b": 23.69, - "warmCool": 61.54, - "lightDeep": 37.14, - "cluster": 2 - }, - { - "id": "06c2254d-8d72-476d-845f-3ef1674071f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "color_name": "10 베어 애프리콧", - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7", - "hex": "#e98d88", - "lab_l": 68.25, - "lab_a": 34.44, - "lab_b": 17.27, - "warmCool": 60.9, - "lightDeep": 32.12, - "cluster": 2 - }, - { - "id": "11f11c8e-f3fe-4fc1-937e-f2067a768e73", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "color_name": "09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", - "hex": "#d88b89", - "lab_l": 65.73, - "lab_a": 29.1, - "lab_b": 13.26, - "warmCool": 58.09, - "lightDeep": 34.63, - "cluster": 2 - }, - { - "id": "2535ace4-3ebe-4397-b1ab-3f7ec2c4bdd9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "color_name": "08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "hex": "#d6746d", - "lab_l": 59.87, - "lab_a": 37.62, - "lab_b": 20.71, - "warmCool": 59.52, - "lightDeep": 39.33, - "cluster": 0 - }, - { - "id": "be91e7bf-9b23-46cd-8ff9-66f842f0571d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "color_name": "07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", - "hex": "#b34f5a", - "lab_l": 46.97, - "lab_a": 41.6, - "lab_b": 13.65, - "warmCool": 54.96, - "lightDeep": 49.53, - "cluster": 0 - }, - { - "id": "eb76ec0d-e969-4245-a2ad-61066804a775", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "color_name": "05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", - "hex": "#ce7373", - "lab_l": 58.67, - "lab_a": 35.71, - "lab_b": 15.85, - "warmCool": 57.43, - "lightDeep": 39.65, - "cluster": 0 - }, - { - "id": "60a49f29-76f9-4912-b405-1cbbfaf8909b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "color_name": "06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", - "hex": "#c58b96", - "lab_l": 63.92, - "lab_a": 23.85, - "lab_b": 2.83, - "warmCool": 53.44, - "lightDeep": 37.29, - "cluster": 2 - }, - { - "id": "199e9f32-f575-4281-8903-66bd875228e9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "color_name": "05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", - "hex": "#c98e89", - "lab_l": 64.95, - "lab_a": 21.59, - "lab_b": 11.85, - "warmCool": 56.99, - "lightDeep": 36.98, - "cluster": 2 - }, - { - "id": "6e1126de-2ef5-413a-84a5-3cb6642e03d9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "color_name": "04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", - "hex": "#db9e93", - "lab_l": 70.84, - "lab_a": 20.79, - "lab_b": 14.94, - "warmCool": 60.0, - "lightDeep": 32.59, - "cluster": 2 - }, - { - "id": "71ce99ca-c86e-427e-bd19-f59622ad7cb1", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "color_name": "03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "hex": "#e5919a", - "lab_l": 69.05, - "lab_a": 33.11, - "lab_b": 8.81, - "warmCool": 57.13, - "lightDeep": 31.33, - "cluster": 2 - }, - { - "id": "6a3f15be-f9f4-4151-8088-b81618bdc4f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "color_name": "02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", - "hex": "#e6a3ae", - "lab_l": 73.8, - "lab_a": 26.15, - "lab_b": 4.43, - "warmCool": 55.73, - "lightDeep": 28.35, - "cluster": 2 - }, - { - "id": "ddcb78a1-8b88-4d01-afd9-42c81209b3ba", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "color_name": "01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", - "hex": "#e5ac9b", - "lab_l": 75.27, - "lab_a": 18.86, - "lab_b": 16.81, - "warmCool": 62.71, - "lightDeep": 29.76, - "cluster": 2 - }, - { - "id": "89f24b19-9513-4389-85a5-c8acabcbec9e", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "color_name": "30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", - "hex": "#dca49f", - "lab_l": 72.45, - "lab_a": 20.16, - "lab_b": 10.28, - "warmCool": 58.42, - "lightDeep": 30.55, - "cluster": 2 - }, - { - "id": "8bb4c2be-c633-40ea-8b90-51fb34270472", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "color_name": "10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", - "hex": "#ddb3a2", - "lab_l": 76.43, - "lab_a": 12.72, - "lab_b": 14.57, - "warmCool": 61.38, - "lightDeep": 29.92, - "cluster": 3 - }, - { - "id": "3651ff14-cd6c-4366-a794-8362961eb0b6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "color_name": "11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", - "hex": "#dfafa3", - "lab_l": 75.59, - "lab_a": 15.73, - "lab_b": 12.87, - "warmCool": 60.44, - "lightDeep": 29.45, - "cluster": 3 - }, - { - "id": "dd279635-cb31-4111-947d-9562dfc3aa84", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "color_name": "12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "hex": "#d8a4a5", - "lab_l": 72.26, - "lab_a": 19.41, - "lab_b": 6.77, - "warmCool": 56.16, - "lightDeep": 30.39, - "cluster": 2 - }, - { - "id": "0ed05f59-e439-4367-8951-99bb0e6e99ad", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "color_name": "13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", - "hex": "#d29d8f", - "lab_l": 69.43, - "lab_a": 18.03, - "lab_b": 14.72, - "warmCool": 59.57, - "lightDeep": 34.63, - "cluster": 2 - }, - { - "id": "21890fc3-32e9-4c93-8208-f37f41f4b379", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "color_name": "14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", - "hex": "#df968e", - "lab_l": 69.24, - "lab_a": 26.2, - "lab_b": 15.39, - "warmCool": 60.02, - "lightDeep": 32.75, - "cluster": 2 - }, - { - "id": "660a7198-216d-4bff-aa76-e1f332be81ff", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "color_name": "15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", - "hex": "#d88d7a", - "lab_l": 65.99, - "lab_a": 26.02, - "lab_b": 21.69, - "warmCool": 61.55, - "lightDeep": 36.98, - "cluster": 2 - }, - { - "id": "030b8f73-d685-4bcc-81ce-3e4cff60badf", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "color_name": "펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", - "hex": "#d45c7b", - "lab_l": 55.25, - "lab_a": 50.09, - "lab_b": 6.01, - "warmCool": 54.18, - "lightDeep": 42.31, - "cluster": 0 + "lab_a": 36.33, + "lab_b": 23.69, + "warmCool": 64.42, + "lightDeep": 33.92, + "cluster": 1 }, { - "id": "43abb70c-37b9-423f-90bf-958bc1ad4e1a", + "id": "e572778a-bf40-4c4e-b6fb-ea667ac97800", "brand": "romand", "category": "Lips", - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "color_name": "36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", + "color_name": "10 베어 애프리콧", + "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", - "hex": "#e4a49e", - "lab_l": 73.39, - "lab_a": 22.7, - "lab_b": 12.73, - "warmCool": 59.89, - "lightDeep": 29.45, + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7", + "hex": "#e98d88", + "lab_l": 68.25, + "lab_a": 34.44, + "lab_b": 17.27, + "warmCool": 63.63, + "lightDeep": 27.65, "cluster": 2 }, { - "id": "d78da058-47ff-4fcb-b0c5-dfc3f73bc9fa", + "id": "6ac3276f-3745-4ffb-b830-53eb087547a7", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "color_name": "17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", + "color_name": "09 멀드 피치", + "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", - "hex": "#686064", - "lab_l": 41.84, - "lab_a": 3.68, - "lab_b": -1.15, - "warmCool": 50, - "lightDeep": 58.63, + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", + "hex": "#d88b89", + "lab_l": 65.73, + "lab_a": 29.1, + "lab_b": 13.26, + "warmCool": 60.11, + "lightDeep": 30.78, "cluster": 1 }, { - "id": "f71e86f6-e2d1-4300-abcc-f0d3313c6e72", + "id": "1bad06a3-1a67-44d2-82a5-b2a10a7ab290", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "color_name": "16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", + "color_name": "08 핑크 펌킨", + "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", - "hex": "#936f70", - "lab_l": 50.72, - "lab_a": 14.39, - "lab_b": 5.15, - "warmCool": 52.65, - "lightDeep": 49.53, + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", + "hex": "#d6746d", + "lab_l": 59.87, + "lab_a": 37.62, + "lab_b": 20.71, + "warmCool": 61.9, + "lightDeep": 36.67, "cluster": 1 }, { - "id": "129d267f-2f89-45bb-98b9-fc9c144287a0", + "id": "64fc166a-e44d-476f-a4be-8513eb34c11e", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "color_name": "06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", + "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", + "color_name": "07 체리 밤", + "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "hex": "#886f70", - "lab_l": 49.41, - "lab_a": 10.06, - "lab_b": 3.4, - "warmCool": 51.96, - "lightDeep": 51.25, + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", + "hex": "#b34f5a", + "lab_l": 46.97, + "lab_a": 41.6, + "lab_b": 13.65, + "warmCool": 56.21, + "lightDeep": 49.41, + "cluster": 1 + }, + { + "id": "0c4daa58-b564-4ebe-9231-949d2448b0a2", + "brand": "romand", + "category": "Lips", + "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", + "color_name": "05 쥬쥬브", + "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", + "hex": "#ce7373", + "lab_l": 58.67, + "lab_a": 35.71, + "lab_b": 15.85, + "warmCool": 59.29, + "lightDeep": 37.06, "cluster": 1 }, { - "id": "acc203c5-1625-46b2-a9d8-bb453d0ac930", + "id": "71c10932-cb6d-4db1-b0b8-461403db6f46", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", @@ -794,12 +743,12 @@ "lab_l": 86.76, "lab_a": 10.93, "lab_b": 0.19, - "warmCool": 53.53, - "lightDeep": 19.73, + "warmCool": 54.41, + "lightDeep": 12.16, "cluster": 3 }, { - "id": "0360c61a-b1ba-449d-9fc5-bf473ea088ab", + "id": "75e91c80-ada7-44f1-860c-17591fec811b", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", @@ -811,12 +760,12 @@ "lab_l": 86.96, "lab_a": 8.45, "lab_b": 6.46, - "warmCool": 61.07, - "lightDeep": 20.35, - "cluster": 3 + "warmCool": 63.84, + "lightDeep": 12.94, + "cluster": 2 }, { - "id": "d913b2cb-3f1d-4865-99c9-104b681fa7a6", + "id": "6d9c6994-a026-40db-9ce0-d51ae481552f", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", @@ -828,12 +777,12 @@ "lab_l": 72.77, "lab_a": 38.67, "lab_b": 10.95, - "warmCool": 59.88, - "lightDeep": 27.25, + "warmCool": 62.35, + "lightDeep": 21.57, "cluster": 2 }, { - "id": "d51fdbaf-1cf3-4d69-b609-d2e82147da6c", + "id": "278e5ee0-6874-4a74-9fec-800df0568029", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", @@ -845,12 +794,63 @@ "lab_l": 60.49, "lab_a": 63.36, "lab_b": -5.11, - "warmCool": 51.55, - "lightDeep": 37.92, + "warmCool": 51.94, + "lightDeep": 34.9, + "cluster": 3 + }, + { + "id": "a5c019d6-0c38-4f75-92e7-7cc913eb60ee", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", + "color_name": "17 베리 인 블랙", + "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", + "hex": "#686064", + "lab_l": 41.84, + "lab_a": 3.68, + "lab_b": -1.15, + "warmCool": 50, + "lightDeep": 60.78, + "cluster": 0 + }, + { + "id": "04389ed6-cfe5-4843-9047-20f3c7e6c627", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", + "color_name": "16 키튼 피치", + "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", + "hex": "#936f70", + "lab_l": 50.72, + "lab_a": 14.39, + "lab_b": 5.15, + "warmCool": 53.32, + "lightDeep": 49.41, + "cluster": 0 + }, + { + "id": "083697b4-2f5a-4ae2-b82f-e88c5f7f6120", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", + "color_name": "06 카야 피그", + "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", + "hex": "#886f70", + "lab_l": 49.41, + "lab_a": 10.06, + "lab_b": 3.4, + "warmCool": 52.45, + "lightDeep": 51.57, "cluster": 0 }, { - "id": "58cfa7d4-9e93-4db2-849e-b640ca8385f6", + "id": "98dca307-9f09-43d9-9d2c-48f67db44dee", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", @@ -862,12 +862,12 @@ "lab_l": 83.3, "lab_a": 9.94, "lab_b": 12.64, - "warmCool": 63.65, - "lightDeep": 24.27, - "cluster": 3 + "warmCool": 67.07, + "lightDeep": 17.84, + "cluster": 2 }, { - "id": "6b18d829-8fa5-482f-ac74-bf1032fc8c67", + "id": "b4d5ef03-754e-4946-a4b7-644ea7b8c21d", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", @@ -879,12 +879,12 @@ "lab_l": 82.7, "lab_a": 10.2, "lab_b": 5.47, - "warmCool": 57.39, - "lightDeep": 23.33, - "cluster": 3 + "warmCool": 59.24, + "lightDeep": 16.67, + "cluster": 2 }, { - "id": "f0af499d-b2a3-4201-b0a4-0cffb06f69d1", + "id": "ae8a4e12-4a2c-4a8e-9722-e69f5b47e4f9", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", @@ -896,12 +896,12 @@ "lab_l": 69.84, "lab_a": 19.23, "lab_b": 6.62, - "warmCool": 55.45, - "lightDeep": 32.59, - "cluster": 2 + "warmCool": 56.81, + "lightDeep": 28.24, + "cluster": 3 }, { - "id": "56cc8ba6-3059-46b7-9fd2-84bbf1b9ebcd", + "id": "e6924cc5-ef5e-462c-9692-209a7a057fd1", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", @@ -913,12 +913,12 @@ "lab_l": 80.28, "lab_a": 12.35, "lab_b": 10.4, - "warmCool": 60.53, - "lightDeep": 25.84, - "cluster": 3 + "warmCool": 63.16, + "lightDeep": 19.8, + "cluster": 2 }, { - "id": "79e08d1c-19a3-4377-a710-cba89b246709", + "id": "3900c241-6a2a-4afd-ac57-3bb167cc84d6", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", @@ -930,12 +930,12 @@ "lab_l": 77.93, "lab_a": 23.96, "lab_b": 3.68, - "warmCool": 56.37, - "lightDeep": 25.06, + "warmCool": 57.96, + "lightDeep": 18.82, "cluster": 3 }, { - "id": "450cb4de-e40c-4301-bf15-d2cb87b58650", + "id": "5003a42f-9f49-4ddf-a899-ce17358696fa", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", @@ -947,12 +947,12 @@ "lab_l": 77.51, "lab_a": 17.06, "lab_b": 9.63, - "warmCool": 59.25, - "lightDeep": 26.78, - "cluster": 3 + "warmCool": 61.57, + "lightDeep": 20.98, + "cluster": 2 }, { - "id": "587eecaa-6532-4644-9bd2-8c8bf1e8a195", + "id": "3737491d-1138-4075-918a-ffac868ba77c", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", @@ -964,12 +964,12 @@ "lab_l": 67.18, "lab_a": 28.78, "lab_b": 7.81, - "warmCool": 56.14, - "lightDeep": 33.53, - "cluster": 2 + "warmCool": 57.68, + "lightDeep": 29.41, + "cluster": 3 }, { - "id": "d4e40595-6024-4c1d-b159-b3213f56f61f", + "id": "7fed05ea-b1f8-4dec-9e3a-759797b1ec06", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", @@ -981,12 +981,12 @@ "lab_l": 75.71, "lab_a": 11.34, "lab_b": 8.3, - "warmCool": 57.38, - "lightDeep": 29.76, - "cluster": 3 + "warmCool": 59.23, + "lightDeep": 24.71, + "cluster": 2 }, { - "id": "247f4663-5967-4872-88c6-577fabda407c", + "id": "b4a88e82-f6ef-435e-8401-d9503b900638", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", @@ -998,12 +998,12 @@ "lab_l": 69.72, "lab_a": 17.07, "lab_b": 3.23, - "warmCool": 53.67, - "lightDeep": 33.22, - "cluster": 2 + "warmCool": 54.59, + "lightDeep": 29.02, + "cluster": 3 }, { - "id": "b97ba469-b7a2-4e62-95f3-2e8049600841", + "id": "d5f0059c-d64a-4b8b-af14-81b46a032483", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", @@ -1015,12 +1015,12 @@ "lab_l": 46.46, "lab_a": 36.84, "lab_b": 15.58, - "warmCool": 55.43, - "lightDeep": 50.16, - "cluster": 0 + "warmCool": 56.78, + "lightDeep": 50.2, + "cluster": 1 }, { - "id": "1f4fd646-944b-47ab-9924-987e89ad8c93", + "id": "a9b8ed3b-168d-4770-b15f-f60d3fd429fe", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", @@ -1032,12 +1032,12 @@ "lab_l": 81.14, "lab_a": 8.72, "lab_b": -3.65, - "warmCool": 47.19, - "lightDeep": 25.53, + "warmCool": 46.49, + "lightDeep": 19.41, "cluster": 3 }, { - "id": "1f0de0fb-496b-49c0-926b-539c17e44758", + "id": "404c60b8-bab9-41b3-abee-79f58bcfed87", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", @@ -1049,12 +1049,12 @@ "lab_l": 83.6, "lab_a": 15.29, "lab_b": -8.02, - "warmCool": 39.83, - "lightDeep": 22.71, + "warmCool": 37.28, + "lightDeep": 15.88, "cluster": 3 }, { - "id": "58bb7b88-83ce-4eaf-8013-7ee165515384", + "id": "ca495e42-3ae4-44f4-ab74-c2adcac58fbf", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", @@ -1066,12 +1066,12 @@ "lab_l": 87.33, "lab_a": 4.44, "lab_b": 22.48, - "warmCool": 72.28, - "lightDeep": 24.27, - "cluster": 3 + "warmCool": 77.84, + "lightDeep": 17.84, + "cluster": 2 }, { - "id": "c565f605-2955-43d5-91c8-3e060e7339d9", + "id": "08c4c9f9-6de7-4c14-9581-5d5b979b67c8", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", @@ -1083,12 +1083,12 @@ "lab_l": 86.82, "lab_a": 9.92, "lab_b": 11.53, - "warmCool": 65.61, - "lightDeep": 20.98, - "cluster": 3 + "warmCool": 69.51, + "lightDeep": 13.73, + "cluster": 2 }, { - "id": "679e2b2b-4506-41f4-a318-bb4ecfefc1a3", + "id": "e714de6f-8651-474f-bed1-4a46436f9926", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", @@ -1101,11 +1101,11 @@ "lab_a": 0.25, "lab_b": -0.61, "warmCool": 50, - "lightDeep": 20.51, + "lightDeep": 13.14, "cluster": 3 }, { - "id": "c232563b-a8c5-45c0-8549-bebe80e0a950", + "id": "bdaf40c6-a0d5-4cca-96d1-0db037c90bc1", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", @@ -1117,12 +1117,12 @@ "lab_l": 53.29, "lab_a": 28.22, "lab_b": 22.09, - "warmCool": 58.54, - "lightDeep": 47.33, - "cluster": 0 + "warmCool": 60.67, + "lightDeep": 46.67, + "cluster": 1 }, { - "id": "01842932-9555-4609-b422-c1201599afe0", + "id": "807cbb63-e06c-4e32-80de-89b95366c8a2", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", @@ -1134,12 +1134,12 @@ "lab_l": 63.76, "lab_a": 30.63, "lab_b": 12.4, - "warmCool": 57.25, - "lightDeep": 36.04, - "cluster": 2 + "warmCool": 59.06, + "lightDeep": 32.55, + "cluster": 1 }, { - "id": "5c2a9cf0-3ef3-4dab-8ce5-4e699b8fbe2b", + "id": "672bc8d6-b75b-4485-9c20-804e13b1d3c1", "brand": "romand", "category": "Lips", "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", @@ -1151,12 +1151,12 @@ "lab_l": 66.3, "lab_a": 26.76, "lab_b": 15.73, - "warmCool": 59.22, - "lightDeep": 35.25, + "warmCool": 61.52, + "lightDeep": 31.57, "cluster": 2 }, { - "id": "c621725c-51e5-4cef-b6ef-cf750847bb19", + "id": "18d350e1-0090-47f5-8fbf-0f4872b46e0c", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", @@ -1168,12 +1168,12 @@ "lab_l": 56.76, "lab_a": 35.85, "lab_b": 14.94, - "warmCool": 56.88, - "lightDeep": 41.37, - "cluster": 0 + "warmCool": 58.6, + "lightDeep": 39.22, + "cluster": 1 }, { - "id": "5948abf0-990f-48f0-978d-cf4ed09cd219", + "id": "664aedcd-4f19-42df-8a28-d1d756f4cbaf", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", @@ -1185,12 +1185,12 @@ "lab_l": 59.18, "lab_a": 26.05, "lab_b": 15.04, - "warmCool": 57.28, - "lightDeep": 41.37, - "cluster": 2 + "warmCool": 59.1, + "lightDeep": 39.22, + "cluster": 1 }, { - "id": "8580e08a-96ac-48fb-a1c7-e8a14f289a06", + "id": "4f82c58d-ac2e-473d-b3c3-bda52418d1e7", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", @@ -1202,12 +1202,12 @@ "lab_l": 53.1, "lab_a": 20.82, "lab_b": 11.5, - "warmCool": 55.01, - "lightDeep": 46.86, - "cluster": 0 + "warmCool": 56.26, + "lightDeep": 46.08, + "cluster": 1 }, { - "id": "ba467c69-d3ed-4c8b-8630-4d5773759841", + "id": "a5375e55-6078-40f3-8047-960b9bc95787", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", @@ -1219,12 +1219,12 @@ "lab_l": 58.5, "lab_a": 28.7, "lab_b": 6.7, - "warmCool": 54.31, - "lightDeep": 41.06, - "cluster": 0 + "warmCool": 55.39, + "lightDeep": 38.82, + "cluster": 3 }, { - "id": "9ae57ab3-3bc8-47ae-a944-651bba48c6b9", + "id": "1bf38ad6-81fe-45c0-a1ec-e5f92d116d76", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", @@ -1236,12 +1236,12 @@ "lab_l": 60.61, "lab_a": 24.26, "lab_b": 8.11, - "warmCool": 54.92, - "lightDeep": 39.8, - "cluster": 2 + "warmCool": 56.15, + "lightDeep": 37.25, + "cluster": 3 }, { - "id": "a19ebd66-a30b-47df-a88a-6155d782255b", + "id": "47fb83eb-86c2-46fb-8d65-77ec463c73ce", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", @@ -1254,11 +1254,11 @@ "lab_a": 0.93, "lab_b": -0.76, "warmCool": 50, - "lightDeep": 18.78, + "lightDeep": 10.98, "cluster": 3 }, { - "id": "679545da-ced9-4fbb-a2e8-5aae8e3704af", + "id": "35764400-d47d-4e5e-ad83-4f28a7a4d9e7", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", @@ -1270,80 +1270,182 @@ "lab_l": 80.34, "lab_a": 18.81, "lab_b": 17.11, - "warmCool": 65.75, - "lightDeep": 25.37, - "cluster": 3 + "warmCool": 69.68, + "lightDeep": 19.22, + "cluster": 2 }, { - "id": "9c791fc9-0c76-46aa-a0be-692de6718109", + "id": "7a668a31-e2e1-4f79-93c4-6e1336a00a43", "brand": "romand", "category": "Lips", "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", "color_name": "04 칠리 업", "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85", - "hex": "#b8645f", - "lab_l": 52.15, - "lab_a": 32.88, - "lab_b": 17.78, - "warmCool": 56.92, - "lightDeep": 46.24, - "cluster": 0 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85", + "hex": "#b8645f", + "lab_l": 52.15, + "lab_a": 32.88, + "lab_b": 17.78, + "warmCool": 58.64, + "lightDeep": 45.29, + "cluster": 1 + }, + { + "id": "ca4ba3ac-9db3-4ea2-bc5b-bcb3aac3c09a", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", + "color_name": "06 툴리안", + "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88", + "hex": "#cf728d", + "lab_l": 59.34, + "lab_a": 39.72, + "lab_b": 1.63, + "warmCool": 53.96, + "lightDeep": 37.06, + "cluster": 3 + }, + { + "id": "6fe2b5ae-0fa2-4c1c-bdd1-2f999b9042a4", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", + "color_name": "07 체리 웨이", + "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4", + "hex": "#d15d67", + "lab_l": 54.64, + "lab_a": 46.86, + "lab_b": 17.17, + "warmCool": 58.65, + "lightDeep": 40.78, + "cluster": 1 + }, + { + "id": "a5e13466-454a-4657-b540-4131fbcc9eae", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", + "color_name": "03 이프 로즈", + "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88", + "hex": "#be6e70", + "lab_l": 55.61, + "lab_a": 31.83, + "lab_b": 12.94, + "warmCool": 57.32, + "lightDeep": 41.18, + "cluster": 1 + }, + { + "id": "bd4eba83-890d-4e4b-804e-08ea78b6bc50", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", + "color_name": "12 캐니언", + "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", + "hex": "#cd8f82", + "lab_l": 65.26, + "lab_a": 21.92, + "lab_b": 16.11, + "warmCool": 61.4, + "lightDeep": 34.31, + "cluster": 2 + }, + { + "id": "be223aca-77d0-4029-bb9c-b74f33841212", + "brand": "romand", + "category": "Lips", + "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", + "color_name": "13 커스터드 모브", + "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", + "hex": "#d6989c", + "lab_l": 69.1, + "lab_a": 23.65, + "lab_b": 7.19, + "warmCool": 57.4, + "lightDeep": 28.24, + "cluster": 3 + }, + { + "id": "b74d5584-523f-4406-9429-64fbaf157b8f", + "brand": "romand", + "category": "Lips", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", + "color_name": "14 모브 문", + "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", + "price": "9,900원", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", + "hex": "#d49ba6", + "lab_l": 69.84, + "lab_a": 22.65, + "lab_b": 2.75, + "warmCool": 54.9, + "lightDeep": 28.04, + "cluster": 3 }, { - "id": "a6a4f541-4e96-4d05-88da-a3a22cedf463", + "id": "7619ab1f-7330-45c8-a2b0-e99bf94afdd3", "brand": "romand", "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "color_name": "06 툴리안", - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", + "color_name": "15 누디 선다운", + "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88", - "hex": "#cf728d", - "lab_l": 59.34, - "lab_a": 39.72, - "lab_b": 1.63, - "warmCool": 53.17, - "lightDeep": 39.65, - "cluster": 0 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", + "hex": "#d5a295", + "lab_l": 71.1, + "lab_a": 17.37, + "lab_b": 13.95, + "warmCool": 61.99, + "lightDeep": 29.02, + "cluster": 2 }, { - "id": "37c155d8-f204-4a50-96e9-0a8161b96c90", + "id": "95d605b8-f71c-49f6-a1ad-b09b92555d1f", "brand": "romand", "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "color_name": "07 체리 웨이", - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", + "color_name": "16 피그 라이즈", + "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4", - "hex": "#d15d67", - "lab_l": 54.64, - "lab_a": 46.86, - "lab_b": 17.17, - "warmCool": 56.92, - "lightDeep": 42.63, - "cluster": 0 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", + "hex": "#c4898d", + "lab_l": 63.26, + "lab_a": 23.04, + "lab_b": 7.21, + "warmCool": 55.98, + "lightDeep": 34.71, + "cluster": 3 }, { - "id": "550049c9-a8a7-4c9a-a45d-b0b5d7ff5d12", + "id": "67b1b66c-71be-4754-8996-9b789f41b6c5", "brand": "romand", "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "color_name": "03 이프 로즈", - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", + "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", + "color_name": "17 우디 선셋", + "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88", - "hex": "#be6e70", - "lab_l": 55.61, - "lab_a": 31.83, - "lab_b": 12.94, - "warmCool": 55.85, - "lightDeep": 42.94, - "cluster": 0 + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", + "hex": "#ac7f7d", + "lab_l": 57.67, + "lab_a": 17.5, + "lab_b": 7.62, + "warmCool": 55.4, + "lightDeep": 41.76, + "cluster": 3 }, { - "id": "ffe21a6a-3fe2-43fe-a017-c75de910d409", + "id": "e28ca45d-1356-4e71-9466-9cf7349d909a", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 05 딤모브", @@ -1355,29 +1457,29 @@ "lab_l": 60.51, "lab_a": 18.08, "lab_b": 6.74, - "warmCool": 54.27, - "lightDeep": 40.59, - "cluster": 2 + "warmCool": 55.34, + "lightDeep": 38.24, + "cluster": 3 }, { - "id": "aaee454a-4385-4c6b-80d6-1aa588e76f4b", + "id": "aadc9b2e-2556-4435-98c0-6d5378d69b38", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "color_name": "02 너티 베이그", + "name": "롬앤 글래스팅 컬러 글로스 / 02 너티베이그", + "color_name": "02 너티베이그", "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%EB%B2%A0%EC%9D%B4%EA%B7%B8", "hex": "#d29e8f", "lab_l": 69.63, "lab_a": 17.49, "lab_b": 14.97, - "warmCool": 59.77, - "lightDeep": 34.63, + "warmCool": 62.21, + "lightDeep": 30.78, "cluster": 2 }, { - "id": "986543ac-819f-4a2c-9d9a-cd22db9da4a6", + "id": "ca7cc89d-8612-47ad-84fa-4a0029e5acf8", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", @@ -1389,12 +1491,12 @@ "lab_l": 63.79, "lab_a": 25.92, "lab_b": 3.04, - "warmCool": 53.49, - "lightDeep": 37.14, - "cluster": 2 + "warmCool": 54.36, + "lightDeep": 33.92, + "cluster": 3 }, { - "id": "9359d1fa-71e7-45cb-b14f-a234204bfbb6", + "id": "8a9a89c7-0dc7-4e09-af02-c6b532acf90e", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", @@ -1406,29 +1508,29 @@ "lab_l": 62.96, "lab_a": 21.66, "lab_b": 6.63, - "warmCool": 54.62, - "lightDeep": 38.08, - "cluster": 2 + "warmCool": 55.78, + "lightDeep": 35.1, + "cluster": 3 }, { - "id": "68c057b9-bf64-43eb-bfc6-f68062fcc273", + "id": "ac2d1341-7016-42b1-9e3e-fe5f4bc46476", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "color_name": "06 디픈 무어", + "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈무어", + "color_name": "06 디픈무어", "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%EB%AC%B4%EC%96%B4", "hex": "#b27f79", "lab_l": 58.16, "lab_a": 18.8, "lab_b": 11.06, - "warmCool": 55.66, - "lightDeep": 43.1, - "cluster": 2 + "warmCool": 57.08, + "lightDeep": 41.37, + "cluster": 1 }, { - "id": "418d0db8-e6d3-42b8-b715-05f8bd67e56b", + "id": "842cb359-cb1e-49ec-8569-628675208a31", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", @@ -1440,12 +1542,12 @@ "lab_l": 76.58, "lab_a": 20.73, "lab_b": 3.92, - "warmCool": 55.76, - "lightDeep": 26.63, + "warmCool": 57.2, + "lightDeep": 20.78, "cluster": 3 }, { - "id": "0df6f4f6-5cca-4991-9a74-75bc52020c24", + "id": "bf7772f5-4c82-4e97-a7a7-3ba93df5e11c", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", @@ -1457,29 +1559,29 @@ "lab_l": 64.51, "lab_a": 29.57, "lab_b": 1.81, - "warmCool": 53.32, - "lightDeep": 36.2, - "cluster": 2 + "warmCool": 54.14, + "lightDeep": 32.75, + "cluster": 3 }, { - "id": "324d1e09-25af-4704-ab0c-9dd669a3f255", + "id": "881dddb2-0c6a-4d47-baa6-35b0e504ab30", "brand": "romand", "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "color_name": "07 스프링 피버", + "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링피버", + "color_name": "07 스프링피버", "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84", + "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%ED%94%BC%EB%B2%84", "hex": "#e9a09f", "lab_l": 73.03, "lab_a": 27.06, "lab_b": 11.5, - "warmCool": 59.43, - "lightDeep": 28.51, + "warmCool": 61.78, + "lightDeep": 23.14, "cluster": 2 }, { - "id": "4000ca86-fa94-433a-8c28-437b8b2ec702", + "id": "61730b9b-b8e6-483c-af6e-67c704157228", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", @@ -1491,80 +1593,12 @@ "lab_l": 70.71, "lab_a": 28.05, "lab_b": 5.54, - "warmCool": 55.7, - "lightDeep": 30.71, - "cluster": 2 - }, - { - "id": "7c57701a-2899-4e36-911d-c3de14fac2f8", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "color_name": "14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", - "hex": "#d49ba6", - "lab_l": 69.84, - "lab_a": 22.65, - "lab_b": 2.75, - "warmCool": 53.92, - "lightDeep": 32.43, - "cluster": 2 - }, - { - "id": "67b2b414-9c12-4aa4-9666-4adf1ec73666", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "color_name": "15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", - "hex": "#d5a295", - "lab_l": 71.1, - "lab_a": 17.37, - "lab_b": 13.95, - "warmCool": 59.59, - "lightDeep": 33.22, - "cluster": 2 - }, - { - "id": "6bbd9c1b-5556-4745-b39f-91fe09d12dfd", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "color_name": "16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", - "hex": "#c4898d", - "lab_l": 63.26, - "lab_a": 23.04, - "lab_b": 7.21, - "warmCool": 54.79, - "lightDeep": 37.76, - "cluster": 2 - }, - { - "id": "46816127-8b1a-48e7-be0f-2d079db2dc74", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "color_name": "17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", - "hex": "#ac7f7d", - "lab_l": 57.67, - "lab_a": 17.5, - "lab_b": 7.62, - "warmCool": 54.32, - "lightDeep": 43.41, - "cluster": 2 + "warmCool": 57.13, + "lightDeep": 25.88, + "cluster": 3 }, { - "id": "e543bef5-4ca0-44e9-bfca-ee08eced5aa2", + "id": "c4f07667-9a50-46a1-baea-461debee96c1", "brand": "romand", "category": "Lips", "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", @@ -1576,12 +1610,12 @@ "lab_l": 41.73, "lab_a": 22.43, "lab_b": 1.78, - "warmCool": 52.13, - "lightDeep": 55.8, - "cluster": 1 + "warmCool": 52.67, + "lightDeep": 57.25, + "cluster": 0 }, { - "id": "22fc5c7d-c8ab-4ec9-825e-37da3eca9940", + "id": "7e41363a-b02f-43f8-b26f-bf3b361cbd41", "brand": "romand", "category": "Lips", "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", @@ -1593,46 +1627,12 @@ "lab_l": 48.42, "lab_a": 51.33, "lab_b": -4.95, - "warmCool": 50.81, - "lightDeep": 49.06, - "cluster": 0 - }, - { - "id": "228f0017-e135-45e7-ab0b-f8bee33fd5a3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "color_name": "12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", - "hex": "#cd8f82", - "lab_l": 65.26, - "lab_a": 21.92, - "lab_b": 16.11, - "warmCool": 59.12, - "lightDeep": 37.45, - "cluster": 2 - }, - { - "id": "c0d29700-600e-4376-8e9b-c73debfe6628", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "color_name": "13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", - "hex": "#d6989c", - "lab_l": 69.1, - "lab_a": 23.65, - "lab_b": 7.19, - "warmCool": 55.92, - "lightDeep": 32.59, - "cluster": 2 + "warmCool": 51.02, + "lightDeep": 48.82, + "cluster": 3 }, { - "id": "7c91fa1b-5347-447a-b752-629c915a4188", + "id": "17c6c617-0786-49e2-a9fd-244147c9b4bb", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", @@ -1644,12 +1644,12 @@ "lab_l": 30.06, "lab_a": 6.57, "lab_b": -25.5, - "warmCool": 43.8, - "lightDeep": 64.27, - "cluster": 1 + "warmCool": 42.25, + "lightDeep": 67.84, + "cluster": 0 }, { - "id": "0cee538b-beb7-49ed-91f8-78afa3f1298d", + "id": "6539ae47-e6b6-44c9-b3c6-2e5111e25487", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", @@ -1661,12 +1661,12 @@ "lab_l": 89.48, "lab_a": 1.71, "lab_b": 2.14, - "warmCool": 55.09, - "lightDeep": 19.41, + "warmCool": 56.36, + "lightDeep": 11.76, "cluster": 3 }, { - "id": "c132431a-8637-4691-a0c7-4aa3b31aa045", + "id": "71929b44-3e3a-40fb-b6b0-e24d33494a30", "brand": "romand", "category": "Lips", "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", @@ -1678,12 +1678,12 @@ "lab_l": 77.75, "lab_a": 17.91, "lab_b": 10.41, - "warmCool": 59.93, - "lightDeep": 26.63, - "cluster": 3 + "warmCool": 62.42, + "lightDeep": 20.78, + "cluster": 2 }, { - "id": "5b7ad327-a914-4b87-92a4-bcd6efa1ab8b", + "id": "02771332-9d3b-45d5-9de8-4c72b28c7036", "brand": "3CE", "category": "Lips", "name": "[3CE X MUUT] BLUR WATER TINT", @@ -1695,12 +1695,12 @@ "lab_l": 31.68, "lab_a": 14.08, "lab_b": -1.58, - "warmCool": 50.71, - "lightDeep": 64.9, - "cluster": 1 + "warmCool": 50.89, + "lightDeep": 68.63, + "cluster": 0 }, { - "id": "cc78bd55-dce5-4b85-bf4f-fe6fe33f080d", + "id": "879f2aa1-6171-493c-bc4a-2cc9f1a23e7d", "brand": "3CE", "category": "Lips", "name": "[3CE X MUUT] VELVET LIP TINT", @@ -1712,12 +1712,12 @@ "lab_l": 27.13, "lab_a": 1.25, "lab_b": 3.13, - "warmCool": 53.03, - "lightDeep": 70.08, - "cluster": 1 + "warmCool": 53.79, + "lightDeep": 75.1, + "cluster": 0 }, { - "id": "481514ee-4c28-4708-ac49-e5f7f8837c96", + "id": "7d63a456-b37b-4808-8c96-fce7cec936ea", "brand": "3CE", "category": "Lips", "name": "[3CE X MUUT] CASHMERE HUG LIPSTICK", @@ -1729,12 +1729,12 @@ "lab_l": 27.14, "lab_a": 12.37, "lab_b": 2.02, - "warmCool": 52.4, - "lightDeep": 68.04, - "cluster": 1 + "warmCool": 53.0, + "lightDeep": 72.55, + "cluster": 0 }, { - "id": "5bf3fbe4-b850-43fb-9c85-5bd881d07dcc", + "id": "adc8b0bd-6880-4aa3-af69-88431f47d3e2", "brand": "3CE", "category": "Lips", "name": "3CE GLAZY LIP GLOW", @@ -1747,11 +1747,11 @@ "lab_a": 1.34, "lab_b": 0.93, "warmCool": 50, - "lightDeep": 67.73, - "cluster": 1 + "lightDeep": 72.16, + "cluster": 0 }, { - "id": "80c092b1-691a-4dc4-86dd-7c29ab3a6d66", + "id": "42bb9de0-fefa-41bf-a50f-8871f5c2812b", "brand": "3CE", "category": "Lips", "name": "3CE BLUR WATER TINT", @@ -1763,12 +1763,12 @@ "lab_l": 31.33, "lab_a": 4.51, "lab_b": 2.71, - "warmCool": 52.45, - "lightDeep": 66.31, - "cluster": 1 + "warmCool": 53.06, + "lightDeep": 70.39, + "cluster": 0 }, { - "id": "e1f21e7d-9f44-47fc-9ce4-42cc01aa19c9", + "id": "b1022180-edab-47ba-9dc9-380631e4dec6", "brand": "3CE", "category": "Lips", "name": "3CE VELVET LIP TINT", @@ -1780,12 +1780,12 @@ "lab_l": 33.27, "lab_a": 13.14, "lab_b": 5.38, - "warmCool": 53.4, - "lightDeep": 63.18, - "cluster": 1 + "warmCool": 54.25, + "lightDeep": 66.47, + "cluster": 0 }, { - "id": "f4c5e948-f91d-4f35-b8a5-ff2ef9e6ad58", + "id": "a99be2f8-5cdc-46c3-8513-c64514fccc23", "brand": "3CE", "category": "Lips", "name": "3CE CASHMERE HUG LIPSTICK", @@ -1797,12 +1797,12 @@ "lab_l": 39.05, "lab_a": 13.88, "lab_b": 2.97, - "warmCool": 52.33, - "lightDeep": 58.94, - "cluster": 1 + "warmCool": 52.91, + "lightDeep": 61.18, + "cluster": 0 }, { - "id": "0cffb8b2-7cbb-4f8a-8764-0619419ca36d", + "id": "2775698a-bb64-4c05-a3ad-e126cc9a635a", "brand": "3CE", "category": "Lips", "name": "3CE HAZY LIP CLAY", @@ -1815,11 +1815,11 @@ "lab_a": 2.25, "lab_b": 0.0, "warmCool": 50, - "lightDeep": 66.94, - "cluster": 1 + "lightDeep": 71.18, + "cluster": 0 }, { - "id": "ffb477ee-7eb4-44ea-9c48-8a0a78ddfd74", + "id": "28256242-f9bf-4184-8978-389538c69845", "brand": "3CE", "category": "Lips", "name": "3CE BLUR MATTE LIPSTICK", @@ -1832,11 +1832,11 @@ "lab_a": 0.67, "lab_b": 0.29, "warmCool": 50, - "lightDeep": 64.59, - "cluster": 1 + "lightDeep": 68.24, + "cluster": 0 }, { - "id": "fe0f55cd-80d0-4d28-8efe-5c6da1615fa5", + "id": "ad7ff592-6a21-44ce-b5a9-2dab80ab84e6", "brand": "3CE", "category": "Lips", "name": "3CE BLURRING LIQUID LIP", @@ -1848,12 +1848,12 @@ "lab_l": 28.96, "lab_a": 15.17, "lab_b": 5.92, - "warmCool": 54.02, - "lightDeep": 66.16, - "cluster": 1 + "warmCool": 55.03, + "lightDeep": 70.2, + "cluster": 0 }, { - "id": "b2cb0318-1669-4f87-84a9-8d6d2d407e2f", + "id": "1d80bc37-59f0-4136-b967-de5017916f26", "brand": "3CE", "category": "Lips", "name": "3CE CLOUD LIP TINT", @@ -1865,12 +1865,12 @@ "lab_l": 32.53, "lab_a": 9.31, "lab_b": 7.06, - "warmCool": 54.83, - "lightDeep": 65.06, - "cluster": 1 + "warmCool": 56.04, + "lightDeep": 68.82, + "cluster": 0 }, { - "id": "d873f0b7-b044-4fe3-8854-c7f23bfddf34", + "id": "0aa1c3cc-ee5e-416e-bd37-d45a964de98d", "brand": "3CE", "category": "Lips", "name": "3CE DROP GLOW GEL", @@ -1882,12 +1882,12 @@ "lab_l": 28.17, "lab_a": 9.17, "lab_b": 3.77, - "warmCool": 52.87, - "lightDeep": 67.57, - "cluster": 1 + "warmCool": 53.59, + "lightDeep": 71.96, + "cluster": 0 }, { - "id": "5c60e12a-2285-4e93-b55e-eea6a6db06f7", + "id": "5e2aba0c-13d7-4a9b-aff6-b49ac0b79f1d", "brand": "3CE", "category": "Lips", "name": "3CE GLAZE LIP TINT", @@ -1899,12 +1899,12 @@ "lab_l": 28.2, "lab_a": 3.48, "lab_b": 2.12, - "warmCool": 51.98, - "lightDeep": 68.67, - "cluster": 1 + "warmCool": 52.48, + "lightDeep": 73.33, + "cluster": 0 }, { - "id": "5652a687-3549-4cfd-9fef-40ab1fb15625", + "id": "db02f4b8-d7fd-4939-ae9e-45b9ab6f8570", "brand": "3CE", "category": "Lips", "name": "3CE LAZY POP LIP STAIN", @@ -1916,12 +1916,12 @@ "lab_l": 33.3, "lab_a": 6.03, "lab_b": 3.23, - "warmCool": 52.35, - "lightDeep": 64.59, - "cluster": 1 + "warmCool": 52.94, + "lightDeep": 68.24, + "cluster": 0 }, { - "id": "2ccb414b-dd3e-4dd0-b1d9-bffe85903b0d", + "id": "1040a232-6a85-4a37-a552-05969deca1f4", "brand": "3CE", "category": "Lips", "name": "3CE MOOD RECIPE MATTE LIP COLOR", @@ -1933,12 +1933,12 @@ "lab_l": 30.95, "lab_a": 3.27, "lab_b": 1.94, - "warmCool": 52.16, - "lightDeep": 66.78, - "cluster": 1 + "warmCool": 52.7, + "lightDeep": 70.98, + "cluster": 0 }, { - "id": "d7e80c03-3146-4921-8ab5-98b7626c1fe8", + "id": "a780d52f-05a3-4faa-b238-047f08a8144a", "brand": "3CE", "category": "Lips", "name": "3CE SHINE REFLECTOR", @@ -1950,12 +1950,12 @@ "lab_l": 40.12, "lab_a": 14.17, "lab_b": 3.68, - "warmCool": 52.53, - "lightDeep": 57.84, - "cluster": 1 + "warmCool": 53.16, + "lightDeep": 59.8, + "cluster": 0 }, { - "id": "e5ada97b-0c73-44c4-95a9-084925ef6ed6", + "id": "21fd2193-71ec-43fc-a190-c2f332ebf75e", "brand": "3CE", "category": "Lips", "name": "3CE SOFT MATTE LIPSTICK", @@ -1967,12 +1967,12 @@ "lab_l": 28.57, "lab_a": 5.9, "lab_b": 2.91, - "warmCool": 52.52, - "lightDeep": 67.88, - "cluster": 1 + "warmCool": 53.15, + "lightDeep": 72.35, + "cluster": 0 }, { - "id": "da7bef63-b905-42bf-974d-2a8401cf9b1d", + "id": "5ad69829-0a13-4904-b261-05b7aac4a4a9", "brand": "3CE", "category": "Lips", "name": "3CE SYRUP LAYERING TINT", @@ -1984,12 +1984,12 @@ "lab_l": 37.3, "lab_a": 10.05, "lab_b": 1.62, - "warmCool": 51.76, - "lightDeep": 60.82, - "cluster": 1 + "warmCool": 52.2, + "lightDeep": 63.53, + "cluster": 0 }, { - "id": "a7d87635-649c-4ca5-bc49-aa824cfc9675", + "id": "10fd5e34-7319-4bcb-87e1-b4d98358365e", "brand": "3CE", "category": "blush", "name": "[3CE X MUUT] BOUNCY BLUR BALM", @@ -2001,12 +2001,12 @@ "lab_l": 28.98, "lab_a": 4.57, "lab_b": 5.13, - "warmCool": 54.07, - "lightDeep": 68.35, - "cluster": 1 + "warmCool": 55.08, + "lightDeep": 72.94, + "cluster": 0 }, { - "id": "e13dc09e-9417-4682-a144-98113be0d2bf", + "id": "86b0145e-30d0-4be6-a865-e6bedac22eef", "brand": "3CE", "category": "blush", "name": "3CE LAYER-IT-ALL BLUSH PALETTE", @@ -2018,12 +2018,12 @@ "lab_l": 40.34, "lab_a": 8.48, "lab_b": 3.63, - "warmCool": 52.49, - "lightDeep": 58.63, - "cluster": 1 + "warmCool": 53.11, + "lightDeep": 60.78, + "cluster": 0 }, { - "id": "021a18ac-822c-41de-8f13-665ca4649ea6", + "id": "81c93ecd-91cc-434b-9956-814b94fd0104", "brand": "3CE", "category": "blush", "name": "3CE BLUSHLIGHTER", @@ -2035,12 +2035,12 @@ "lab_l": 37.01, "lab_a": 5.63, "lab_b": 0.71, - "warmCool": 51.02, - "lightDeep": 61.76, - "cluster": 1 + "warmCool": 51.27, + "lightDeep": 64.71, + "cluster": 0 }, { - "id": "ccffdf60-43c9-4cc0-acfd-56d6363f6e74", + "id": "715f6755-eb3d-44b3-bac8-8888a587a529", "brand": "3CE", "category": "blush", "name": "3CE FACE BLUSH", @@ -2052,12 +2052,12 @@ "lab_l": 10.4, "lab_a": 3.85, "lab_b": 2.52, - "warmCool": 53.62, - "lightDeep": 80.75, - "cluster": 1 + "warmCool": 54.53, + "lightDeep": 88.43, + "cluster": 0 }, { - "id": "d93d7a10-a055-4443-ab9b-046b590f245f", + "id": "99768c9e-087b-4614-b270-119fe54b523d", "brand": "3CE", "category": "blush", "name": "3CE NEW TAKE FACE BLUSHER", @@ -2069,12 +2069,12 @@ "lab_l": 35.21, "lab_a": 2.39, "lab_b": 5.7, - "warmCool": 54.24, - "lightDeep": 64.43, - "cluster": 1 + "warmCool": 55.3, + "lightDeep": 68.04, + "cluster": 0 }, { - "id": "59ba707d-7c08-4786-84d3-a8ddfe795c83", + "id": "114f25c6-4406-407c-88c8-5f414b3573ef", "brand": "3CE", "category": "blush", "name": "3CE SHEER LIQUID BLUSHER", @@ -2086,12 +2086,12 @@ "lab_l": 29.33, "lab_a": 4.77, "lab_b": 2.35, - "warmCool": 52.26, - "lightDeep": 67.57, - "cluster": 1 + "warmCool": 52.82, + "lightDeep": 71.96, + "cluster": 0 }, { - "id": "9c920444-47ea-48c6-9937-b8160cdb85f2", + "id": "b3870433-e09a-447b-bb93-30622bfb0ec5", "brand": "3CE", "category": "eyeshadow", "name": "3CE COLOR GRID EYESHADOW", @@ -2103,12 +2103,12 @@ "lab_l": 44.74, "lab_a": -6.6, "lab_b": 0.11, - "warmCool": 50.66, - "lightDeep": 58.31, - "cluster": 1 + "warmCool": 50.82, + "lightDeep": 60.39, + "cluster": 0 }, { - "id": "4b5ec573-af0a-4295-a5b3-40006ca12882", + "id": "20346dac-c67c-461b-8c88-f63062904701", "brand": "3CE", "category": "eyeshadow", "name": "[3CE X MUUT] MULTI EYE COLOR PALETTE", @@ -2120,12 +2120,12 @@ "lab_l": 34.11, "lab_a": 8.66, "lab_b": -7.92, - "warmCool": 44.67, - "lightDeep": 63.65, - "cluster": 1 + "warmCool": 43.33, + "lightDeep": 67.06, + "cluster": 0 }, { - "id": "70430544-bd86-4d41-ac2e-49827a472aed", + "id": "6b78f3a4-4a40-44a0-856f-b4065b4c98fa", "brand": "3CE", "category": "eyeshadow", "name": "3CE LAYER-IT-ALL EYESHADOW PALETTE", @@ -2137,12 +2137,12 @@ "lab_l": 41.02, "lab_a": 7.9, "lab_b": 2.22, - "warmCool": 51.79, - "lightDeep": 58.16, - "cluster": 1 + "warmCool": 52.24, + "lightDeep": 60.2, + "cluster": 0 }, { - "id": "6330673b-9616-40d3-9fec-bed08d75dcc1", + "id": "24887d17-8580-4809-aa90-ad903e400951", "brand": "3CE", "category": "eyeshadow", "name": "3CE MULTI EYE COLOR PALETTE", @@ -2154,12 +2154,12 @@ "lab_l": 32.2, "lab_a": 6.9, "lab_b": 3.41, - "warmCool": 52.61, - "lightDeep": 65.22, - "cluster": 1 + "warmCool": 53.26, + "lightDeep": 69.02, + "cluster": 0 }, { - "id": "a8ed8f6d-a884-46fe-8ba7-a679bc57a72d", + "id": "eed1502b-07c7-472d-b7e4-9cd7de630766", "brand": "3CE", "category": "eyeshadow", "name": "3CE MINI MULTI EYE COLOR PALETTE", @@ -2171,12 +2171,12 @@ "lab_l": 30.32, "lab_a": 2.95, "lab_b": 5.93, - "warmCool": 54.48, - "lightDeep": 67.88, - "cluster": 1 + "warmCool": 55.59, + "lightDeep": 72.35, + "cluster": 0 }, { - "id": "64105de9-e47f-4387-9ae8-c76493919a47", + "id": "a4c0a977-cced-4ce8-abea-f718dcff8325", "brand": "3CE", "category": "eyeshadow", "name": "3CE ALL ROUNDER FACE PALETTE", @@ -2189,11 +2189,11 @@ "lab_a": 3.23, "lab_b": -1.16, "warmCool": 50, - "lightDeep": 60.04, - "cluster": 1 + "lightDeep": 62.55, + "cluster": 0 }, { - "id": "dead0110-27cb-4189-9e42-27dc0370563a", + "id": "aae2b01b-f84f-4bcf-9979-88ab9b4900cc", "brand": "3CE", "category": "eyeshadow", "name": "3CE EYE SWITCH", @@ -2205,12 +2205,12 @@ "lab_l": 38.54, "lab_a": 11.32, "lab_b": -13.34, - "warmCool": 43.81, - "lightDeep": 59.1, - "cluster": 1 + "warmCool": 42.26, + "lightDeep": 61.37, + "cluster": 0 }, { - "id": "b6ff218b-0a66-4435-8304-57d44e4698c4", + "id": "428205ad-0aee-4888-ad22-5a3640c5afc3", "brand": "3CE", "category": "eyeshadow", "name": "3CE LIQUID PRIMER EYE SHADOW", @@ -2222,12 +2222,12 @@ "lab_l": 40.09, "lab_a": 3.19, "lab_b": 5.0, - "warmCool": 53.31, - "lightDeep": 60.35, - "cluster": 1 + "warmCool": 54.14, + "lightDeep": 62.94, + "cluster": 0 }, { - "id": "e19d7eb9-bfab-40e4-839d-e7ff11df8c21", + "id": "22b7a16e-3bf7-4385-a03e-0655fa746839", "brand": "3CE", "category": "eyeshadow", "name": "3CE NEW TAKE EYESHADOW PALETTE", @@ -2239,12 +2239,12 @@ "lab_l": 18.69, "lab_a": 4.01, "lab_b": 2.23, - "warmCool": 52.66, - "lightDeep": 75.25, - "cluster": 1 + "warmCool": 53.33, + "lightDeep": 81.57, + "cluster": 0 }, { - "id": "bc5856bb-7e4f-45b3-8be8-babc01c2acb7", + "id": "ff300de4-808b-40b8-a8c2-dd12aea92dad", "brand": "3CE", "category": "eyeshadow", "name": "3CE XL EYESHADOW PALETTE", @@ -2256,8 +2256,8 @@ "lab_l": 46.35, "lab_a": 5.9, "lab_b": 0.51, - "warmCool": 50.82, - "lightDeep": 54.55, - "cluster": 1 + "warmCool": 51.03, + "lightDeep": 55.69, + "cluster": 0 } ] \ No newline at end of file diff --git a/static/data/products_clustered_new.json b/static/data/products_clustered_new.json deleted file mode 100644 index 91e72f0..0000000 --- a/static/data/products_clustered_new.json +++ /dev/null @@ -1,2263 +0,0 @@ -[ - { - "id": "21bea116-0f90-48a1-8372-4b546978c423", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", - "color_name": "30 보늬 밤", - "image": "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000K&option_name=30%20%EB%B3%B4%EB%8A%AC%20%EB%B0%A4", - "hex": "#ba7363", - "lab_l": 55.69, - "lab_a": 26.18, - "lab_b": 20.66, - "warmCool": 60.66, - "lightDeep": 44.12, - "cluster": 2 - }, - { - "id": "9a5fe61e-ba9f-4875-9fc5-f502034fc633", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", - "color_name": "29 조선 무화과", - "image": "https://romand.io/images/product/994/vp2VylRiIA3287NecXLwESdOZlPL1uQ0uDbl1GT6.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000J&option_name=29%20%EC%A1%B0%EC%84%A0%20%EB%AC%B4%ED%99%94%EA%B3%BC", - "hex": "#e17773", - "lab_l": 62.03, - "lab_a": 40.65, - "lab_b": 20.96, - "warmCool": 62.62, - "lightDeep": 33.33, - "cluster": 0 - }, - { - "id": "8f45796f-298e-46c0-aa7a-145eb9dea9d4", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", - "color_name": "28 설화 딸기", - "image": "https://romand.io/images/product/994/0y64Ojupqdu8ZW8Z4KZ4ucrIKrdf3lpueojfZtcK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000I&option_name=28%20%EC%84%A4%ED%99%94%20%EB%94%B8%EA%B8%B0", - "hex": "#ef89a0", - "lab_l": 68.59, - "lab_a": 41.37, - "lab_b": 4.97, - "warmCool": 57.36, - "lightDeep": 26.27, - "cluster": 1 - }, - { - "id": "1a66c7c0-18da-459a-9e7e-3f3e162a0810", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", - "color_name": "27 허니 듀 멜론", - "image": "https://romand.io/images/product/994/h4KEgqv0XejM1hZxnxZF0SPOcsingVAlg9LJC2TR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000H&option_name=27%20%ED%97%88%EB%8B%88%20%EB%93%80%20%EB%A9%9C%EB%A1%A0", - "hex": "#e68e82", - "lab_l": 67.86, - "lab_a": 32.05, - "lab_b": 20.56, - "warmCool": 64.94, - "lightDeep": 29.41, - "cluster": 1 - }, - { - "id": "b4a597d4-7a85-493d-b00a-6964a897c1e7", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", - "color_name": "26 신비 복숭아", - "image": "https://romand.io/images/product/994/aL8OhiGRHY20X4WS3q8mKmqKNHCdBDYAhPvi88oy.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000G&option_name=26%20%EC%8B%A0%EB%B9%84%20%EB%B3%B5%EC%88%AD%EC%95%84", - "hex": "#ef5c66", - "lab_l": 58.95, - "lab_a": 57.27, - "lab_b": 24.63, - "warmCool": 62.3, - "lightDeep": 35.1, - "cluster": 0 - }, - { - "id": "66ffbc21-3859-426b-8b4a-81acfe32056a", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", - "color_name": "04 피그 피그", - "image": "https://romand.io/images/product/958/hVrWzeIAuVwXIUXGqSPfedtnS9ON0FiAC859PKgD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000D&option_name=04%20%ED%94%BC%EA%B7%B8%20%ED%94%BC%EA%B7%B8", - "hex": "#a74054", - "lab_l": 42.04, - "lab_a": 44.08, - "lab_b": 10.49, - "warmCool": 55.34, - "lightDeep": 54.71, - "cluster": 2 - }, - { - "id": "36b1325d-1b14-4e4e-8679-6fafac4eb813", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", - "color_name": "03 베어 그레이프", - "image": "https://romand.io/images/product/958/Ax5b75vAi528eIiYmonRqylpfzrKROrVZVxnUa5w.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000C&option_name=03%20%EB%B2%A0%EC%96%B4%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84", - "hex": "#c26573", - "lab_l": 54.05, - "lab_a": 38.5, - "lab_b": 9.23, - "warmCool": 55.96, - "lightDeep": 42.16, - "cluster": 0 - }, - { - "id": "a91d0c50-5e01-451f-b104-0ab2aa6f7ad6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", - "color_name": "02 누카다미아", - "image": "https://romand.io/images/product/958/nO3CrysMVL9U55KfxZurkmyIcryGpKjNZrYmDMr0.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000B&option_name=02%20%EB%88%84%EC%B9%B4%EB%8B%A4%EB%AF%B8%EC%95%84", - "hex": "#bd594b", - "lab_l": 50.07, - "lab_a": 39.1, - "lab_b": 27.24, - "warmCool": 61.22, - "lightDeep": 48.24, - "cluster": 0 - }, - { - "id": "4f9e71e6-d66a-487e-b1b5-95a2da49c9e3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", - "color_name": "01 포멜로 스킨", - "image": "https://romand.io/images/product/958/KrjjrJXJNXjcmUKPkXrWAyobbvyVZxEaaiGAsDaS.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000A&option_name=01%20%ED%8F%AC%EB%A9%9C%EB%A1%9C%20%EC%8A%A4%ED%82%A8", - "hex": "#d78b6f", - "lab_l": 65.01, - "lab_a": 25.9, - "lab_b": 26.95, - "warmCool": 66.24, - "lightDeep": 36.08, - "cluster": 1 - }, - { - "id": "b79901fb-6dac-4511-9767-4bd21704e294", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", - "color_name": "06 필링 앵두", - "image": "https://romand.io/images/product/958/OA70z7jUdDOWeoUQEhsm61uHilEXmHkEMSpnkIJ3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000F&option_name=06%20%ED%95%84%EB%A7%81%20%EC%95%B5%EB%91%90", - "hex": "#df666b", - "lab_l": 58.28, - "lab_a": 47.65, - "lab_b": 20.41, - "warmCool": 60.89, - "lightDeep": 36.27, - "cluster": 0 - }, - { - "id": "0d604060-193d-49fc-8bce-988091301390", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", - "color_name": "24 베어 쥬시 오", - "image": "https://romand.io/images/product/958/HVs9RVIp3xylieHLYevVIjGWwe6mlre889pPsnoQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000X&option_name=24%20%EB%B2%A0%EC%96%B4%20%EC%A5%AC%EC%8B%9C%20%EC%98%A4", - "hex": "#f6905e", - "lab_l": 69.72, - "lab_a": 34.15, - "lab_b": 42.82, - "warmCool": 75.27, - "lightDeep": 33.33, - "cluster": 0 - }, - { - "id": "a5ffebb0-1d7b-4a46-adaa-4d56f6edad19", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", - "color_name": "23 피치 피치 미", - "image": "https://romand.io/images/product/958/kOY2uHHIYeeicQZh8S162C63jtojxgS0EAq9ZR8H.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000W&option_name=23%20%ED%94%BC%EC%B9%98%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "hex": "#f07a8a", - "lab_l": 65.19, - "lab_a": 46.8, - "lab_b": 12.56, - "warmCool": 60.13, - "lightDeep": 29.02, - "cluster": 0 - }, - { - "id": "2614d23d-96ed-4d9b-b1f4-21533aa7268a", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", - "color_name": "22 도토리 밤", - "image": "https://romand.io/images/product/958/yMaewlQ2iW42hrhNZw2kLlG40dD9JY5ZRgWIqIdi.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000V&option_name=22%20%EB%8F%84%ED%86%A0%EB%A6%AC%20%EB%B0%A4", - "hex": "#c64d5c", - "lab_l": 49.6, - "lab_a": 49.42, - "lab_b": 16.83, - "warmCool": 57.37, - "lightDeep": 46.08, - "cluster": 0 - }, - { - "id": "5873a043-e3e5-49c3-b727-1ef9b1efaa99", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", - "color_name": "21 그레이프 밤", - "image": "https://romand.io/images/product/958/inczn5S3hX1dOAt7UCkPINdupgH6qbJZ1xVQpPET.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000U&option_name=21%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84%20%EB%B0%A4", - "hex": "#c72c62", - "lab_l": 45.4, - "lab_a": 62.65, - "lab_b": 7.35, - "warmCool": 53.53, - "lightDeep": 52.35, - "cluster": 0 - }, - { - "id": "906deddd-6ddf-47be-ae00-fd1bdf0e676f", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", - "color_name": "20 쥬쥬 피그", - "image": "https://romand.io/images/product/958/1I9OyW4j0wijPOsEbaoljzreN4aGXUTRlcAK7L04.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000T&option_name=20%20%EC%A5%AC%EC%A5%AC%20%ED%94%BC%EA%B7%B8", - "hex": "#e66f7e", - "lab_l": 61.4, - "lab_a": 47.49, - "lab_b": 13.9, - "warmCool": 59.41, - "lightDeep": 33.14, - "cluster": 0 - }, - { - "id": "2f2cdf81-a944-4f49-b64c-d49ed7875792", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", - "color_name": "19 썸머 센트", - "image": "https://romand.io/images/product/958/2OBJbPaANmkScXjLtjRX48shuuCgsYE9p1j9Nbz1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000S&option_name=19%20%EC%8D%B8%EB%A8%B8%20%EC%84%BC%ED%8A%B8", - "hex": "#ee7b86", - "lab_l": 65.02, - "lab_a": 45.19, - "lab_b": 14.55, - "warmCool": 60.96, - "lightDeep": 29.22, - "cluster": 0 - }, - { - "id": "40970f84-0955-4b50-90bb-a82d4561e153", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", - "color_name": "17 다크 코코넛", - "image": "https://romand.io/images/product/958/XP3eLtN4ZcjUmvyvmgyXiaeDZnwxYJ2HaDjeffdb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000Q&option_name=17%20%EB%8B%A4%ED%81%AC%20%EC%BD%94%EC%BD%94%EB%84%9B", - "hex": "#87382d", - "lab_l": 34.33, - "lab_a": 33.04, - "lab_b": 23.6, - "warmCool": 61.91, - "lightDeep": 64.71, - "cluster": 2 - }, - { - "id": "0d1df210-4905-4986-8dc0-6a844de0bcd9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", - "color_name": "16 플럼 콕", - "image": "https://romand.io/images/product/958/MeHqAPbIXbv1DYd4ttfVFpdODslPH4cKYzG8Amsb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000P&option_name=16%20%ED%94%8C%EB%9F%BC%20%EC%BD%95", - "hex": "#8b3249", - "lab_l": 34.5, - "lab_a": 39.87, - "lab_b": 6.16, - "warmCool": 54.41, - "lightDeep": 62.94, - "cluster": 2 - }, - { - "id": "9f89ea8e-c5d3-40a9-a9ff-f81d7f163445", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", - "color_name": "15 베어 피그", - "image": "https://romand.io/images/product/958/EfEL2EDNWkUFzS741F9hN9M7fFYUvjTIQ4X9GX6Y.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000O&option_name=15%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "hex": "#ac4b62", - "lab_l": 45.2, - "lab_a": 41.95, - "lab_b": 6.43, - "warmCool": 54.15, - "lightDeep": 51.57, - "cluster": 2 - }, - { - "id": "9f9e3060-c423-4de2-ad29-66cab3a560ff", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", - "color_name": "14 아몬드 로즈", - "image": "https://romand.io/images/product/958/oxJxwHns1GrJk0WAn9QXxQiil0CalGNZceDsluQg.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000N&option_name=14%20%EC%95%84%EB%AA%AC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "hex": "#b24a4d", - "lab_l": 45.5, - "lab_a": 42.61, - "lab_b": 19.79, - "warmCool": 57.74, - "lightDeep": 50.59, - "cluster": 2 - }, - { - "id": "a53dc816-28d8-493b-a320-6b099ac9974d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", - "color_name": "13 잇 도토리", - "image": "https://romand.io/images/product/958/QK4geWmsw4P0tJNFQEOeHgdrC8PD89ABuP6xCIBx.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000M&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "hex": "#9f3b2c", - "lab_l": 39.04, - "lab_a": 40.65, - "lab_b": 30.8, - "warmCool": 63.34, - "lightDeep": 60.2, - "cluster": 2 - }, - { - "id": "9ae2ef4f-9e2b-48c2-b605-e443168131aa", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", - "color_name": "12 애플 브라운", - "image": "https://romand.io/images/product/958/B06iurpARo7agGql1klQnt9XEO2blsvJFgd73Yf3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000L&option_name=12%20%EC%95%A0%ED%94%8C%20%EB%B8%8C%EB%9D%BC%EC%9A%B4", - "hex": "#d36349", - "lab_l": 55.34, - "lab_a": 42.26, - "lab_b": 35.62, - "warmCool": 65.46, - "lightDeep": 44.31, - "cluster": 0 - }, - { - "id": "caabd5bb-195f-4225-b83d-b95f586b2578", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", - "color_name": "11 파파야 잼", - "image": "https://romand.io/images/product/958/oJgHkcoeViDMvaiM7ZDEAGAOHG3BJ2L3F4rv9ZuD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000K&option_name=11%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "hex": "#e9634d", - "lab_l": 58.78, - "lab_a": 50.52, - "lab_b": 38.35, - "warmCool": 67.52, - "lightDeep": 39.22, - "cluster": 0 - }, - { - "id": "06c2254d-8d72-476d-845f-3ef1674071f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "color_name": "10 베어 애프리콧", - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7", - "hex": "#f4756d", - "lab_l": 64.21, - "lab_a": 48.04, - "lab_b": 27.72, - "warmCool": 66.52, - "lightDeep": 30.78, - "cluster": 0 - }, - { - "id": "11f11c8e-f3fe-4fc1-937e-f2067a768e73", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "color_name": "09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", - "hex": "#dc6e69", - "lab_l": 59.33, - "lab_a": 42.47, - "lab_b": 22.9, - "warmCool": 62.38, - "lightDeep": 36.27, - "cluster": 0 - }, - { - "id": "2535ace4-3ebe-4397-b1ab-3f7ec2c4bdd9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "color_name": "08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "hex": "#d64f44", - "lab_l": 52.19, - "lab_a": 52.38, - "lab_b": 34.77, - "warmCool": 63.43, - "lightDeep": 44.71, - "cluster": 0 - }, - { - "id": "be91e7bf-9b23-46cd-8ff9-66f842f0571d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "color_name": "07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", - "hex": "#a8242e", - "lab_l": 37.46, - "lab_a": 52.8, - "lab_b": 28.19, - "warmCool": 59.98, - "lightDeep": 60.0, - "cluster": 2 - }, - { - "id": "eb76ec0d-e969-4245-a2ad-61066804a775", - "brand": "romand", - "category": "Lips", - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "color_name": "05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", - "hex": "#c94e4c", - "lab_l": 49.97, - "lab_a": 48.82, - "lab_b": 26.92, - "warmCool": 60.45, - "lightDeep": 45.69, - "cluster": 0 - }, - { - "id": "60a49f29-76f9-4912-b405-1cbbfaf8909b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "color_name": "06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", - "hex": "#d08493", - "lab_l": 63.36, - "lab_a": 31.15, - "lab_b": 4.28, - "warmCool": 55.3, - "lightDeep": 33.33, - "cluster": 1 - }, - { - "id": "199e9f32-f575-4281-8903-66bd875228e9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "color_name": "05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", - "hex": "#d4837c", - "lab_l": 63.08, - "lab_a": 30.37, - "lab_b": 17.02, - "warmCool": 61.2, - "lightDeep": 34.12, - "cluster": 1 - }, - { - "id": "6e1126de-2ef5-413a-84a5-3cb6642e03d9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "color_name": "04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", - "hex": "#eb9a8a", - "lab_l": 71.29, - "lab_a": 28.46, - "lab_b": 20.93, - "warmCool": 66.82, - "lightDeep": 26.86, - "cluster": 1 - }, - { - "id": "71ce99ca-c86e-427e-bd19-f59622ad7cb1", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "color_name": "03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "hex": "#ea818e", - "lab_l": 65.87, - "lab_a": 41.58, - "lab_b": 11.13, - "warmCool": 59.58, - "lightDeep": 28.82, - "cluster": 0 - }, - { - "id": "6a3f15be-f9f4-4151-8088-b81618bdc4f9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "color_name": "02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", - "hex": "#df8494", - "lab_l": 65.23, - "lab_a": 36.77, - "lab_b": 6.63, - "warmCool": 57.06, - "lightDeep": 30.39, - "cluster": 1 - }, - { - "id": "ddcb78a1-8b88-4d01-afd9-42c81209b3ba", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "color_name": "01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", - "hex": "#eb947f", - "lab_l": 69.74, - "lab_a": 30.49, - "lab_b": 24.86, - "warmCool": 67.99, - "lightDeep": 29.02, - "cluster": 1 - }, - { - "id": "89f24b19-9513-4389-85a5-c8acabcbec9e", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "color_name": "30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", - "hex": "#db968f", - "lab_l": 68.65, - "lab_a": 25.06, - "lab_b": 14.23, - "warmCool": 61.58, - "lightDeep": 29.02, - "cluster": 1 - }, - { - "id": "8bb4c2be-c633-40ea-8b90-51fb34270472", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "color_name": "10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", - "hex": "#d09177", - "lab_l": 65.75, - "lab_a": 20.68, - "lab_b": 23.36, - "warmCool": 64.83, - "lightDeep": 35.88, - "cluster": 1 - }, - { - "id": "3651ff14-cd6c-4366-a794-8362961eb0b6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "color_name": "11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", - "hex": "#d89687", - "lab_l": 68.14, - "lab_a": 22.94, - "lab_b": 17.91, - "warmCool": 63.32, - "lightDeep": 31.18, - "cluster": 1 - }, - { - "id": "dd279635-cb31-4111-947d-9562dfc3aa84", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "color_name": "12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "hex": "#d38d8e", - "lab_l": 65.64, - "lab_a": 26.75, - "lab_b": 10.41, - "warmCool": 58.44, - "lightDeep": 30.98, - "cluster": 1 - }, - { - "id": "0ed05f59-e439-4367-8951-99bb0e6e99ad", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "color_name": "13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", - "hex": "#cf836d", - "lab_l": 62.17, - "lab_a": 26.84, - "lab_b": 24.12, - "warmCool": 63.98, - "lightDeep": 38.04, - "cluster": 1 - }, - { - "id": "21890fc3-32e9-4c93-8208-f37f41f4b379", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "color_name": "14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", - "hex": "#db6e61", - "lab_l": 59.05, - "lab_a": 41.44, - "lab_b": 27.06, - "warmCool": 63.95, - "lightDeep": 38.04, - "cluster": 0 - }, - { - "id": "660a7198-216d-4bff-aa76-e1f332be81ff", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "color_name": "15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", - "hex": "#e26f4e", - "lab_l": 59.97, - "lab_a": 42.25, - "lab_b": 38.97, - "warmCool": 68.5, - "lightDeep": 40.39, - "cluster": 0 - }, - { - "id": "030b8f73-d685-4bcc-81ce-3e4cff60badf", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "color_name": "펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", - "hex": "#ce466c", - "lab_l": 50.2, - "lab_a": 56.41, - "lab_b": 8.22, - "warmCool": 54.76, - "lightDeep": 45.88, - "cluster": 0 - }, - { - "id": "43abb70c-37b9-423f-90bf-958bc1ad4e1a", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "color_name": "36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", - "hex": "#d8887f", - "lab_l": 64.76, - "lab_a": 29.56, - "lab_b": 17.71, - "warmCool": 62.11, - "lightDeep": 32.75, - "cluster": 1 - }, - { - "id": "d78da058-47ff-4fcb-b0c5-dfc3f73bc9fa", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "color_name": "17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", - "hex": "#463c42", - "lab_l": 26.53, - "lab_a": 5.59, - "lab_b": -2.08, - "warmCool": 48.72, - "lightDeep": 74.51, - "cluster": 2 - }, - { - "id": "f71e86f6-e2d1-4300-abcc-f0d3313c6e72", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "color_name": "16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", - "hex": "#cd5354", - "lab_l": 51.62, - "lab_a": 48.48, - "lab_b": 24.48, - "warmCool": 60.15, - "lightDeep": 43.53, - "cluster": 0 - }, - { - "id": "129d267f-2f89-45bb-98b9-fc9c144287a0", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "color_name": "06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "hex": "#a84c4f", - "lab_l": 44.32, - "lab_a": 38.12, - "lab_b": 16.72, - "warmCool": 57.14, - "lightDeep": 52.16, - "cluster": 2 - }, - { - "id": "acc203c5-1625-46b2-a9d8-bb453d0ac930", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", - "color_name": "09 피오니즈", - "image": "https://romand.io/images/product/757/yJp29K9lzByeOCbmaKahgMnnJKpXIqxNxDHPDUo5.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000P&option_name=09%20%ED%94%BC%EC%98%A4%EB%8B%88%EC%A6%88", - "hex": "#ebe1e3", - "lab_l": 90.35, - "lab_a": 3.74, - "lab_b": 0.24, - "warmCool": 50.98, - "lightDeep": 9.8, - "cluster": 1 - }, - { - "id": "0360c61a-b1ba-449d-9fc5-bf473ea088ab", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", - "color_name": "08 코랄리아", - "image": "https://romand.io/images/product/757/91eoj10Pz9IVNHamBY3Xed6tIjMJchIbqjbTQZXt.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000O&option_name=08%20%EC%BD%94%EB%9E%84%EB%A6%AC%EC%95%84", - "hex": "#e9e2e0", - "lab_l": 90.37, - "lab_a": 2.02, - "lab_b": 1.82, - "warmCool": 55.83, - "lightDeep": 10.39, - "cluster": 1 - }, - { - "id": "d913b2cb-3f1d-4865-99c9-104b681fa7a6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", - "color_name": "05 피치 미", - "image": "https://romand.io/images/product/890/2XljHRzFt8z6KtKJB59rxGkn0AukfHVkMp7MqRuV.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000C&option_name=05%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "hex": "#f66775", - "lab_l": 62.15, - "lab_a": 55.89, - "lab_b": 20.49, - "warmCool": 62.19, - "lightDeep": 31.57, - "cluster": 0 - }, - { - "id": "d51fdbaf-1cf3-4d69-b609-d2e82147da6c", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", - "color_name": "04 드래곤 핑크", - "image": "https://romand.io/images/product/890/PGGDHAoQsh980WHj9zys2vbds0snYQMhizUie6PY.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000B&option_name=04%20%20%EB%93%9C%EB%9E%98%EA%B3%A4%20%ED%95%91%ED%81%AC", - "hex": "#f92e83", - "lab_l": 55.82, - "lab_a": 77.62, - "lab_b": 3.49, - "warmCool": 52.59, - "lightDeep": 42.16, - "cluster": 0 - }, - { - "id": "58cfa7d4-9e93-4db2-849e-b640ca8385f6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", - "color_name": "29 파파야 잼", - "image": "https://romand.io/images/product/49/JV8NqUVwLthMiBxlmAbQ65XLjXRHXt0Qf1nqKYqP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00OG&option_name=29%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "hex": "#e66a55", - "lab_l": 59.7, - "lab_a": 46.61, - "lab_b": 34.95, - "warmCool": 66.96, - "lightDeep": 38.24, - "cluster": 0 - }, - { - "id": "6b18d829-8fa5-482f-ac74-bf1032fc8c67", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", - "color_name": "28 베어 피그", - "image": "https://romand.io/images/product/49/PvDFiup7g5fJvEfkiJNyn73CBOkZp2VucBuNZhSq.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00NX&option_name=28%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "hex": "#d96987", - "lab_l": 58.61, - "lab_a": 46.88, - "lab_b": 4.48, - "warmCool": 55.11, - "lightDeep": 36.86, - "cluster": 0 - }, - { - "id": "f0af499d-b2a3-4201-b0a4-0cffb06f69d1", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", - "color_name": "06 카야 피그", - "image": "https://romand.io/images/product/655/vl3Kp3qFAEe2ermmW7L4cuJoBXrxXEyZ56YTaWL4.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FI&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "hex": "#d18486", - "lab_l": 63.16, - "lab_a": 29.85, - "lab_b": 11.4, - "warmCool": 58.42, - "lightDeep": 33.14, - "cluster": 1 - }, - { - "id": "56cc8ba6-3059-46b7-9fd2-84bbf1b9ebcd", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", - "color_name": "01 코코 누드", - "image": "https://romand.io/images/product/655/fkMWkrsCoeqGyO1onb5tkOvgIaxVvIbR6VdTPRoV.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FD&option_name=01%20%EC%BD%94%EC%BD%94%20%EB%88%84%EB%93%9C", - "hex": "#e8ae9d", - "lab_l": 75.99, - "lab_a": 18.9, - "lab_b": 17.0, - "warmCool": 66.52, - "lightDeep": 23.73, - "cluster": 1 - }, - { - "id": "79e08d1c-19a3-4377-a710-cba89b246709", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", - "color_name": "02 러비 핑크", - "image": "https://romand.io/images/product/655/4aMjABkiueyfVm12habY4NR4M48s7sWfJrLMMawd.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FE&option_name=02%20%EB%9F%AC%EB%B9%84%20%ED%95%91%ED%81%AC", - "hex": "#e9b7bf", - "lab_l": 79.02, - "lab_a": 19.23, - "lab_b": 2.89, - "warmCool": 56.84, - "lightDeep": 18.43, - "cluster": 1 - }, - { - "id": "450cb4de-e40c-4301-bf15-d2cb87b58650", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", - "color_name": "03 소르베 밤", - "image": "https://romand.io/images/product/655/1vV6pMdBV627mX2QSq4aPdLeQnbopcnrLXChumBo.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FF&option_name=03%20%EC%86%8C%EB%A5%B4%EB%B2%A0%20%EB%B0%A4", - "hex": "#e99990", - "lab_l": 70.96, - "lab_a": 28.9, - "lab_b": 17.13, - "warmCool": 64.53, - "lightDeep": 26.08, - "cluster": 1 - }, - { - "id": "587eecaa-6532-4644-9bd2-8c8bf1e8a195", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", - "color_name": "04 히피 베리", - "image": "https://romand.io/images/product/655/otoAh9xx2OvsmaAKFhdhVxd71Q3FoI5rCezxqpvb.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FG&option_name=04%20%ED%9E%88%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "hex": "#c82f3f", - "lab_l": 45.19, - "lab_a": 59.74, - "lab_b": 28.64, - "warmCool": 58.99, - "lightDeep": 51.57, - "cluster": 0 - }, - { - "id": "d4e40595-6024-4c1d-b159-b3213f56f61f", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", - "color_name": "05 누가 샌드", - "image": "https://romand.io/images/product/655/kpZBguUaYBShV9UjCqjxiejfWSAm0ZXFQybihogt.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FH&option_name=05%20%EB%88%84%EA%B0%80%20%EC%83%8C%EB%93%9C", - "hex": "#d09383", - "lab_l": 66.46, - "lab_a": 20.96, - "lab_b": 17.67, - "warmCool": 62.46, - "lightDeep": 33.53, - "cluster": 1 - }, - { - "id": "247f4663-5967-4872-88c6-577fabda407c", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", - "color_name": "07 모브 휩", - "image": "https://romand.io/images/product/655/lw6TIt1IFTdWl2s4no8tHeLN2YxgM9tdK1wYUips.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FJ&option_name=07%20%EB%AA%A8%EB%B8%8C%20%ED%9C%A9", - "hex": "#ae5661", - "lab_l": 47.65, - "lab_a": 36.97, - "lab_b": 10.54, - "warmCool": 55.42, - "lightDeep": 49.02, - "cluster": 2 - }, - { - "id": "b97ba469-b7a2-4e62-95f3-2e8049600841", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", - "color_name": "16 코니 소다", - "image": "https://romand.io/images/product/515/PKURcokT6yaSMCghl5QJNBTyIYCJqWCEjA1fjrsw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/515/?variant_code=P00000TV000C&option_name=16%20%EC%BD%94%EB%8B%88%20%EC%86%8C%EB%8B%A4", - "hex": "#af3235", - "lab_l": 40.66, - "lab_a": 50.48, - "lab_b": 28.08, - "warmCool": 59.91, - "lightDeep": 55.88, - "cluster": 0 - }, - { - "id": "1f4fd646-944b-47ab-9924-987e89ad8c93", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", - "color_name": "02 나이트 마린", - "image": "https://romand.io/images/product/817/SefjWR5iYfiWloM9IUu083u2ZO9f03ppLuS2wGpq.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000F&option_name=02%20%EB%82%98%EC%9D%B4%ED%8A%B8%20%EB%A7%88%EB%A6%B0", - "hex": "#c8acbf", - "lab_l": 73.25, - "lab_a": 13.4, - "lab_b": -5.92, - "warmCool": 45.02, - "lightDeep": 27.06, - "cluster": 1 - }, - { - "id": "1f0de0fb-496b-49c0-926b-539c17e44758", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", - "color_name": "03 페어리 샤베트", - "image": "https://romand.io/images/product/817/y3vX9lxV6fhJZEZylr2hOLWjEDksT9Fq4WJONf9c.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000G&option_name=03%20%ED%8E%98%EC%96%B4%EB%A6%AC%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "hex": "#d3c6cf", - "lab_l": 81.15, - "lab_a": 6.12, - "lab_b": -2.85, - "warmCool": 46.27, - "lightDeep": 19.8, - "cluster": 1 - }, - { - "id": "58bb7b88-83ce-4eaf-8013-7ee165515384", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", - "color_name": "04 허니 샤베트", - "image": "https://romand.io/images/product/817/g0Jo8nHxXolDshoOkWVJpJVFqdFPG6wgE0WJXCRZ.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000H&option_name=04%20%ED%97%88%EB%8B%88%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "hex": "#fac77e", - "lab_l": 83.27, - "lab_a": 9.46, - "lab_b": 43.26, - "warmCool": 84.11, - "lightDeep": 26.27, - "cluster": 1 - }, - { - "id": "c565f605-2955-43d5-91c8-3e060e7339d9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", - "color_name": "05 피치 샤베트", - "image": "https://romand.io/images/product/817/e1zRzltrbR79ByQNXXqyOuaPV2W268gwdd3QKRds.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000I&option_name=05%20%ED%94%BC%EC%B9%98%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "hex": "#f5d6c7", - "lab_l": 87.79, - "lab_a": 8.44, - "lab_b": 11.37, - "warmCool": 70.63, - "lightDeep": 12.94, - "cluster": 1 - }, - { - "id": "679e2b2b-4506-41f4-a318-bb4ecfefc1a3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", - "color_name": "06 클리어 젤리", - "image": "https://romand.io/images/product/817/19z3uTts0K4r09iHf3DKMSiNkT7dtRSV4LT0Q93Z.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000J&option_name=06%20%ED%81%B4%EB%A6%AC%EC%96%B4%20%EC%A0%A4%EB%A6%AC", - "hex": "#bebec1", - "lab_l": 77.06, - "lab_a": 0.56, - "lab_b": -1.5, - "warmCool": 50, - "lightDeep": 24.9, - "cluster": 1 - }, - { - "id": "c232563b-a8c5-45c0-8549-bebe80e0a950", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", - "color_name": "13 잇 도토리", - "image": "https://romand.io/images/product/300/GDNb1zDIFg6oP0su1vDRlKUc2T8aLWStdk4Tfv4o.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000I&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "hex": "#b55641", - "lab_l": 48.09, - "lab_a": 36.86, - "lab_b": 30.28, - "warmCool": 62.44, - "lightDeep": 51.76, - "cluster": 2 - }, - { - "id": "01842932-9555-4609-b422-c1201599afe0", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", - "color_name": "11 핑크 펌킨", - "image": "https://romand.io/images/product/300/HbMLPwuYY0vtbEZHE2e0Fsq9CDmXCqaZMY3LXmqR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000G&option_name=11%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "hex": "#c15658", - "lab_l": 50.34, - "lab_a": 43.09, - "lab_b": 20.07, - "warmCool": 58.67, - "lightDeep": 45.29, - "cluster": 0 - }, - { - "id": "5c2a9cf0-3ef3-4dab-8ce5-4e699b8fbe2b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", - "color_name": "10 누디 피넛", - "image": "https://romand.io/images/product/300/AM3zv8bwCn0OPbUqFxyXnt9t78kSUy088r31xR7K.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000F&option_name=10%20%EB%88%84%EB%94%94%20%ED%94%BC%EB%84%9B", - "hex": "#cd6d62", - "lab_l": 56.88, - "lab_a": 36.75, - "lab_b": 23.27, - "warmCool": 61.85, - "lightDeep": 40.59, - "cluster": 0 - }, - { - "id": "c621725c-51e5-4cef-b6ef-cf750847bb19", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", - "color_name": "02 레드 드롭", - "image": "https://romand.io/images/product/343/83hNUBzKzJQlENPe1SzACyEp4LRLHs829TPrKJL1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CJ&option_name=02%20%EB%A0%88%EB%93%9C%20%EB%93%9C%EB%A1%AD", - "hex": "#de1f25", - "lab_l": 47.81, - "lab_a": 68.94, - "lab_b": 47.46, - "warmCool": 62.47, - "lightDeep": 50.39, - "cluster": 0 - }, - { - "id": "5948abf0-990f-48f0-978d-cf4ed09cd219", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", - "color_name": "03 브릭 리버", - "image": "https://romand.io/images/product/343/hQexC85XR5qR4DkMetrs1SiMg5Y6RvUMMo90H2Nk.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CK&option_name=03%20%EB%B8%8C%EB%A6%AD%20%EB%A6%AC%EB%B2%84", - "hex": "#c54235", - "lab_l": 47.01, - "lab_a": 51.39, - "lab_b": 36.49, - "warmCool": 62.66, - "lightDeep": 50.98, - "cluster": 0 - }, - { - "id": "8580e08a-96ac-48fb-a1c7-e8a14f289a06", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", - "color_name": "04 빈티지 오션", - "image": "https://romand.io/images/product/343/BZgkQP0CTQ1Wb8FTVcLlVBqfPwSBpyZ3BeEQVdCu.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CL&option_name=04%20%EB%B9%88%ED%8B%B0%EC%A7%80%20%EC%98%A4%EC%85%98", - "hex": "#882d25", - "lab_l": 32.36, - "lab_a": 38.32, - "lab_b": 26.18, - "warmCool": 62.39, - "lightDeep": 66.08, - "cluster": 2 - }, - { - "id": "ba467c69-d3ed-4c8b-8630-4d5773759841", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", - "color_name": "05 로즈 스플래쉬", - "image": "https://romand.io/images/product/343/Zgt57l9jOIHt0W047LxwsfxW4r24ARMearETLLC2.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CM&option_name=05%20%EB%A1%9C%EC%A6%88%20%EC%8A%A4%ED%94%8C%EB%9E%98%EC%89%AC", - "hex": "#e54455", - "lab_l": 53.44, - "lab_a": 62.52, - "lab_b": 27.04, - "warmCool": 60.51, - "lightDeep": 41.76, - "cluster": 0 - }, - { - "id": "9ae57ab3-3bc8-47ae-a944-651bba48c6b9", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", - "color_name": "08 로제 스트림", - "image": "https://romand.io/images/product/343/q0xStU1kzFEXTy8AziwIyiF2WShatd1rfNwkMNzJ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CN&option_name=08%20%EB%A1%9C%EC%A0%9C%20%EC%8A%A4%ED%8A%B8%EB%A6%BC", - "hex": "#bd4a50", - "lab_l": 47.36, - "lab_a": 46.75, - "lab_b": 20.78, - "warmCool": 58.1, - "lightDeep": 48.43, - "cluster": 0 - }, - { - "id": "a19ebd66-a30b-47df-a88a-6155d782255b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", - "color_name": "00 메테오 트랙", - "image": "https://romand.io/images/product/451/MiJFUm3pVt8PRHg5dBak9UJMYVcTvtuWFqoFaMqb.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BB&option_name=00%20%EB%A9%94%ED%85%8C%EC%98%A4%20%ED%8A%B8%EB%9E%99", - "hex": "#d4d1d7", - "lab_l": 84.23, - "lab_a": 2.12, - "lab_b": -2.59, - "warmCool": 45.54, - "lightDeep": 16.86, - "cluster": 1 - }, - { - "id": "679545da-ced9-4fbb-a2e8-5aae8e3704af", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", - "color_name": "01 산호 크러쉬", - "image": "https://romand.io/images/product/451/TM1sDRWJvxsVuJaYtXOQ2C1sB3mq7icZuaJBHZvC.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BC&option_name=01%20%EC%82%B0%ED%98%B8%20%ED%81%AC%EB%9F%AC%EC%89%AC", - "hex": "#fac1b0", - "lab_l": 82.7, - "lab_a": 18.07, - "lab_b": 16.43, - "warmCool": 71.98, - "lightDeep": 16.47, - "cluster": 1 - }, - { - "id": "9c791fc9-0c76-46aa-a0be-692de6718109", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", - "color_name": "04 칠리 업", - "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85", - "hex": "#ad4540", - "lab_l": 43.53, - "lab_a": 42.24, - "lab_b": 24.91, - "warmCool": 59.77, - "lightDeep": 53.53, - "cluster": 2 - }, - { - "id": "a6a4f541-4e96-4d05-88da-a3a22cedf463", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "color_name": "06 툴리안", - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88", - "hex": "#c7577b", - "lab_l": 52.28, - "lab_a": 48.16, - "lab_b": 2.05, - "warmCool": 53.42, - "lightDeep": 43.92, - "cluster": 0 - }, - { - "id": "37c155d8-f204-4a50-96e9-0a8161b96c90", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "color_name": "07 체리 웨이", - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4", - "hex": "#e14653", - "lab_l": 52.97, - "lab_a": 60.44, - "lab_b": 27.47, - "warmCool": 60.68, - "lightDeep": 42.16, - "cluster": 0 - }, - { - "id": "550049c9-a8a7-4c9a-a45d-b0b5d7ff5d12", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "color_name": "03 이프 로즈", - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88", - "hex": "#ca5d5e", - "lab_l": 53.16, - "lab_a": 43.42, - "lab_b": 20.56, - "warmCool": 59.5, - "lightDeep": 42.16, - "cluster": 0 - }, - { - "id": "ffe21a6a-3fe2-43fe-a017-c75de910d409", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 05 딤모브", - "color_name": "05 딤모브", - "image": "https://romand.io/images/product/847/Yvq1cQTmyhIhO1bi3jqhmdS7I7EboT3muVjsDvRt.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GX&option_name=05%20%EB%94%A4%EB%AA%A8%EB%B8%8C", - "hex": "#b07c7f", - "lab_l": 57.25, - "lab_a": 20.66, - "lab_b": 6.48, - "warmCool": 54.83, - "lightDeep": 41.18, - "cluster": 1 - }, - { - "id": "aaee454a-4385-4c6b-80d6-1aa588e76f4b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "color_name": "02 너티 베이그", - "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8", - "hex": "#c47f6c", - "lab_l": 59.89, - "lab_a": 24.54, - "lab_b": 21.39, - "warmCool": 62.08, - "lightDeep": 40.39, - "cluster": 1 - }, - { - "id": "986543ac-819f-4a2c-9d9a-cd22db9da4a6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", - "color_name": "04 그레이피 웨이", - "image": "https://romand.io/images/product/847/nXD733s6NgeMuPj5hVLwORizy2MJ9r8JCdX8tYuY.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GW&option_name=04%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%BC%20%EC%9B%A8%EC%9D%B4", - "hex": "#be6979", - "lab_l": 54.48, - "lab_a": 35.63, - "lab_b": 6.25, - "warmCool": 54.95, - "lightDeep": 42.16, - "cluster": 2 - }, - { - "id": "9359d1fa-71e7-45cb-b14f-a234204bfbb6", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", - "color_name": "03 로즈 핀치", - "image": "https://romand.io/images/product/847/6EADRhaRhU7YXAytPK2rRsvg0rdS8dRTxXqzmLZm.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GV&option_name=03%20%EB%A1%9C%EC%A6%88%20%ED%95%80%EC%B9%98", - "hex": "#c28387", - "lab_l": 61.18, - "lab_a": 24.82, - "lab_b": 7.77, - "warmCool": 56.15, - "lightDeep": 36.27, - "cluster": 1 - }, - { - "id": "68c057b9-bf64-43eb-bfc6-f68062fcc273", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "color_name": "06 디픈 무어", - "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4", - "hex": "#a05e54", - "lab_l": 47.13, - "lab_a": 25.77, - "lab_b": 17.32, - "warmCool": 58.28, - "lightDeep": 52.16, - "cluster": 2 - }, - { - "id": "418d0db8-e6d3-42b8-b715-05f8bd67e56b", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", - "color_name": "01 피오니 발레", - "image": "https://romand.io/images/product/847/dt3narGEEUTYpJG5Qbldcenng5Pgke18Z9cH61ZV.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GT&option_name=01%20%ED%94%BC%EC%98%A4%EB%8B%88%20%EB%B0%9C%EB%A0%88", - "hex": "#de9fa9", - "lab_l": 71.69, - "lab_a": 24.82, - "lab_b": 4.17, - "warmCool": 56.41, - "lightDeep": 25.29, - "cluster": 1 - }, - { - "id": "0df6f4f6-5cca-4991-9a74-75bc52020c24", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", - "color_name": "09 소프트 풀", - "image": "https://romand.io/images/product/859/y5NwVVP7YTnU3l0HAlzWkwxoxw7OkNWnhfQAfNzE.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/859/?variant_code=P0000BHB000A&option_name=09%20%EC%86%8C%ED%94%84%ED%8A%B8%20%ED%92%80", - "hex": "#d65074", - "lab_l": 53.27, - "lab_a": 55.48, - "lab_b": 7.97, - "warmCool": 55.26, - "lightDeep": 42.35, - "cluster": 0 - }, - { - "id": "324d1e09-25af-4704-ab0c-9dd669a3f255", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "color_name": "07 스프링 피버", - "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84", - "hex": "#de7f82", - "lab_l": 63.61, - "lab_a": 36.92, - "lab_b": 14.54, - "warmCool": 60.24, - "lightDeep": 31.57, - "cluster": 1 - }, - { - "id": "4000ca86-fa94-433a-8c28-437b8b2ec702", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", - "color_name": "08 체리 업", - "image": "https://romand.io/images/product/879/mSn9TLjjWdOIg0T8FG2xAvhGNa7rCJNeDpH7pZ6D.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000C&option_name=08%20%EC%B2%B4%EB%A6%AC%20%EC%97%85", - "hex": "#d66279", - "lab_l": 56.5, - "lab_a": 47.75, - "lab_b": 9.59, - "warmCool": 56.56, - "lightDeep": 38.82, - "cluster": 0 - }, - { - "id": "7c57701a-2899-4e36-911d-c3de14fac2f8", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "color_name": "14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", - "hex": "#c66c7e", - "lab_l": 56.33, - "lab_a": 37.59, - "lab_b": 6.1, - "warmCool": 55.2, - "lightDeep": 40.0, - "cluster": 0 - }, - { - "id": "67b2b414-9c12-4aa4-9666-4adf1ec73666", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "color_name": "15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", - "hex": "#d38774", - "lab_l": 63.71, - "lab_a": 26.97, - "lab_b": 22.34, - "warmCool": 63.81, - "lightDeep": 35.88, - "cluster": 1 - }, - { - "id": "6bbd9c1b-5556-4745-b39f-91fe09d12dfd", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "color_name": "16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", - "hex": "#ac494f", - "lab_l": 44.38, - "lab_a": 41.09, - "lab_b": 16.91, - "warmCool": 57.09, - "lightDeep": 51.96, - "cluster": 2 - }, - { - "id": "46816127-8b1a-48e7-be0f-2d079db2dc74", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "color_name": "17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", - "hex": "#954946", - "lab_l": 40.57, - "lab_a": 31.57, - "lab_b": 16.68, - "warmCool": 57.93, - "lightDeep": 57.06, - "cluster": 2 - }, - { - "id": "e543bef5-4ca0-44e9-bfca-ee08eced5aa2", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", - "color_name": "40 블랙 사파이어", - "image": "https://romand.io/images/product/900/20zNZqkRxaxi0TBA5Xi1rHFxVbf6PteRuSJthWTM.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000G&option_name=40%20%EB%B8%94%EB%9E%99%20%EC%82%AC%ED%8C%8C%EC%9D%B4%EC%96%B4", - "hex": "#77303f", - "lab_l": 30.39, - "lab_a": 32.59, - "lab_b": 6.36, - "warmCool": 54.86, - "lightDeep": 67.25, - "cluster": 2 - }, - { - "id": "22fc5c7d-c8ab-4ec9-825e-37da3eca9940", - "brand": "romand", - "category": "Lips", - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", - "color_name": "41 자두인냥", - "image": "https://romand.io/images/product/900/XqcciN7iH3Hz7wU4LDTfsZE9t606KxLRpkubIfc7.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000H&option_name=41%20%EC%9E%90%EB%91%90%EC%9D%B8%EB%83%A5", - "hex": "#bb1d5c", - "lab_l": 41.56, - "lab_a": 62.86, - "lab_b": 5.32, - "warmCool": 52.63, - "lightDeep": 57.65, - "cluster": 0 - }, - { - "id": "228f0017-e135-45e7-ab0b-f8bee33fd5a3", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "color_name": "12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", - "hex": "#b55e52", - "lab_l": 50.03, - "lab_a": 33.97, - "lab_b": 22.87, - "warmCool": 59.96, - "lightDeep": 48.43, - "cluster": 2 - }, - { - "id": "c0d29700-600e-4376-8e9b-c73debfe6628", - "brand": "romand", - "category": "Lips", - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "color_name": "13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", - "hex": "#bc5d67", - "lab_l": 51.27, - "lab_a": 39.15, - "lab_b": 12.31, - "warmCool": 56.51, - "lightDeep": 44.9, - "cluster": 2 - }, - { - "id": "7c91fa1b-5347-447a-b752-629c915a4188", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", - "color_name": "02 블랙 베리 팟", - "image": "https://romand.io/images/product/965/09M9HtLkGPO8GNM3NToxgzDyIXoJ8Gv8WaTfyWXk.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000B&option_name=02%20%EB%B8%94%EB%9E%99%20%EB%B2%A0%EB%A6%AC%20%ED%8C%9F", - "hex": "#021d5a", - "lab_l": 13.41, - "lab_a": 18.05, - "lab_b": -39.12, - "warmCool": 33.28, - "lightDeep": 81.96, - "cluster": 3 - }, - { - "id": "0cee538b-beb7-49ed-91f8-78afa3f1298d", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", - "color_name": "01 코튼 밀크 팟", - "image": "https://romand.io/images/product/965/30BQaNQpgtjbPym2zAAqNqDsiBwAkC9OYcqlSzX4.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000A&option_name=01%20%EC%BD%94%ED%8A%BC%20%EB%B0%80%ED%81%AC%20%ED%8C%9F", - "hex": "#dcc2c3", - "lab_l": 80.59, - "lab_a": 9.34, - "lab_b": 2.87, - "warmCool": 55.41, - "lightDeep": 18.82, - "cluster": 1 - }, - { - "id": "c132431a-8637-4691-a0c7-4aa3b31aa045", - "brand": "romand", - "category": "Lips", - "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", - "color_name": "03 피치 허니 팟", - "image": "https://romand.io/images/product/965/rXnio3CB5DJRiOVlHQ1eHFvi6F8rQGxdjcQu3FhM.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000C&option_name=03%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%ED%8C%9F", - "hex": "#e8aca8", - "lab_l": 75.76, - "lab_a": 21.41, - "lab_b": 10.69, - "warmCool": 62.16, - "lightDeep": 21.57, - "cluster": 1 - }, - { - "id": "5b7ad327-a914-4b87-92a4-bcd6efa1ab8b", - "brand": "3CE", - "category": "Lips", - "name": "[3CE X MUUT] BLUR WATER TINT", - "color_name": "[3CE X MUUT] BLUR WATER TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-x-muut-blur-water-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/blur-water-tint/berry-it/blur-water-tint_berry-it_plp.png?rev=b3b00cc396b64e03a2f27cafb69f9c2b&cx=0&cy=0&cw=480&ch=480&hash=45E0714A9336D2E0E4832A6A8A507B8A", - "price": "₩ 18,000", - "hex": "#d64178", - "lab_l": 51.19, - "lab_a": 61.84, - "lab_b": 2.59, - "warmCool": 53.07, - "lightDeep": 45.29, - "cluster": 0 - }, - { - "id": "cc78bd55-dce5-4b85-bf4f-fe6fe33f080d", - "brand": "3CE", - "category": "Lips", - "name": "[3CE X MUUT] VELVET LIP TINT", - "color_name": "[3CE X MUUT] VELVET LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-x-muut-velvet-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/velvet-lip-tint/spiced-chill/velvet-lip-tint_spiced-chill_pck_plp.png?rev=601919fdf57e4e65a2214d6fac1d464f&cx=0&cy=0&cw=480&ch=480&hash=69AE32B8ED33F70155D41E7918631D06", - "price": "₩ 18,000", - "hex": "#b77e50", - "lab_l": 57.63, - "lab_a": 17.06, - "lab_b": 33.72, - "warmCool": 65.67, - "lightDeep": 48.43, - "cluster": 2 - }, - { - "id": "481514ee-4c28-4708-ac49-e5f7f8837c96", - "brand": "3CE", - "category": "Lips", - "name": "[3CE X MUUT] CASHMERE HUG LIPSTICK", - "color_name": "[3CE X MUUT] CASHMERE HUG LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-x-muut-cashmere-hug-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/cashmere-hug-lipstick/hush-rose/cashmere-hug-lipstick_hush-rose_plp.png?rev=06c0e9f47a1f4494839ca6ae47f537bf&cx=0&cy=0&cw=480&ch=480&hash=01CF18E5555F9362216D84B2C64364A7", - "price": "₩ 22,000", - "hex": "#aa4a52", - "lab_l": 44.31, - "lab_a": 40.13, - "lab_b": 14.94, - "warmCool": 56.59, - "lightDeep": 52.16, - "cluster": 2 - }, - { - "id": "5bf3fbe4-b850-43fb-9c85-5bd881d07dcc", - "brand": "3CE", - "category": "Lips", - "name": "3CE GLAZY LIP GLOW", - "color_name": "3CE GLAZY LIP GLOW", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-glazy-lip-glow", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-gloss/glazy-lip-glow/30-melting-smore/glazy-lip-glow_30-melting-smore_plp_pck.png?rev=399e9a6cff844d929b757d22cccfc8dc&cx=0.47&cy=0.5&cw=480&ch=480&hash=CE094FDCD2A23A613CE806DCB1F59040", - "price": "₩ 21,000", - "hex": "#cca8a1", - "lab_l": 71.84, - "lab_a": 12.06, - "lab_b": 8.56, - "warmCool": 58.35, - "lightDeep": 28.43, - "cluster": 1 - }, - { - "id": "80c092b1-691a-4dc4-86dd-7c29ab3a6d66", - "brand": "3CE", - "category": "Lips", - "name": "3CE BLUR WATER TINT", - "color_name": "3CE BLUR WATER TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-blur-water-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/blur-water-tint/dear-march/blur-water-tint_dear-march_plp_pck_2.png?rev=fe098a356c514083901d9585e977773a&cx=0&cy=0&cw=480&ch=480&hash=A0ED5AB12C2B1BFD2866D7F5D2A317AC", - "price": "₩ 18,000", - "hex": "#bb6f68", - "lab_l": 55.01, - "lab_a": 29.3, - "lab_b": 16.86, - "warmCool": 58.96, - "lightDeep": 42.94, - "cluster": 2 - }, - { - "id": "e1f21e7d-9f44-47fc-9ce4-42cc01aa19c9", - "brand": "3CE", - "category": "Lips", - "name": "3CE VELVET LIP TINT", - "color_name": "3CE VELVET LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-velvet-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/velvet-lip-tint/cashmere-nude/low/velvet-lip-tint_cashmere-nude_plp_pck_2.png?rev=a54c233926454b918f0b7b12ef825e34&cx=0.49&cy=0.49&cw=480&ch=480&hash=56A7559962F9C1FB0A65B22490962CDE", - "price": "₩ 18,000", - "hex": "#a4504f", - "lab_l": 44.51, - "lab_a": 34.52, - "lab_b": 16.88, - "warmCool": 57.36, - "lightDeep": 52.35, - "cluster": 2 - }, - { - "id": "f4c5e948-f91d-4f35-b8a5-ff2ef9e6ad58", - "brand": "3CE", - "category": "Lips", - "name": "3CE CASHMERE HUG LIPSTICK", - "color_name": "3CE CASHMERE HUG LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-cashmere-hug-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/cashmere-hug-lipstick/hush-red/plp-low/cashmere-hug-lipstick_hush-red_plp_pck_2.png?rev=3e5371ead7804957ac57cb6aab1e77cd&cx=0.51&cy=0.49&cw=480&ch=480&hash=50677396A49FC593C293DA87CC410696", - "price": "₩ 22,000", - "hex": "#c33c4a", - "lab_l": 46.09, - "lab_a": 54.28, - "lab_b": 22.93, - "warmCool": 57.94, - "lightDeep": 50.0, - "cluster": 0 - }, - { - "id": "0cffb8b2-7cbb-4f8a-8764-0619419ca36d", - "brand": "3CE", - "category": "Lips", - "name": "3CE HAZY LIP CLAY", - "color_name": "3CE HAZY LIP CLAY", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-hazy-lip-clay", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/hazy-lip-clay/cherry-fluff/plp-low/hazy-lip-clay_cherry-fluff_plp_pck_1.png?rev=a9050ca1397b479498b245e9e1cd855e&cx=0.48&cy=0.47&cw=480&ch=480&hash=D07297A1C9CAAED2A49435ED3F261FF6", - "price": "₩ 20,000", - "hex": "#a84d5f", - "lab_l": 44.89, - "lab_a": 39.2, - "lab_b": 7.73, - "warmCool": 54.56, - "lightDeep": 51.96, - "cluster": 2 - }, - { - "id": "ffb477ee-7eb4-44ea-9c48-8a0a78ddfd74", - "brand": "3CE", - "category": "Lips", - "name": "3CE BLUR MATTE LIPSTICK", - "color_name": "3CE BLUR MATTE LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-blur-matte-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/blur-matte-lipstick/apricot-filter/plp-low/blur-matte-lipstick_apricot-filter_plp_pck_1.png?rev=856b6ce3c59f4498bb450bf92c82697f&cx=0.55&cy=0.5&cw=480&ch=480&hash=2C9A9E9271C183ADAAD9080DAE5EBB88", - "price": "₩ 22,000", - "hex": "#7b6665", - "lab_l": 45.16, - "lab_a": 8.2, - "lab_b": 3.7, - "warmCool": 52.84, - "lightDeep": 56.08, - "cluster": 2 - }, - { - "id": "fe0f55cd-80d0-4d28-8efe-5c6da1615fa5", - "brand": "3CE", - "category": "Lips", - "name": "3CE BLURRING LIQUID LIP", - "color_name": "3CE BLURRING LIQUID LIP", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-blurring-liquid-lip", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/blurring-liquid-lip/start-now/low/blurring-liquid-lip_start-now_plp_pck_2.png?rev=6d82d411834c411abd7073145f1ba8e0&cx=0.55&cy=0.55&cw=480&ch=480&hash=DB82CC3A4B630C9CB3137875DED35734", - "price": "₩ 18,000", - "hex": "#9f2627", - "lab_l": 35.8, - "lab_a": 49.05, - "lab_b": 30.08, - "warmCool": 61.1, - "lightDeep": 61.37, - "cluster": 2 - }, - { - "id": "b2cb0318-1669-4f87-84a9-8d6d2d407e2f", - "brand": "3CE", - "category": "Lips", - "name": "3CE CLOUD LIP TINT", - "color_name": "3CE CLOUD LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-cloud-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/cloud-lip-tint/active-lady/cloud-lip-tint_active-lady_plp_pck_2.png?rev=3fc525d163454d2d968f3edc21707774&cx=0.52&cy=0.53&cw=480&ch=480&hash=017F1449385DAE84ADC20C55E9C2570B", - "price": "₩ 18,000", - "hex": "#ab4a3c", - "lab_l": 44.07, - "lab_a": 38.79, - "lab_b": 27.89, - "warmCool": 61.61, - "lightDeep": 54.71, - "cluster": 2 - }, - { - "id": "d873f0b7-b044-4fe3-8854-c7f23bfddf34", - "brand": "3CE", - "category": "Lips", - "name": "3CE DROP GLOW GEL", - "color_name": "3CE DROP GLOW GEL", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-gloss/3ce-drop-glow-gel", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-gloss/drop-glow-gel/weekend/plp-low/drop-glow-gel_weekend_plp_pck_2.png?rev=588f0003327048b9be59f8d818d7daad&cx=0&cy=0&cw=480&ch=480&hash=7E750DDF32D3E288800EA82082E66744", - "price": "₩ 18,000", - "hex": "#844443", - "lab_l": 36.83, - "lab_a": 27.21, - "lab_b": 13.05, - "warmCool": 57.02, - "lightDeep": 60.98, - "cluster": 2 - }, - { - "id": "5c60e12a-2285-4e93-b55e-eea6a6db06f7", - "brand": "3CE", - "category": "Lips", - "name": "3CE GLAZE LIP TINT", - "color_name": "3CE GLAZE LIP TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-glaze-lip-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/glaze-lip-tint/any-better/plp-low/glaze-lip-tint_any-better_plp_pck_1.png?rev=7139ef97c6104278bd5140427f7f68ff&cx=0.49&cy=0.56&cw=480&ch=480&hash=34C09357464AE25B3F7BA8EF79A9F46E", - "price": "₩ 15,000", - "hex": "#a23e30", - "lab_l": 40.15, - "lab_a": 40.55, - "lab_b": 29.88, - "warmCool": 62.73, - "lightDeep": 58.82, - "cluster": 2 - }, - { - "id": "5652a687-3549-4cfd-9fef-40ab1fb15625", - "brand": "3CE", - "category": "Lips", - "name": "3CE LAZY POP LIP STAIN", - "color_name": "3CE LAZY POP LIP STAIN", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-lazy-pop-lip-stain", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/lazy-pop-lip-stain/yayornay/plp-low/lazy-pop-lip-stain_yayornay_plp_pck_1.png?rev=4c7322ac5b904d79ab404e7ab6f44e80&cx=0.48&cy=0.52&cw=480&ch=480&hash=6C84AE48389E6E640D80AC6E71EC4207", - "price": "₩ 18,000", - "hex": "#e44a3c", - "lab_l": 53.73, - "lab_a": 58.71, - "lab_b": 41.62, - "warmCool": 65.56, - "lightDeep": 43.53, - "cluster": 0 - }, - { - "id": "2ccb414b-dd3e-4dd0-b1d9-bffe85903b0d", - "brand": "3CE", - "category": "Lips", - "name": "3CE MOOD RECIPE MATTE LIP COLOR", - "color_name": "3CE MOOD RECIPE MATTE LIP COLOR", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-mood-recipe-matte-lip-color", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/mood-recipe-matte-lip-color/909-smoked-rose/plp-low/mood-recipe-lip-color_smoked-rose_plp_pck_1.png?rev=721e69ecf5a74dc1bde2e16ba713613f&cx=0.52&cy=0.48&cw=480&ch=480&hash=5837DB51E3F542B5A38AE2A3B012A098", - "price": "₩ 19,000", - "hex": "#7e3c33", - "lab_l": 33.79, - "lab_a": 27.7, - "lab_b": 18.88, - "warmCool": 60.4, - "lightDeep": 65.29, - "cluster": 2 - }, - { - "id": "d7e80c03-3146-4921-8ab5-98b7626c1fe8", - "brand": "3CE", - "category": "Lips", - "name": "3CE SHINE REFLECTOR", - "color_name": "3CE SHINE REFLECTOR", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-gloss/3ce-shine-reflector", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-gloss/shine-reflector/rain-or-shine/250616-update/shine-reflector_rain-or-shine_plp_pck_te.png?rev=fa2e455c1e5f47fc8d6820e96ddb850f&cx=0.48&cy=0.51&cw=480&ch=480&hash=90B975AD6890B86B548AAD58283FC8B8", - "price": "₩ 19,000", - "hex": "#be5763", - "lab_l": 50.3, - "lab_a": 42.51, - "lab_b": 13.39, - "warmCool": 56.65, - "lightDeep": 45.69, - "cluster": 0 - }, - { - "id": "e5ada97b-0c73-44c4-95a9-084925ef6ed6", - "brand": "3CE", - "category": "Lips", - "name": "3CE SOFT MATTE LIPSTICK", - "color_name": "3CE SOFT MATTE LIPSTICK", - "url": "https://www.3cecosmetics.com/all-products/lips/lipstick/3ce-soft-matte-lipstick", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lipstick/soft-matte-lipstick/speak-to-me/low/soft-matte-lipstick_speak-to-me_plp_pck_2.png?rev=dbb501b0417c405db1b2e681bff80e78&cx=0.5&cy=0.57&cw=480&ch=480&hash=049B58B85F4B5C831BC1E0EE6B339436", - "price": "₩ 19,000", - "hex": "#87423d", - "lab_l": 36.72, - "lab_a": 28.95, - "lab_b": 16.73, - "warmCool": 58.68, - "lightDeep": 61.57, - "cluster": 2 - }, - { - "id": "da7bef63-b905-42bf-974d-2a8401cf9b1d", - "brand": "3CE", - "category": "Lips", - "name": "3CE SYRUP LAYERING TINT", - "color_name": "3CE SYRUP LAYERING TINT", - "url": "https://www.3cecosmetics.com/all-products/lips/lip-tint/3ce-syrup-layering-tint", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/lips/lip-tint/syrup-layering-tint/alive-pink/low/syrup-layering-tint_alive-pink_plp_pck_2.png?rev=75f245df2e6d4a599f9c42ee075f254e&cx=0.48&cy=0.52&cw=480&ch=480&hash=79D7CE9BDAFE616BF751CD3A58B73B2C", - "price": "₩ 18,000", - "hex": "#df7682", - "lab_l": 61.88, - "lab_a": 41.93, - "lab_b": 12.14, - "warmCool": 58.79, - "lightDeep": 33.14, - "cluster": 0 - }, - { - "id": "a7d87635-649c-4ca5-bc49-aa824cfc9675", - "brand": "3CE", - "category": "blush", - "name": "[3CE X MUUT] BOUNCY BLUR BALM", - "color_name": "[3CE X MUUT] BOUNCY BLUR BALM", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-x-muut-bouncy-blur-balm", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/bouncy-blur-balm/beige-crush/250527/bouncy-blur-balm_beige-crush_plp_pck_te.png?rev=9e633c04c9d84246961d41e86fe36144&cx=0.47&cy=0.48&cw=480&ch=480&hash=187307319B3E34B27B537909205D8D68", - "price": "₩ 21,000", - "hex": "#be7556", - "lab_l": 56.43, - "lab_a": 25.48, - "lab_b": 29.1, - "warmCool": 63.91, - "lightDeep": 45.88, - "cluster": 2 - }, - { - "id": "e13dc09e-9417-4682-a144-98113be0d2bf", - "brand": "3CE", - "category": "blush", - "name": "3CE LAYER-IT-ALL BLUSH PALETTE", - "color_name": "3CE LAYER-IT-ALL BLUSH PALETTE", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-layer-it-all-blush-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/layer-it-all-palette/rosy-tan/layer-it-all-blush-palette_rosy-tan_plp_pck_te.png?rev=d7c34ae2a7ee4421997809591a3033ba&cx=0.45&cy=0.52&cw=480&ch=480&hash=D86F8BE156D1BE9F6434C9B3BB0D13A5", - "price": "₩ 26,000", - "hex": "#b07a7a", - "lab_l": 56.64, - "lab_a": 21.08, - "lab_b": 8.5, - "warmCool": 55.58, - "lightDeep": 41.57, - "cluster": 1 - }, - { - "id": "021a18ac-822c-41de-8f13-665ca4649ea6", - "brand": "3CE", - "category": "blush", - "name": "3CE BLUSHLIGHTER", - "color_name": "3CE BLUSHLIGHTER", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-blushlighter", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/blushlighter/middy-hype/low/blushlighter_middy-hype_plp.png?rev=faf42016372840a0aca4807afee03ab0&cx=0.54&cy=0.5&cw=480&ch=480&hash=767346277B16FEDA2DE08D0C33B363A2", - "price": "₩ 24,000", - "hex": "#d09099", - "lab_l": 66.26, - "lab_a": 25.48, - "lab_b": 5.07, - "warmCool": 55.81, - "lightDeep": 30.98, - "cluster": 1 - }, - { - "id": "ccffdf60-43c9-4cc0-acfd-56d6363f6e74", - "brand": "3CE", - "category": "blush", - "name": "3CE FACE BLUSH", - "color_name": "3CE FACE BLUSH", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-face-blush", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/face-blush/mono-pink/plp-low/face-blush-mood-recipe_mono-pink_plp_pck_1.png?rev=855be95ca954421d819f0751ab623578&cx=0.5&cy=0.52&cw=480&ch=480&hash=EAFBBFA2A954861C2B5F764001D24F7D", - "price": "₩ 18,000", - "hex": "#ca948a", - "lab_l": 66.19, - "lab_a": 18.96, - "lab_b": 13.3, - "warmCool": 60.01, - "lightDeep": 33.33, - "cluster": 1 - }, - { - "id": "d93d7a10-a055-4443-ab9b-046b590f245f", - "brand": "3CE", - "category": "blush", - "name": "3CE NEW TAKE FACE BLUSHER", - "color_name": "3CE NEW TAKE FACE BLUSHER", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-new-take-face-blusher", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/new-take-face-blusher/haze-beige/plp-low/new-take-face-blusher_haze-beige_plp.png?rev=9b14e825e1ed4824b5e5c03d553d84c8&cx=0.52&cy=0.53&cw=480&ch=480&hash=69314B03B432FA145941980E507D1BAB", - "price": "₩ 20,000", - "hex": "#997a61", - "lab_l": 53.55, - "lab_a": 8.38, - "lab_b": 18.27, - "warmCool": 59.53, - "lightDeep": 50.98, - "cluster": 2 - }, - { - "id": "59ba707d-7c08-4786-84d3-a8ddfe795c83", - "brand": "3CE", - "category": "blush", - "name": "3CE SHEER LIQUID BLUSHER", - "color_name": "3CE SHEER LIQUID BLUSHER", - "url": "https://www.3cecosmetics.com/all-products/cheeks/blush/3ce-sheer-liquid-blusher", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/cheeks/blush/sheer-liquid-blusher/joyful-affair/plp-low/sheer-liquid-blusher_joyful-affair_plp_pck_1.png?rev=55bc7b22e41a45b58b93f3f6c16446ff&cx=0.52&cy=0.47&cw=480&ch=480&hash=18062A8DADA211865D7E8E6D855F0033", - "price": "₩ 17,000", - "hex": "#cf645e", - "lab_l": 55.27, - "lab_a": 41.77, - "lab_b": 23.49, - "warmCool": 61.27, - "lightDeep": 40.98, - "cluster": 0 - }, - { - "id": "9c920444-47ea-48c6-9937-b8160cdb85f2", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE COLOR GRID EYESHADOW", - "color_name": "3CE COLOR GRID EYESHADOW", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-color-grid-eyeshadow", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/color-grid-eyeshadow/mint-zest/color-grid-eye-shadow_mint-zest_plp_pck_te.png?rev=b6618874236a4c96b15cf7c0e8ba5e85&cx=0&cy=0&cw=480&ch=480&hash=FAF44709795C5137D9DD38E355B431D0", - "price": "₩ 19,000", - "hex": "#7ca797", - "lab_l": 65.09, - "lab_a": -17.95, - "lab_b": 3.58, - "warmCool": 52.53, - "lightDeep": 42.94, - "cluster": 1 - }, - { - "id": "4b5ec573-af0a-4295-a5b3-40006ca12882", - "brand": "3CE", - "category": "eyeshadow", - "name": "[3CE X MUUT] MULTI EYE COLOR PALETTE", - "color_name": "[3CE X MUUT] MULTI EYE COLOR PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-x-muut-multi-eye-color-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/multi-eye-color-palette/chill-wave/250527/multi-eye-color-palette_chill-wave_plp_pkg.png?rev=42db89c12f184abd827e6a810d56aa78&cx=0&cy=0&cw=480&ch=480&hash=CAC8B810B2A94C1DC99A3C5D23DA244F", - "price": "₩ 38,000", - "hex": "#886c8d", - "lab_l": 49.35, - "lab_a": 17.29, - "lab_b": -13.85, - "warmCool": 40.82, - "lightDeep": 51.18, - "cluster": 2 - }, - { - "id": "70430544-bd86-4d41-ac2e-49827a472aed", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE LAYER-IT-ALL EYESHADOW PALETTE", - "color_name": "3CE LAYER-IT-ALL EYESHADOW PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-layer-it-all-eyeshadow-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/layer-it-all-palette/pink-soda/layer-it-all-eyeshadow-palette_pink-soda_plp_pck_te.png?rev=8967395346924339b13ca8eb00699787&cx=0.49&cy=0.51&cw=480&ch=480&hash=0C87180A4BB5240E5A0A7732690C2A0D", - "price": "₩ 32,000", - "hex": "#b28785", - "lab_l": 60.33, - "lab_a": 16.13, - "lab_b": 7.46, - "warmCool": 55.52, - "lightDeep": 39.02, - "cluster": 1 - }, - { - "id": "6330673b-9616-40d3-9fec-bed08d75dcc1", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE MULTI EYE COLOR PALETTE", - "color_name": "3CE MULTI EYE COLOR PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-multi-eye-color-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/multi-eye-color-palette/auto-focus/plp-low/multi-eye--color-palette_auto-focus_pck_plp_1.png?rev=7f05bbb2c0674c2f811d97f9ad962d39&cx=0&cy=0&cw=480&ch=480&hash=C417AE84128F0FD1F22126DCD93D34D3", - "price": "₩ 39,000", - "hex": "#91615c", - "lab_l": 46.1, - "lab_a": 18.84, - "lab_b": 10.8, - "warmCool": 55.98, - "lightDeep": 53.53, - "cluster": 2 - }, - { - "id": "a8ed8f6d-a884-46fe-8ba7-a679bc57a72d", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE MINI MULTI EYE COLOR PALETTE", - "color_name": "3CE MINI MULTI EYE COLOR PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-mini-multi-eye-color-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/mini-multi-eye-color-palette/almond-fudge/low/mini-multi-eye-color-palette_almond-fudge_plp_pck_1.png?rev=b4c1a7db5ef7442283022be2da94fdb7&cx=0.52&cy=0.51&cw=480&ch=480&hash=788F4A2A9749E6D1B5DEFBD3ED9C2313", - "price": "₩ 24,000", - "hex": "#ba784b", - "lab_l": 56.47, - "lab_a": 21.27, - "lab_b": 35.09, - "warmCool": 65.81, - "lightDeep": 48.82, - "cluster": 2 - }, - { - "id": "64105de9-e47f-4387-9ae8-c76493919a47", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE ALL ROUNDER FACE PALETTE", - "color_name": "3CE ALL ROUNDER FACE PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-all-rounder-face-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/all-rounder-face-palette/pale-veil/plp-low/all-rounder-face-palette_pale-veil_plp_pck.png?rev=a1469eb4361a40d685106fb91fbafb3c&cx=0.49&cy=0.53&cw=480&ch=480&hash=DA5F70A7805FD4DA1BCE48662DF7017E", - "price": "₩ 40,000", - "hex": "#ebd8e7", - "lab_l": 88.23, - "lab_a": 9.12, - "lab_b": -4.97, - "warmCool": 38.31, - "lightDeep": 11.57, - "cluster": 1 - }, - { - "id": "dead0110-27cb-4189-9e42-27dc0370563a", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE EYE SWITCH", - "color_name": "3CE EYE SWITCH", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-eye-switch", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/eye-switch/double-note/eye-switch_double-note_plp_pck_3.png?rev=2926a0332c3c4690a3d23d3b99679d22&cx=0.48&cy=0.54&cw=480&ch=480&hash=B635DEEBA18684321940A8179BFE5826", - "price": "₩ 15,000", - "hex": "#5a0aa4", - "lab_l": 26.94, - "lab_a": 58.77, - "lab_b": -63.64, - "warmCool": 15.55, - "lightDeep": 65.88, - "cluster": 3 - }, - { - "id": "b6ff218b-0a66-4435-8304-57d44e4698c4", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE LIQUID PRIMER EYE SHADOW", - "color_name": "3CE LIQUID PRIMER EYE SHADOW", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-liquid-primer-eye-shadow", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/liquid-primer-eye-shadow/common-place/plp-low/liquid-primer-eye-shadow_common-place_plp_pck_2.png?rev=234ccf970243495c8e2f94b080e01f45&cx=0.52&cy=0.53&cw=480&ch=480&hash=544D2D6C53117089DE3EE7A36EED5A94", - "price": "₩ 15,000", - "hex": "#d19f7f", - "lab_l": 69.39, - "lab_a": 14.36, - "lab_b": 23.89, - "warmCool": 66.26, - "lightDeep": 34.12, - "cluster": 1 - }, - { - "id": "e19d7eb9-bfab-40e4-839d-e7ff11df8c21", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE NEW TAKE EYESHADOW PALETTE", - "color_name": "3CE NEW TAKE EYESHADOW PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-new-take-eyeshadow-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/new-take-eye-shadow-palette/pink-journey/plp-low/new-take--eyeshadow-palette_pink-journey_plp_pck_1.png?rev=3ab2f2fedd4b46fa91abd1055ac76b78&cx=0.46&cy=0.48&cw=480&ch=480&hash=A0FCDFD8BC009C89E5FBBA3221BB1D82", - "price": "₩ 49,000", - "hex": "#a06f6c", - "lab_l": 51.75, - "lab_a": 19.03, - "lab_b": 9.5, - "warmCool": 55.43, - "lightDeep": 47.45, - "cluster": 2 - }, - { - "id": "bc5856bb-7e4f-45b3-8be8-babc01c2acb7", - "brand": "3CE", - "category": "eyeshadow", - "name": "3CE XL EYESHADOW PALETTE", - "color_name": "3CE XL EYESHADOW PALETTE", - "url": "https://www.3cecosmetics.com/all-products/eyes/eyeshadow/3ce-xl-eyeshadow-palette", - "image": "https://www.3cecosmetics.com/-/media/project/loreal/brand-sites/tce/apac/int/en-image-assets/all-prouducts/eyes/eyeshadow/xl-eyeshadow-palette/plp-low/xl-palette_plp_pck_1.png?rev=22150147353342268e77a901d7b39a3d&cx=0.51&cy=0.52&cw=480&ch=480&hash=91CE1BAD332BCBE2201F4C6D9A21390E", - "price": "₩ 80,000", - "hex": "#b48787", - "lab_l": 60.59, - "lab_a": 17.2, - "lab_b": 6.72, - "warmCool": 55.16, - "lightDeep": 38.24, - "cluster": 1 - } -] \ No newline at end of file diff --git a/static/data/romand_blusher_products.json b/static/data/romand_blusher_products.json deleted file mode 100644 index 8e4e190..0000000 --- a/static/data/romand_blusher_products.json +++ /dev/null @@ -1,162 +0,0 @@ -[ - { - "image": "https://romand.io/images/product/996/hXhbj9RWHn9OtAl3fMCbvXoBeUi8gox4OC1Oj4gX.jpg", - "name": "롬앤 쥬시 알 치크 / 06 베어 그레이프", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/996/7ZKWWUFJvB9lA3YYF9NnrOq2CrpAsWIxikCI6Mp1.jpg", - "name": "롬앤 쥬시 알 치크 / 05 누가 코코", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/996/Qe7omOlIfG17i7XGllbiWb4ljxxN7kGEESLViQRH.jpg", - "name": "롬앤 쥬시 알 치크 / 04 살구 베이지", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/996/9kj1cgeTEG02tE4F4I89g3gZnZgKSgMFPqRVKJSn.jpg", - "name": "롬앤 쥬시 알 치크 / 03 백도 피치", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/996/YHQ5uXaxCWoxkprwc625RIvvXCJquqhtPt6uu2bR.jpg", - "name": "롬앤 쥬시 알 치크 / 02 드래곤 베리", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/996/oQTnAUvWqfPvaDR1oGGp2kunk7VCRHFn3GqYJGlx.jpg", - "name": "롬앤 쥬시 알 치크 / 01 레어 애플", - "price": "10,900원" - }, - { - "image": "https://romand.io/images/product/893/N9kSkJZFTFKctUvzYj4ZPC9CwLpxBgmMGgDWy3Ft.jpg", - "name": "롬앤 쉬어 구슬 파우더 #오리지널 / 01 글리미 베일", - "price": "16,900원" - }, - { - "image": "https://romand.io/images/product/893/c4PbaZbIhhCZe13HLbdbfwABBiRsJx7NQNZYnQyx.jpg", - "name": "롬앤 쉬어 구슬 파우더 #오리지널 / 02 베리 글로우", - "price": "16,900원" - }, - { - "image": "https://romand.io/images/product/947/hIgATCovgaTLWeGN1UTtWID13UoNLYsUKimXPD2g.jpg", - "name": "쉬어 구슬 파우더 #코덕MADE / 03 피치 허니 글로우", - "price": "16,900원" - }, - { - "image": "https://romand.io/images/product/947/4xzdamKWKNcwy2jbM78boy2r879y0MDH0waKagHo.jpg", - "name": "쉬어 구슬 파우더 #코덕MADE / 04 아이스 베일", - "price": "16,900원" - }, - { - "image": "https://romand.io/images/product/970/g9iDW3RHfBgRnwvsadKs69UTJ9NNUXS9EEWgdWqD.png", - "name": "롬앤 베러 댄 치크 #글레이즈 / G01 피치 글레이즈", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/970/bkLVTxUXe0RtD59aPFPmsc76pENz7xe2kuW75lYF.png", - "name": "롬앤 베러 댄 치크 #글레이즈 / G02 쥬시 글레이즈", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/905/KjySZDNLhDV4o330ThweJ5lBuzHBuVonrG83SOo7.jpg", - "name": "롬앤 베러 댄 치크 #블랙스펙트럼 / B03 블랙 밤", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/905/sPFqtxOqlYMtTESZhVbXcLmzXKYAXqRRVN7KKC1A.jpg", - "name": "롬앤 베러 댄 치크 #블랙스펙트럼 / B02 베리 던", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/905/HRX1UVqpU2jtmmtFepWhfS7znjs9VVZc2f7vX0uR.jpg", - "name": "롬앤 베러 댄 치크 #블랙스펙트럼 / B01 진저 나잇", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/881/vvcFJmFL9JhtFOPYmrd2ErJn1w7jDMSsQY6lMDwu.jpg", - "name": "롬앤 베러 댄 치크 #스프링피버 / S01 망고 칩", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/881/S7vld8W1tXMYRF5WA7Q7XNpWiD5kkN54T9xUfwFL.jpg", - "name": "롬앤 베러 댄 치크 #스프링피버 / S02 리치 칩", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/etcbVd374QRhanVuNgfaaWc9w3ueL5zo2dPc8SBd.jpg", - "name": "롬앤 베러 댄 치크 / N02 바인 누드", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/yYRZBoSoYcazb0b5l8vssfou76C4NiBif1terPW2.jpg", - "name": "롬앤 베러 댄 치크 / N01 너티 누드", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/gCiKd3Zbbq0OaZLHoc0few1L1gSNaGheNUSz9sAA.jpg", - "name": "롬앤 베러 댄 치크 / W03 애프리콧 밀크", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/wFnQ7tfLlykdNqOYsqimEsFoeMB5WfmTivzjQ7MN.jpg", - "name": "롬앤 베러 댄 치크 / W02 스트로베리 밀크", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/AwiH4q0351pRiGB08kuC6HwMqyC5B4wCj7iPgpxD.jpg", - "name": "롬앤 베러 댄 치크 / W01 오디 밀크", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/Dq5jzRnsaCsOVmwQtiTvngKMa8jjUZWB7IpmMvdk.jpg", - "name": "롬앤 베러 댄 치크 / C04 페어칩", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/d8wTCZmtdM8JDb6hW6oRyDJbiPsPP9crfAT8DTFA.jpg", - "name": "롬앤 베러 댄 치크 / C03 피그칩", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/a1WBLF26Pc6XueJBg0Dse2pelvUUf5kp3BbdKxQV.jpg", - "name": "롬앤 베러 댄 치크 / C02 블루베리칩", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/646/6xGfeKtWTDBBSN1QBd6ahjVJmSFv2zmQyhWj2glJ.jpg", - "name": "롬앤 베러 댄 치크 / C01 피치칩", - "price": "10,400원" - }, - { - "image": "https://romand.io/images/product/888/yLMl72NonfRKLGeAGUJBWFf8OaWJfgt5ffgUq3kt.jpg", - "name": "롬앤 베러 댄 컨투어 / 02 그레이 쿨", - "price": "20,900원" - }, - { - "image": "https://romand.io/images/product/888/52EtF1KjkY3bQO8VKXm8WSDCsWUGq56JIuHHWme7.jpg", - "name": "롬앤 베러 댄 컨투어 / 01 뉴트럴 웜", - "price": "20,900원" - }, - { - "image": "https://romand.io/images/product/339/1FsTjkOsBXevRklVUzsdQT9PIYqBTpb0tu4snEy8.jpg", - "name": "롬앤 베러 댄 쉐입 / 01오트그레인", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/339/PlPbcswLOOCGcAcHGwrVlmVxydr5LQoP3XOA2hXY.jpg", - "name": "롬앤 베러 댄 쉐입 / 02월넛그레인", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/540/7TCjdBEqobOvMSiw46Y6nWtBGFqjrkc1u1fgN5ei.jpg", - "name": "롬앤 시스루 베일라이터 / 02 문 키스드 베일", - "price": "6,900원" - }, - { - "image": "https://romand.io/images/product/540/ZWykWXfiM11IZFEiqY0QLbFy1ONLbFwXIZl5TCrN.jpg", - "name": "롬앤 시스루 베일라이터 / 01 선 키스드 베일", - "price": "6,900원" - } -] \ No newline at end of file diff --git a/static/data/romand_products.json b/static/data/romand_products.json deleted file mode 100644 index e201a1a..0000000 --- a/static/data/romand_products.json +++ /dev/null @@ -1,596 +0,0 @@ -[ - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", - "image": "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000K&option_name=30%20%EB%B3%B4%EB%8A%AC%20%EB%B0%A4" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", - "image": "https://romand.io/images/product/994/vp2VylRiIA3287NecXLwESdOZlPL1uQ0uDbl1GT6.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000J&option_name=29%20%EC%A1%B0%EC%84%A0%20%EB%AC%B4%ED%99%94%EA%B3%BC" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", - "image": "https://romand.io/images/product/994/0y64Ojupqdu8ZW8Z4KZ4ucrIKrdf3lpueojfZtcK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000I&option_name=28%20%EC%84%A4%ED%99%94%20%EB%94%B8%EA%B8%B0" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", - "image": "https://romand.io/images/product/994/h4KEgqv0XejM1hZxnxZF0SPOcsingVAlg9LJC2TR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000H&option_name=27%20%ED%97%88%EB%8B%88%20%EB%93%80%20%EB%A9%9C%EB%A1%A0" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", - "image": "https://romand.io/images/product/994/aL8OhiGRHY20X4WS3q8mKmqKNHCdBDYAhPvi88oy.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000G&option_name=26%20%EC%8B%A0%EB%B9%84%20%EB%B3%B5%EC%88%AD%EC%95%84" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", - "image": "https://romand.io/images/product/958/hVrWzeIAuVwXIUXGqSPfedtnS9ON0FiAC859PKgD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000D&option_name=04%20%ED%94%BC%EA%B7%B8%20%ED%94%BC%EA%B7%B8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", - "image": "https://romand.io/images/product/958/Ax5b75vAi528eIiYmonRqylpfzrKROrVZVxnUa5w.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000C&option_name=03%20%EB%B2%A0%EC%96%B4%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", - "image": "https://romand.io/images/product/958/nO3CrysMVL9U55KfxZurkmyIcryGpKjNZrYmDMr0.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000B&option_name=02%20%EB%88%84%EC%B9%B4%EB%8B%A4%EB%AF%B8%EC%95%84" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", - "image": "https://romand.io/images/product/958/KrjjrJXJNXjcmUKPkXrWAyobbvyVZxEaaiGAsDaS.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000A&option_name=01%20%ED%8F%AC%EB%A9%9C%EB%A1%9C%20%EC%8A%A4%ED%82%A8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", - "image": "https://romand.io/images/product/958/OA70z7jUdDOWeoUQEhsm61uHilEXmHkEMSpnkIJ3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000F&option_name=06%20%ED%95%84%EB%A7%81%20%EC%95%B5%EB%91%90" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", - "image": "https://romand.io/images/product/958/HVs9RVIp3xylieHLYevVIjGWwe6mlre889pPsnoQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000X&option_name=24%20%EB%B2%A0%EC%96%B4%20%EC%A5%AC%EC%8B%9C%20%EC%98%A4" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", - "image": "https://romand.io/images/product/958/kOY2uHHIYeeicQZh8S162C63jtojxgS0EAq9ZR8H.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000W&option_name=23%20%ED%94%BC%EC%B9%98%20%ED%94%BC%EC%B9%98%20%EB%AF%B8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", - "image": "https://romand.io/images/product/958/yMaewlQ2iW42hrhNZw2kLlG40dD9JY5ZRgWIqIdi.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000V&option_name=22%20%EB%8F%84%ED%86%A0%EB%A6%AC%20%EB%B0%A4" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", - "image": "https://romand.io/images/product/958/inczn5S3hX1dOAt7UCkPINdupgH6qbJZ1xVQpPET.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000U&option_name=21%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84%20%EB%B0%A4" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", - "image": "https://romand.io/images/product/958/1I9OyW4j0wijPOsEbaoljzreN4aGXUTRlcAK7L04.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000T&option_name=20%20%EC%A5%AC%EC%A5%AC%20%ED%94%BC%EA%B7%B8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", - "image": "https://romand.io/images/product/958/2OBJbPaANmkScXjLtjRX48shuuCgsYE9p1j9Nbz1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000S&option_name=19%20%EC%8D%B8%EB%A8%B8%20%EC%84%BC%ED%8A%B8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", - "image": "https://romand.io/images/product/958/XP3eLtN4ZcjUmvyvmgyXiaeDZnwxYJ2HaDjeffdb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000Q&option_name=17%20%EB%8B%A4%ED%81%AC%20%EC%BD%94%EC%BD%94%EB%84%9B" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", - "image": "https://romand.io/images/product/958/MeHqAPbIXbv1DYd4ttfVFpdODslPH4cKYzG8Amsb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000P&option_name=16%20%ED%94%8C%EB%9F%BC%20%EC%BD%95" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", - "image": "https://romand.io/images/product/958/EfEL2EDNWkUFzS741F9hN9M7fFYUvjTIQ4X9GX6Y.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000O&option_name=15%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", - "image": "https://romand.io/images/product/958/oxJxwHns1GrJk0WAn9QXxQiil0CalGNZceDsluQg.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000N&option_name=14%20%EC%95%84%EB%AA%AC%EB%93%9C%20%EB%A1%9C%EC%A6%88" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", - "image": "https://romand.io/images/product/958/QK4geWmsw4P0tJNFQEOeHgdrC8PD89ABuP6xCIBx.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000M&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", - "image": "https://romand.io/images/product/958/B06iurpARo7agGql1klQnt9XEO2blsvJFgd73Yf3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000L&option_name=12%20%EC%95%A0%ED%94%8C%20%EB%B8%8C%EB%9D%BC%EC%9A%B4" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", - "image": "https://romand.io/images/product/958/oJgHkcoeViDMvaiM7ZDEAGAOHG3BJ2L3F4rv9ZuD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000K&option_name=11%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4" - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C" - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC" - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84" - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0" - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC" - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89" - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8" - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0" - }, - { - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", - "image": "https://romand.io/images/product/757/yJp29K9lzByeOCbmaKahgMnnJKpXIqxNxDHPDUo5.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000P&option_name=09%20%ED%94%BC%EC%98%A4%EB%8B%88%EC%A6%88" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", - "image": "https://romand.io/images/product/757/91eoj10Pz9IVNHamBY3Xed6tIjMJchIbqjbTQZXt.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000O&option_name=08%20%EC%BD%94%EB%9E%84%EB%A6%AC%EC%95%84" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", - "image": "https://romand.io/images/product/890/2XljHRzFt8z6KtKJB59rxGkn0AukfHVkMp7MqRuV.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000C&option_name=05%20%ED%94%BC%EC%B9%98%20%EB%AF%B8" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", - "image": "https://romand.io/images/product/890/PGGDHAoQsh980WHj9zys2vbds0snYQMhizUie6PY.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000B&option_name=04%20%20%EB%93%9C%EB%9E%98%EA%B3%A4%20%ED%95%91%ED%81%AC" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", - "image": "https://romand.io/images/product/49/JV8NqUVwLthMiBxlmAbQ65XLjXRHXt0Qf1nqKYqP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00OG&option_name=29%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", - "image": "https://romand.io/images/product/49/PvDFiup7g5fJvEfkiJNyn73CBOkZp2VucBuNZhSq.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00NX&option_name=28%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", - "image": "https://romand.io/images/product/655/vl3Kp3qFAEe2ermmW7L4cuJoBXrxXEyZ56YTaWL4.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FI&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", - "image": "https://romand.io/images/product/655/fkMWkrsCoeqGyO1onb5tkOvgIaxVvIbR6VdTPRoV.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FD&option_name=01%20%EC%BD%94%EC%BD%94%20%EB%88%84%EB%93%9C" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", - "image": "https://romand.io/images/product/655/4aMjABkiueyfVm12habY4NR4M48s7sWfJrLMMawd.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FE&option_name=02%20%EB%9F%AC%EB%B9%84%20%ED%95%91%ED%81%AC" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", - "image": "https://romand.io/images/product/655/1vV6pMdBV627mX2QSq4aPdLeQnbopcnrLXChumBo.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FF&option_name=03%20%EC%86%8C%EB%A5%B4%EB%B2%A0%20%EB%B0%A4" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", - "image": "https://romand.io/images/product/655/otoAh9xx2OvsmaAKFhdhVxd71Q3FoI5rCezxqpvb.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FG&option_name=04%20%ED%9E%88%ED%94%BC%20%EB%B2%A0%EB%A6%AC" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", - "image": "https://romand.io/images/product/655/kpZBguUaYBShV9UjCqjxiejfWSAm0ZXFQybihogt.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FH&option_name=05%20%EB%88%84%EA%B0%80%20%EC%83%8C%EB%93%9C" - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", - "image": "https://romand.io/images/product/655/lw6TIt1IFTdWl2s4no8tHeLN2YxgM9tdK1wYUips.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FJ&option_name=07%20%EB%AA%A8%EB%B8%8C%20%ED%9C%A9" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", - "image": "https://romand.io/images/product/515/PKURcokT6yaSMCghl5QJNBTyIYCJqWCEjA1fjrsw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/515/?variant_code=P00000TV000C&option_name=16%20%EC%BD%94%EB%8B%88%20%EC%86%8C%EB%8B%A4" - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", - "image": "https://romand.io/images/product/817/SefjWR5iYfiWloM9IUu083u2ZO9f03ppLuS2wGpq.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000F&option_name=02%20%EB%82%98%EC%9D%B4%ED%8A%B8%20%EB%A7%88%EB%A6%B0" - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", - "image": "https://romand.io/images/product/817/y3vX9lxV6fhJZEZylr2hOLWjEDksT9Fq4WJONf9c.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000G&option_name=03%20%ED%8E%98%EC%96%B4%EB%A6%AC%20%EC%83%A4%EB%B2%A0%ED%8A%B8" - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", - "image": "https://romand.io/images/product/817/g0Jo8nHxXolDshoOkWVJpJVFqdFPG6wgE0WJXCRZ.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000H&option_name=04%20%ED%97%88%EB%8B%88%20%EC%83%A4%EB%B2%A0%ED%8A%B8" - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", - "image": "https://romand.io/images/product/817/e1zRzltrbR79ByQNXXqyOuaPV2W268gwdd3QKRds.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000I&option_name=05%20%ED%94%BC%EC%B9%98%20%EC%83%A4%EB%B2%A0%ED%8A%B8" - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", - "image": "https://romand.io/images/product/817/19z3uTts0K4r09iHf3DKMSiNkT7dtRSV4LT0Q93Z.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000J&option_name=06%20%ED%81%B4%EB%A6%AC%EC%96%B4%20%EC%A0%A4%EB%A6%AC" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", - "image": "https://romand.io/images/product/300/GDNb1zDIFg6oP0su1vDRlKUc2T8aLWStdk4Tfv4o.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000I&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", - "image": "https://romand.io/images/product/300/HbMLPwuYY0vtbEZHE2e0Fsq9CDmXCqaZMY3LXmqR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000G&option_name=11%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8" - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", - "image": "https://romand.io/images/product/300/AM3zv8bwCn0OPbUqFxyXnt9t78kSUy088r31xR7K.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000F&option_name=10%20%EB%88%84%EB%94%94%20%ED%94%BC%EB%84%9B" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", - "image": "https://romand.io/images/product/343/83hNUBzKzJQlENPe1SzACyEp4LRLHs829TPrKJL1.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CJ&option_name=02%20%EB%A0%88%EB%93%9C%20%EB%93%9C%EB%A1%AD" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", - "image": "https://romand.io/images/product/343/hQexC85XR5qR4DkMetrs1SiMg5Y6RvUMMo90H2Nk.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CK&option_name=03%20%EB%B8%8C%EB%A6%AD%20%EB%A6%AC%EB%B2%84" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", - "image": "https://romand.io/images/product/343/BZgkQP0CTQ1Wb8FTVcLlVBqfPwSBpyZ3BeEQVdCu.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CL&option_name=04%20%EB%B9%88%ED%8B%B0%EC%A7%80%20%EC%98%A4%EC%85%98" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", - "image": "https://romand.io/images/product/343/Zgt57l9jOIHt0W047LxwsfxW4r24ARMearETLLC2.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CM&option_name=05%20%EB%A1%9C%EC%A6%88%20%EC%8A%A4%ED%94%8C%EB%9E%98%EC%89%AC" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", - "image": "https://romand.io/images/product/343/q0xStU1kzFEXTy8AziwIyiF2WShatd1rfNwkMNzJ.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CN&option_name=08%20%EB%A1%9C%EC%A0%9C%20%EC%8A%A4%ED%8A%B8%EB%A6%BC" - }, - { - "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", - "image": "https://romand.io/images/product/451/MiJFUm3pVt8PRHg5dBak9UJMYVcTvtuWFqoFaMqb.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BB&option_name=00%20%EB%A9%94%ED%85%8C%EC%98%A4%20%ED%8A%B8%EB%9E%99" - }, - { - "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", - "image": "https://romand.io/images/product/451/TM1sDRWJvxsVuJaYtXOQ2C1sB3mq7icZuaJBHZvC.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BC&option_name=01%20%EC%82%B0%ED%98%B8%20%ED%81%AC%EB%9F%AC%EC%89%AC" - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", - "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85" - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88" - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4" - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 05 딤 모브", - "image": "https://romand.io/images/product/847/Yvq1cQTmyhIhO1bi3jqhmdS7I7EboT3muVjsDvRt.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GX&option_name=05%20%EB%94%A4%20%EB%AA%A8%EB%B8%8C" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", - "image": "https://romand.io/images/product/847/nXD733s6NgeMuPj5hVLwORizy2MJ9r8JCdX8tYuY.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GW&option_name=04%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%BC%20%EC%9B%A8%EC%9D%B4" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", - "image": "https://romand.io/images/product/847/6EADRhaRhU7YXAytPK2rRsvg0rdS8dRTxXqzmLZm.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GV&option_name=03%20%EB%A1%9C%EC%A6%88%20%ED%95%80%EC%B9%98" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", - "image": "https://romand.io/images/product/847/dt3narGEEUTYpJG5Qbldcenng5Pgke18Z9cH61ZV.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GT&option_name=01%20%ED%94%BC%EC%98%A4%EB%8B%88%20%EB%B0%9C%EB%A0%88" - }, - { - "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", - "image": "https://romand.io/images/product/859/y5NwVVP7YTnU3l0HAlzWkwxoxw7OkNWnhfQAfNzE.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/859/?variant_code=P0000BHB000A&option_name=09%20%EC%86%8C%ED%94%84%ED%8A%B8%20%ED%92%80" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84" - }, - { - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", - "image": "https://romand.io/images/product/879/mSn9TLjjWdOIg0T8FG2xAvhGNa7rCJNeDpH7pZ6D.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000C&option_name=08%20%EC%B2%B4%EB%A6%AC%20%EC%97%85" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88" - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B" - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", - "image": "https://romand.io/images/product/900/20zNZqkRxaxi0TBA5Xi1rHFxVbf6PteRuSJthWTM.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000G&option_name=40%20%EB%B8%94%EB%9E%99%20%EC%82%AC%ED%8C%8C%EC%9D%B4%EC%96%B4" - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", - "image": "https://romand.io/images/product/900/XqcciN7iH3Hz7wU4LDTfsZE9t606KxLRpkubIfc7.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000H&option_name=41%20%EC%9E%90%EB%91%90%EC%9D%B8%EB%83%A5" - }, - { - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8" - }, - { - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C" - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", - "image": "https://romand.io/images/product/965/09M9HtLkGPO8GNM3NToxgzDyIXoJ8Gv8WaTfyWXk.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000B&option_name=02%20%EB%B8%94%EB%9E%99%20%EB%B2%A0%EB%A6%AC%20%ED%8C%9F" - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", - "image": "https://romand.io/images/product/965/30BQaNQpgtjbPym2zAAqNqDsiBwAkC9OYcqlSzX4.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000A&option_name=01%20%EC%BD%94%ED%8A%BC%20%EB%B0%80%ED%81%AC%20%ED%8C%9F" - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", - "image": "https://romand.io/images/product/965/rXnio3CB5DJRiOVlHQ1eHFvi6F8rQGxdjcQu3FhM.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000C&option_name=03%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%ED%8C%9F" - } -] \ No newline at end of file diff --git a/static/data/romand_products_clustered.json b/static/data/romand_products_clustered.json deleted file mode 100644 index 861b271..0000000 --- a/static/data/romand_products_clustered.json +++ /dev/null @@ -1,1586 +0,0 @@ -[ - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", - "image": "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000K&option_name=30%20%EB%B3%B4%EB%8A%AC%20%EB%B0%A4", - "color_name": "30 보늬 밤", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#e8dbd8", - "lab_l": 88.46, - "lab_a": 4.33, - "lab_b": 2.91, - "warmCool": 57.75, - "lightDeep": 12.16, - "cluster": 2 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", - "image": "https://romand.io/images/product/994/vp2VylRiIA3287NecXLwESdOZlPL1uQ0uDbl1GT6.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000J&option_name=29%20%EC%A1%B0%EC%84%A0%20%EB%AC%B4%ED%99%94%EA%B3%BC", - "color_name": "29 조선 무화과", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f7e0e0", - "lab_l": 91.16, - "lab_a": 7.6, - "lab_b": 2.96, - "warmCool": 53.09, - "lightDeep": 7.65, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", - "image": "https://romand.io/images/product/994/0y64Ojupqdu8ZW8Z4KZ4ucrIKrdf3lpueojfZtcK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000I&option_name=28%20%EC%84%A4%ED%99%94%20%EB%94%B8%EA%B8%B0", - "color_name": "28 설화 딸기", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f9e8ec", - "lab_l": 93.52, - "lab_a": 6.49, - "lab_b": 0.04, - "warmCool": 51.23, - "lightDeep": 5.69, - "cluster": 3 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", - "image": "https://romand.io/images/product/994/h4KEgqv0XejM1hZxnxZF0SPOcsingVAlg9LJC2TR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000H&option_name=27%20%ED%97%88%EB%8B%88%20%EB%93%80%20%EB%A9%9C%EB%A1%A0", - "color_name": "27 허니 듀 멜론", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f8e5e3", - "lab_l": 92.68, - "lab_a": 6.07, - "lab_b": 3.38, - "warmCool": 53.37, - "lightDeep": 6.86, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", - "image": "https://romand.io/images/product/994/aL8OhiGRHY20X4WS3q8mKmqKNHCdBDYAhPvi88oy.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000G&option_name=26%20%EC%8B%A0%EB%B9%84%20%EB%B3%B5%EC%88%AD%EC%95%84", - "color_name": "26 신비 복숭아", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f7dcdd", - "lab_l": 90.03, - "lab_a": 9.63, - "lab_b": 2.63, - "warmCool": 53.28, - "lightDeep": 8.43, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", - "image": "https://romand.io/images/product/958/hVrWzeIAuVwXIUXGqSPfedtnS9ON0FiAC859PKgD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000D&option_name=04%20%ED%94%BC%EA%B7%B8%20%ED%94%BC%EA%B7%B8", - "color_name": "04 피그 피그", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ead4d9", - "lab_l": 86.93, - "lab_a": 8.58, - "lab_b": 0.31, - "warmCool": 53.87, - "lightDeep": 12.55, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", - "image": "https://romand.io/images/product/958/Ax5b75vAi528eIiYmonRqylpfzrKROrVZVxnUa5w.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000C&option_name=03%20%EB%B2%A0%EC%96%B4%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84", - "color_name": "03 베어 그레이프", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#efdce0", - "lab_l": 89.51, - "lab_a": 7.38, - "lab_b": 0.64, - "warmCool": 54.38, - "lightDeep": 10.0, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", - "image": "https://romand.io/images/product/958/nO3CrysMVL9U55KfxZurkmyIcryGpKjNZrYmDMr0.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000B&option_name=02%20%EB%88%84%EC%B9%B4%EB%8B%A4%EB%AF%B8%EC%95%84", - "color_name": "02 누카다미아", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f2dfdc", - "lab_l": 90.41, - "lab_a": 6.19, - "lab_b": 3.61, - "warmCool": 53.88, - "lightDeep": 9.41, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", - "image": "https://romand.io/images/product/958/KrjjrJXJNXjcmUKPkXrWAyobbvyVZxEaaiGAsDaS.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000A&option_name=01%20%ED%8F%AC%EB%A9%9C%EB%A1%9C%20%EC%8A%A4%ED%82%A8", - "color_name": "01 포멜로 스킨", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3e3de", - "lab_l": 91.55, - "lab_a": 4.46, - "lab_b": 4.55, - "warmCool": 54.3, - "lightDeep": 8.82, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", - "image": "https://romand.io/images/product/958/OA70z7jUdDOWeoUQEhsm61uHilEXmHkEMSpnkIJ3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000F&option_name=06%20%ED%95%84%EB%A7%81%20%EC%95%B5%EB%91%90", - "color_name": "06 필링 앵두", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#edd3d5", - "lab_l": 86.96, - "lab_a": 9.18, - "lab_b": 2.52, - "warmCool": 57.04, - "lightDeep": 12.16, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", - "image": "https://romand.io/images/product/958/HVs9RVIp3xylieHLYevVIjGWwe6mlre889pPsnoQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000X&option_name=24%20%EB%B2%A0%EC%96%B4%20%EC%A5%AC%EC%8B%9C%20%EC%98%A4", - "color_name": "24 베어 쥬시 오", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f9e4da", - "lab_l": 92.09, - "lab_a": 5.83, - "lab_b": 7.26, - "warmCool": 56.52, - "lightDeep": 8.43, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", - "image": "https://romand.io/images/product/958/kOY2uHHIYeeicQZh8S162C63jtojxgS0EAq9ZR8H.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000W&option_name=23%20%ED%94%BC%EC%B9%98%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "color_name": "23 피치 피치 미", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f9e4e7", - "lab_l": 92.36, - "lab_a": 7.6, - "lab_b": 1.17, - "warmCool": 52.01, - "lightDeep": 6.47, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", - "image": "https://romand.io/images/product/958/yMaewlQ2iW42hrhNZw2kLlG40dD9JY5ZRgWIqIdi.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000V&option_name=22%20%EB%8F%84%ED%86%A0%EB%A6%AC%20%EB%B0%A4", - "color_name": "22 도토리 밤", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#e5cccf", - "lab_l": 84.42, - "lab_a": 9.11, - "lab_b": 2.04, - "warmCool": 55.15, - "lightDeep": 15.1, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", - "image": "https://romand.io/images/product/958/inczn5S3hX1dOAt7UCkPINdupgH6qbJZ1xVQpPET.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000U&option_name=21%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84%20%EB%B0%A4", - "color_name": "21 그레이프 밤", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3d8e3", - "lab_l": 88.84, - "lab_a": 11.35, - "lab_b": -2.16, - "warmCool": 51.86, - "lightDeep": 10.0, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", - "image": "https://romand.io/images/product/958/1I9OyW4j0wijPOsEbaoljzreN4aGXUTRlcAK7L04.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000T&option_name=20%20%EC%A5%AC%EC%A5%AC%20%ED%94%BC%EA%B7%B8", - "color_name": "20 쥬쥬 피그", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3dcdf", - "lab_l": 89.83, - "lab_a": 8.67, - "lab_b": 1.33, - "warmCool": 52.33, - "lightDeep": 9.22, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", - "image": "https://romand.io/images/product/958/2OBJbPaANmkScXjLtjRX48shuuCgsYE9p1j9Nbz1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000S&option_name=19%20%EC%8D%B8%EB%A8%B8%20%EC%84%BC%ED%8A%B8", - "color_name": "19 썸머 센트", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f7cfd2", - "lab_l": 86.76, - "lab_a": 14.29, - "lab_b": 3.74, - "warmCool": 60.82, - "lightDeep": 10.98, - "cluster": 2 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", - "image": "https://romand.io/images/product/958/XP3eLtN4ZcjUmvyvmgyXiaeDZnwxYJ2HaDjeffdb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000Q&option_name=17%20%EB%8B%A4%ED%81%AC%20%EC%BD%94%EC%BD%94%EB%84%9B", - "color_name": "17 다크 코코넛", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ddcdcb", - "lab_l": 83.88, - "lab_a": 5.23, - "lab_b": 3.07, - "warmCool": 55.83, - "lightDeep": 16.86, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", - "image": "https://romand.io/images/product/958/MeHqAPbIXbv1DYd4ttfVFpdODslPH4cKYzG8Amsb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000P&option_name=16%20%ED%94%8C%EB%9F%BC%20%EC%BD%95", - "color_name": "16 플럼 콕", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ddc9cd", - "lab_l": 82.83, - "lab_a": 7.95, - "lab_b": 0.4, - "warmCool": 53.06, - "lightDeep": 17.25, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", - "image": "https://romand.io/images/product/958/EfEL2EDNWkUFzS741F9hN9M7fFYUvjTIQ4X9GX6Y.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000O&option_name=15%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "color_name": "15 베어 피그", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ebd5db", - "lab_l": 87.36, - "lab_a": 8.32, - "lab_b": 0.03, - "warmCool": 53.31, - "lightDeep": 12.16, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", - "image": "https://romand.io/images/product/958/oxJxwHns1GrJk0WAn9QXxQiil0CalGNZceDsluQg.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000N&option_name=14%20%EC%95%84%EB%AA%AC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "color_name": "14 아몬드 로즈", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ecd5d7", - "lab_l": 87.43, - "lab_a": 8.31, - "lab_b": 2.02, - "warmCool": 56.31, - "lightDeep": 11.96, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", - "image": "https://romand.io/images/product/958/QK4geWmsw4P0tJNFQEOeHgdrC8PD89ABuP6xCIBx.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000M&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "color_name": "13 잇 도토리", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#e8d1cf", - "lab_l": 85.89, - "lab_a": 7.21, - "lab_b": 4.05, - "warmCool": 58.39, - "lightDeep": 13.92, - "cluster": 2 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", - "image": "https://romand.io/images/product/958/B06iurpARo7agGql1klQnt9XEO2blsvJFgd73Yf3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000L&option_name=12%20%EC%95%A0%ED%94%8C%20%EB%B8%8C%EB%9D%BC%EC%9A%B4", - "color_name": "12 애플 브라운", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ebd4d0", - "lab_l": 86.87, - "lab_a": 6.97, - "lab_b": 5.07, - "warmCool": 60.44, - "lightDeep": 13.14, - "cluster": 2 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", - "image": "https://romand.io/images/product/958/oJgHkcoeViDMvaiM7ZDEAGAOHG3BJ2L3F4rv9ZuD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000K&option_name=11%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "color_name": "11 파파야 잼", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f5d9d5", - "lab_l": 88.93, - "lab_a": 9.37, - "lab_b": 5.56, - "warmCool": 64.13, - "lightDeep": 10.2, - "cluster": 2 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7", - "color_name": "10 베어 애프리콧", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f8dedd", - "lab_l": 90.7, - "lab_a": 8.82, - "lab_b": 3.9, - "warmCool": 53.79, - "lightDeep": 8.04, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", - "color_name": "09 멀드 피치", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3dedd", - "lab_l": 90.21, - "lab_a": 7.41, - "lab_b": 2.99, - "warmCool": 53.31, - "lightDeep": 9.02, - "cluster": 0 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "color_name": "08 핑크 펌킨", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3d7d5", - "lab_l": 88.31, - "lab_a": 9.39, - "lab_b": 4.44, - "warmCool": 61.8, - "lightDeep": 10.59, - "cluster": 2 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", - "color_name": "07 체리 밤", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#e9cccf", - "lab_l": 84.71, - "lab_a": 10.51, - "lab_b": 2.09, - "warmCool": 56.32, - "lightDeep": 14.31, - "cluster": 1 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", - "color_name": "05 쥬쥬브", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f1d7d7", - "lab_l": 88.11, - "lab_a": 8.97, - "lab_b": 3.27, - "warmCool": 59.29, - "lightDeep": 10.59, - "cluster": 2 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", - "color_name": "06 인 바이너리", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#efdfe2", - "lab_l": 90.41, - "lab_a": 5.87, - "lab_b": 0.43, - "warmCool": 51.48, - "lightDeep": 9.41, - "cluster": 0 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", - "color_name": "05 더치 코코아", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f0e1df", - "lab_l": 90.81, - "lab_a": 5.06, - "lab_b": 2.62, - "warmCool": 53.05, - "lightDeep": 9.22, - "cluster": 0 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", - "color_name": "04 카멜 너츠", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f5e5e2", - "lab_l": 92.28, - "lab_a": 4.88, - "lab_b": 3.45, - "warmCool": 53.48, - "lightDeep": 7.65, - "cluster": 0 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "color_name": "03 태피 베리", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f8e1e4", - "lab_l": 91.61, - "lab_a": 8.1, - "lab_b": 1.65, - "warmCool": 52.27, - "lightDeep": 7.25, - "cluster": 0 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", - "color_name": "02 버니 홉", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f8e6e9", - "lab_l": 92.95, - "lab_a": 6.53, - "lab_b": 0.82, - "warmCool": 51.65, - "lightDeep": 6.27, - "cluster": 0 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", - "color_name": "01 베어 펌킨", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f8e9e4", - "lab_l": 93.49, - "lab_a": 4.38, - "lab_b": 3.97, - "warmCool": 54.07, - "lightDeep": 6.67, - "cluster": 0 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", - "color_name": "30 캐슈넛 로즈", - "category": "쥬시 래스팅 틴트 MINI", - "brand": "롬앤", - "hex": "#f6e9e8", - "lab_l": 93.44, - "lab_a": 4.35, - "lab_b": 2.11, - "warmCool": 52.31, - "lightDeep": 6.27, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", - "color_name": "10 누 베이지", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f4e6e0", - "lab_l": 92.34, - "lab_a": 3.71, - "lab_b": 4.42, - "warmCool": 54.45, - "lightDeep": 8.24, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", - "color_name": "11 버피 코랄", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f4e5e1", - "lab_l": 92.09, - "lab_a": 4.63, - "lab_b": 3.81, - "warmCool": 53.79, - "lightDeep": 8.04, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "color_name": "12 베일드 로즈", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f2e1e1", - "lab_l": 91.02, - "lab_a": 5.85, - "lab_b": 1.88, - "warmCool": 52.45, - "lightDeep": 8.43, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", - "color_name": "13 스카치 누드", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f0deda", - "lab_l": 90.02, - "lab_a": 5.26, - "lab_b": 4.32, - "warmCool": 61.42, - "lightDeep": 10.2, - "cluster": 2 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", - "color_name": "14 디어 애플", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f4ddda", - "lab_l": 90.09, - "lab_a": 7.51, - "lab_b": 4.16, - "warmCool": 54.28, - "lightDeep": 9.41, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", - "color_name": "15 피칸 브루", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f2dad3", - "lab_l": 88.86, - "lab_a": 7.32, - "lab_b": 6.06, - "warmCool": 64.86, - "lightDeep": 11.18, - "cluster": 2 - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", - "color_name": "펑키 멜론", - "category": "[COHA] 쥬시 래스팅 틴트 펑키 멜론", - "brand": "롬앤", - "hex": "#edbbc8", - "lab_l": 80.7, - "lab_a": 19.84, - "lab_b": 0.24, - "warmCool": 55.18, - "lightDeep": 16.86, - "cluster": 1 - }, - { - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", - "color_name": "36 피치 허니 비", - "category": "[COHA] 쥬시 래스팅 틴트 NO.36", - "brand": "롬앤", - "hex": "#f4dad8", - "lab_l": 89.33, - "lab_a": 8.33, - "lab_b": 4.46, - "warmCool": 54.24, - "lightDeep": 9.8, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", - "color_name": "17 베리 인 블랙", - "category": "글래스팅 멜팅 밤 #블랙스펙트럼", - "brand": "롬앤", - "hex": "#cdcacc", - "lab_l": 81.87, - "lab_a": 1.06, - "lab_b": -0.34, - "warmCool": 50, - "lightDeep": 20.2, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", - "color_name": "16 키튼 피치", - "category": "글래스팅 멜팅 밤 #블랙스펙트럼", - "brand": "롬앤", - "hex": "#d8cccc", - "lab_l": 83.12, - "lab_a": 4.48, - "lab_b": 1.47, - "warmCool": 53.33, - "lightDeep": 17.65, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "color_name": "06 카야 피그", - "category": "글래스팅 멜팅 밤 #블랙스펙트럼", - "brand": "롬앤", - "hex": "#d5cccd", - "lab_l": 83.07, - "lab_a": 3.08, - "lab_b": 0.98, - "warmCool": 52.0, - "lightDeep": 18.24, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", - "image": "https://romand.io/images/product/757/yJp29K9lzByeOCbmaKahgMnnJKpXIqxNxDHPDUo5.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000P&option_name=09%20%ED%94%BC%EC%98%A4%EB%8B%88%EC%A6%88", - "color_name": "09 피오니즈", - "category": "글래스팅 멜팅 밤 #뉴베어", - "brand": "롬앤", - "hex": "#fbf5f6", - "lab_l": 97.04, - "lab_a": 2.27, - "lab_b": 0.01, - "warmCool": 50.6, - "lightDeep": 2.75, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", - "image": "https://romand.io/images/product/757/91eoj10Pz9IVNHamBY3Xed6tIjMJchIbqjbTQZXt.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000O&option_name=08%20%EC%BD%94%EB%9E%84%EB%A6%AC%EC%95%84", - "color_name": "08 코랄리아", - "category": "글래스팅 멜팅 밤 #뉴베어", - "brand": "롬앤", - "hex": "#fbf5f3", - "lab_l": 97.01, - "lab_a": 1.77, - "lab_b": 1.36, - "warmCool": 51.75, - "lightDeep": 3.14, - "cluster": 3 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", - "image": "https://romand.io/images/product/890/2XljHRzFt8z6KtKJB59rxGkn0AukfHVkMp7MqRuV.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000C&option_name=05%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "color_name": "05 피치 미", - "category": "쥬시 래스팅 틴트 #단종귀환템", - "brand": "롬앤", - "hex": "#fde0e3", - "lab_l": 91.63, - "lab_a": 10.59, - "lab_b": 2.27, - "warmCool": 52.89, - "lightDeep": 6.47, - "cluster": 0 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", - "image": "https://romand.io/images/product/890/PGGDHAoQsh980WHj9zys2vbds0snYQMhizUie6PY.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000B&option_name=04%20%20%EB%93%9C%EB%9E%98%EA%B3%A4%20%ED%95%91%ED%81%AC", - "color_name": "04 드래곤 핑크", - "category": "쥬시 래스팅 틴트 #단종귀환템", - "brand": "롬앤", - "hex": "#facde1", - "lab_l": 87.0, - "lab_a": 18.89, - "lab_b": -3.75, - "warmCool": 51.58, - "lightDeep": 10.78, - "cluster": 0 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", - "image": "https://romand.io/images/product/49/JV8NqUVwLthMiBxlmAbQ65XLjXRHXt0Qf1nqKYqP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00OG&option_name=29%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "color_name": "29 파파야 잼", - "category": "쥬시 래스팅 틴트 #밀크그로서리", - "brand": "롬앤", - "hex": "#f8ede8", - "lab_l": 94.66, - "lab_a": 2.89, - "lab_b": 3.84, - "warmCool": 53.63, - "lightDeep": 5.88, - "cluster": 0 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", - "image": "https://romand.io/images/product/49/PvDFiup7g5fJvEfkiJNyn73CBOkZp2VucBuNZhSq.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00NX&option_name=28%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "color_name": "28 베어 피그", - "category": "쥬시 래스팅 틴트 #밀크그로서리", - "brand": "롬앤", - "hex": "#f7eeed", - "lab_l": 94.83, - "lab_a": 2.89, - "lab_b": 1.54, - "warmCool": 51.8, - "lightDeep": 5.1, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", - "image": "https://romand.io/images/product/655/vl3Kp3qFAEe2ermmW7L4cuJoBXrxXEyZ56YTaWL4.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FI&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "color_name": "06 카야 피그", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#ecd7d8", - "lab_l": 87.84, - "lab_a": 7.2, - "lab_b": 2.27, - "warmCool": 56.6, - "lightDeep": 11.57, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", - "image": "https://romand.io/images/product/655/fkMWkrsCoeqGyO1onb5tkOvgIaxVvIbR6VdTPRoV.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FD&option_name=01%20%EC%BD%94%EC%BD%94%20%EB%88%84%EB%93%9C", - "color_name": "01 코코 누드", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f6e9e6", - "lab_l": 93.47, - "lab_a": 3.73, - "lab_b": 3.17, - "warmCool": 53.12, - "lightDeep": 6.67, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", - "image": "https://romand.io/images/product/655/4aMjABkiueyfVm12habY4NR4M48s7sWfJrLMMawd.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FE&option_name=02%20%EB%9F%AC%EB%B9%84%20%ED%95%91%ED%81%AC", - "color_name": "02 러비 핑크", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f9e5e8", - "lab_l": 92.75, - "lab_a": 7.28, - "lab_b": 0.85, - "warmCool": 51.88, - "lightDeep": 6.27, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", - "image": "https://romand.io/images/product/655/1vV6pMdBV627mX2QSq4aPdLeQnbopcnrLXChumBo.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FF&option_name=03%20%EC%86%8C%EB%A5%B4%EB%B2%A0%20%EB%B0%A4", - "color_name": "03 소르베 밤", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f6e7e5", - "lab_l": 92.84, - "lab_a": 4.96, - "lab_b": 2.72, - "warmCool": 52.95, - "lightDeep": 6.86, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", - "image": "https://romand.io/images/product/655/otoAh9xx2OvsmaAKFhdhVxd71Q3FoI5rCezxqpvb.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FG&option_name=04%20%ED%9E%88%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "color_name": "04 히피 베리", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f0d3d6", - "lab_l": 87.13, - "lab_a": 10.34, - "lab_b": 2.3, - "warmCool": 57.49, - "lightDeep": 11.57, - "cluster": 2 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", - "image": "https://romand.io/images/product/655/kpZBguUaYBShV9UjCqjxiejfWSAm0ZXFQybihogt.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FH&option_name=05%20%EB%88%84%EA%B0%80%20%EC%83%8C%EB%93%9C", - "color_name": "05 누가 샌드", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f1e6e4", - "lab_l": 92.41, - "lab_a": 3.26, - "lab_b": 2.38, - "warmCool": 52.57, - "lightDeep": 8.04, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", - "image": "https://romand.io/images/product/655/lw6TIt1IFTdWl2s4no8tHeLN2YxgM9tdK1wYUips.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FJ&option_name=07%20%EB%AA%A8%EB%B8%8C%20%ED%9C%A9", - "color_name": "07 모브 휩", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#ecdcde", - "lab_l": 89.14, - "lab_a": 5.73, - "lab_b": 0.93, - "warmCool": 54.72, - "lightDeep": 10.59, - "cluster": 0 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", - "image": "https://romand.io/images/product/515/PKURcokT6yaSMCghl5QJNBTyIYCJqWCEjA1fjrsw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/515/?variant_code=P00000TV000C&option_name=16%20%EC%BD%94%EB%8B%88%20%EC%86%8C%EB%8B%A4", - "color_name": "16 코니 소다", - "category": "쥬시 래스팅 틴트 #스파클링", - "brand": "롬앤", - "hex": "#e3c6c7", - "lab_l": 82.39, - "lab_a": 10.54, - "lab_b": 3.33, - "warmCool": 56.56, - "lightDeep": 16.67, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", - "image": "https://romand.io/images/product/817/SefjWR5iYfiWloM9IUu083u2ZO9f03ppLuS2wGpq.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000F&option_name=02%20%EB%82%98%EC%9D%B4%ED%8A%B8%20%EB%A7%88%EB%A6%B0", - "color_name": "02 나이트 마린", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#f5f1f4", - "lab_l": 95.63, - "lab_a": 1.96, - "lab_b": -0.84, - "warmCool": 48.93, - "lightDeep": 4.71, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", - "image": "https://romand.io/images/product/817/y3vX9lxV6fhJZEZylr2hOLWjEDksT9Fq4WJONf9c.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000G&option_name=03%20%ED%8E%98%EC%96%B4%EB%A6%AC%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "color_name": "03 페어리 샤베트", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#f9f2f8", - "lab_l": 96.45, - "lab_a": 3.17, - "lab_b": -1.7, - "warmCool": 47.69, - "lightDeep": 3.73, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", - "image": "https://romand.io/images/product/817/g0Jo8nHxXolDshoOkWVJpJVFqdFPG6wgE0WJXCRZ.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000H&option_name=04%20%ED%97%88%EB%8B%88%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "color_name": "04 허니 샤베트", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#fcf6ee", - "lab_l": 97.26, - "lab_a": 0.67, - "lab_b": 4.56, - "warmCool": 54.05, - "lightDeep": 3.92, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", - "image": "https://romand.io/images/product/817/e1zRzltrbR79ByQNXXqyOuaPV2W268gwdd3QKRds.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000I&option_name=05%20%ED%94%BC%EC%B9%98%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "color_name": "05 피치 샤베트", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#fcf6f3", - "lab_l": 97.35, - "lab_a": 1.8, - "lab_b": 2.18, - "warmCool": 52.11, - "lightDeep": 2.94, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", - "image": "https://romand.io/images/product/817/19z3uTts0K4r09iHf3DKMSiNkT7dtRSV4LT0Q93Z.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000J&option_name=06%20%ED%81%B4%EB%A6%AC%EC%96%B4%20%EC%A0%A4%EB%A6%AC", - "color_name": "06 클리어 젤리", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#f9f9f9", - "lab_l": 97.96, - "lab_a": 0.05, - "lab_b": -0.11, - "warmCool": 50.0, - "lightDeep": 2.35, - "cluster": 3 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", - "image": "https://romand.io/images/product/300/GDNb1zDIFg6oP0su1vDRlKUc2T8aLWStdk4Tfv4o.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000I&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "color_name": "13 잇 도토리", - "category": "쥬시 래스팅 틴트 #가을열매", - "brand": "롬앤", - "hex": "#e7cec9", - "lab_l": 84.93, - "lab_a": 7.65, - "lab_b": 5.77, - "warmCool": 60.35, - "lightDeep": 15.29, - "cluster": 2 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", - "image": "https://romand.io/images/product/300/HbMLPwuYY0vtbEZHE2e0Fsq9CDmXCqaZMY3LXmqR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000G&option_name=11%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "color_name": "11 핑크 펌킨", - "category": "쥬시 래스팅 틴트 #가을열매", - "brand": "롬앤", - "hex": "#f1d8d9", - "lab_l": 88.59, - "lab_a": 8.62, - "lab_b": 2.99, - "warmCool": 58.41, - "lightDeep": 10.39, - "cluster": 2 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", - "image": "https://romand.io/images/product/300/AM3zv8bwCn0OPbUqFxyXnt9t78kSUy088r31xR7K.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000F&option_name=10%20%EB%88%84%EB%94%94%20%ED%94%BC%EB%84%9B", - "color_name": "10 누디 피넛", - "category": "쥬시 래스팅 틴트 #가을열매", - "brand": "롬앤", - "hex": "#f2dbd9", - "lab_l": 89.38, - "lab_a": 7.46, - "lab_b": 4.11, - "warmCool": 60.93, - "lightDeep": 10.0, - "cluster": 2 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", - "image": "https://romand.io/images/product/343/83hNUBzKzJQlENPe1SzACyEp4LRLHs829TPrKJL1.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CJ&option_name=02%20%EB%A0%88%EB%93%9C%20%EB%93%9C%EB%A1%AD", - "color_name": "02 레드 드롭", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#edd0d0", - "lab_l": 85.96, - "lab_a": 10.22, - "lab_b": 3.44, - "warmCool": 58.74, - "lightDeep": 12.75, - "cluster": 2 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", - "image": "https://romand.io/images/product/343/hQexC85XR5qR4DkMetrs1SiMg5Y6RvUMMo90H2Nk.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CK&option_name=03%20%EB%B8%8C%EB%A6%AD%20%EB%A6%AC%EB%B2%84", - "color_name": "03 브릭 리버", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ebd5d2", - "lab_l": 87.01, - "lab_a": 7.26, - "lab_b": 3.91, - "warmCool": 59.62, - "lightDeep": 12.75, - "cluster": 2 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", - "image": "https://romand.io/images/product/343/BZgkQP0CTQ1Wb8FTVcLlVBqfPwSBpyZ3BeEQVdCu.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CL&option_name=04%20%EB%B9%88%ED%8B%B0%EC%A7%80%20%EC%98%A4%EC%85%98", - "color_name": "04 빈티지 오션", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#e2d1cf", - "lab_l": 85.33, - "lab_a": 5.72, - "lab_b": 2.97, - "warmCool": 56.59, - "lightDeep": 15.1, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", - "image": "https://romand.io/images/product/343/Zgt57l9jOIHt0W047LxwsfxW4r24ARMearETLLC2.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CM&option_name=05%20%EB%A1%9C%EC%A6%88%20%EC%8A%A4%ED%94%8C%EB%9E%98%EC%89%AC", - "color_name": "05 로즈 스플래쉬", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ead4d6", - "lab_l": 86.82, - "lab_a": 8.27, - "lab_b": 1.44, - "warmCool": 55.8, - "lightDeep": 12.55, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", - "image": "https://romand.io/images/product/343/q0xStU1kzFEXTy8AziwIyiF2WShatd1rfNwkMNzJ.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CN&option_name=08%20%EB%A1%9C%EC%A0%9C%20%EC%8A%A4%ED%8A%B8%EB%A6%BC", - "color_name": "08 로제 스트림", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ead6d7", - "lab_l": 87.31, - "lab_a": 7.08, - "lab_b": 2.04, - "warmCool": 56.07, - "lightDeep": 12.16, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", - "image": "https://romand.io/images/product/451/MiJFUm3pVt8PRHg5dBak9UJMYVcTvtuWFqoFaMqb.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BB&option_name=00%20%EB%A9%94%ED%85%8C%EC%98%A4%20%ED%8A%B8%EB%9E%99", - "color_name": "00 메테오 트랙", - "category": "글래스팅 워터 글로스", - "brand": "롬앤", - "hex": "#f6f6f6", - "lab_l": 96.96, - "lab_a": 0.27, - "lab_b": -0.24, - "warmCool": 50.0, - "lightDeep": 3.53, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", - "image": "https://romand.io/images/product/451/TM1sDRWJvxsVuJaYtXOQ2C1sB3mq7icZuaJBHZvC.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BC&option_name=01%20%EC%82%B0%ED%98%B8%20%ED%81%AC%EB%9F%AC%EC%89%AC", - "color_name": "01 산호 크러쉬", - "category": "글래스팅 워터 글로스", - "brand": "롬앤", - "hex": "#fae4dd", - "lab_l": 92.32, - "lab_a": 6.6, - "lab_b": 6.08, - "warmCool": 55.51, - "lightDeep": 7.65, - "cluster": 0 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", - "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85", - "color_name": "04 칠리 업", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#e8cecd", - "lab_l": 85.18, - "lab_a": 8.77, - "lab_b": 4.1, - "warmCool": 58.08, - "lightDeep": 14.31, - "cluster": 1 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88", - "color_name": "06 툴리안", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#f0d3db", - "lab_l": 87.28, - "lab_a": 11.4, - "lab_b": -0.44, - "warmCool": 54.23, - "lightDeep": 11.57, - "cluster": 1 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4", - "color_name": "07 체리 웨이", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#f1cdd0", - "lab_l": 85.72, - "lab_a": 12.89, - "lab_b": 3.09, - "warmCool": 58.77, - "lightDeep": 12.55, - "cluster": 2 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88", - "color_name": "03 이프 로즈", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ebd3d4", - "lab_l": 86.78, - "lab_a": 8.37, - "lab_b": 2.79, - "warmCool": 56.97, - "lightDeep": 12.55, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 05 딤 모브", - "image": "https://romand.io/images/product/847/Yvq1cQTmyhIhO1bi3jqhmdS7I7EboT3muVjsDvRt.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GX&option_name=05%20%EB%94%A4%20%EB%AA%A8%EB%B8%8C", - "color_name": "05 딤 모브", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#e4d3d3", - "lab_l": 86.03, - "lab_a": 5.89, - "lab_b": 2.01, - "warmCool": 55.31, - "lightDeep": 13.92, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8", - "color_name": "02 너티 베이그", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#efddd8", - "lab_l": 89.59, - "lab_a": 5.37, - "lab_b": 4.63, - "warmCool": 61.9, - "lightDeep": 10.78, - "cluster": 2 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", - "image": "https://romand.io/images/product/847/nXD733s6NgeMuPj5hVLwORizy2MJ9r8JCdX8tYuY.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GW&option_name=04%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%BC%20%EC%9B%A8%EC%9D%B4", - "color_name": "04 그레이피 웨이", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#ecd6da", - "lab_l": 87.51, - "lab_a": 8.33, - "lab_b": 0.58, - "warmCool": 54.75, - "lightDeep": 11.76, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", - "image": "https://romand.io/images/product/847/6EADRhaRhU7YXAytPK2rRsvg0rdS8dRTxXqzmLZm.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GV&option_name=03%20%EB%A1%9C%EC%A6%88%20%ED%95%80%EC%B9%98", - "color_name": "03 로즈 핀치", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#e9d6d7", - "lab_l": 87.39, - "lab_a": 6.8, - "lab_b": 1.81, - "warmCool": 55.72, - "lightDeep": 12.35, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4", - "color_name": "06 디픈 무어", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#e3d1cf", - "lab_l": 85.32, - "lab_a": 5.93, - "lab_b": 3.34, - "warmCool": 56.87, - "lightDeep": 14.9, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", - "image": "https://romand.io/images/product/847/dt3narGEEUTYpJG5Qbldcenng5Pgke18Z9cH61ZV.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GT&option_name=01%20%ED%94%BC%EC%98%A4%EB%8B%88%20%EB%B0%9C%EB%A0%88", - "color_name": "01 피오니 발레", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#f5e2e4", - "lab_l": 91.51, - "lab_a": 7.11, - "lab_b": 1.13, - "warmCool": 52.09, - "lightDeep": 7.65, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", - "image": "https://romand.io/images/product/859/y5NwVVP7YTnU3l0HAlzWkwxoxw7OkNWnhfQAfNzE.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/859/?variant_code=P0000BHB000A&option_name=09%20%EC%86%8C%ED%94%84%ED%8A%B8%20%ED%92%80", - "color_name": "09 소프트 풀", - "category": "글래스팅 워터 틴트 MINI", - "brand": "롬앤", - "hex": "#f0dae0", - "lab_l": 89.12, - "lab_a": 8.39, - "lab_b": 0.06, - "warmCool": 53.81, - "lightDeep": 10.2, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84", - "color_name": "07 스프링 피버", - "category": "글래스팅 컬러 글로스 #스프링피버", - "brand": "롬앤", - "hex": "#f9e5e5", - "lab_l": 92.6, - "lab_a": 6.7, - "lab_b": 2.58, - "warmCool": 52.69, - "lightDeep": 6.27, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", - "image": "https://romand.io/images/product/879/mSn9TLjjWdOIg0T8FG2xAvhGNa7rCJNeDpH7pZ6D.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000C&option_name=08%20%EC%B2%B4%EB%A6%AC%20%EC%97%85", - "color_name": "08 체리 업", - "category": "글래스팅 컬러 글로스 #스프링피버", - "brand": "롬앤", - "hex": "#f6e3e6", - "lab_l": 92.0, - "lab_a": 7.05, - "lab_b": 1.05, - "warmCool": 51.8, - "lightDeep": 7.25, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", - "color_name": "14 모브 문", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#f0dee1", - "lab_l": 90.09, - "lab_a": 6.97, - "lab_b": 0.59, - "warmCool": 51.73, - "lightDeep": 9.41, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", - "color_name": "15 누디 선다운", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#f1e0dc", - "lab_l": 90.51, - "lab_a": 5.12, - "lab_b": 4.12, - "warmCool": 54.06, - "lightDeep": 9.61, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", - "color_name": "16 피그 라이즈", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#ebd8d9", - "lab_l": 87.97, - "lab_a": 6.91, - "lab_b": 1.87, - "warmCool": 56.02, - "lightDeep": 11.57, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", - "color_name": "17 우디 선셋", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#e3d4d4", - "lab_l": 86.32, - "lab_a": 5.14, - "lab_b": 2.08, - "warmCool": 54.81, - "lightDeep": 13.92, - "cluster": 1 - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", - "image": "https://romand.io/images/product/900/20zNZqkRxaxi0TBA5Xi1rHFxVbf6PteRuSJthWTM.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000G&option_name=40%20%EB%B8%94%EB%9E%99%20%EC%82%AC%ED%8C%8C%EC%9D%B4%EC%96%B4", - "color_name": "40 블랙 사파이어", - "category": "[COHA] 쥬시 래스팅 틴트 MINI", - "brand": "롬앤", - "hex": "#e4dadc", - "lab_l": 88.01, - "lab_a": 4.11, - "lab_b": 0.06, - "warmCool": 52.26, - "lightDeep": 12.55, - "cluster": 1 - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", - "image": "https://romand.io/images/product/900/XqcciN7iH3Hz7wU4LDTfsZE9t606KxLRpkubIfc7.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000H&option_name=41%20%EC%9E%90%EB%91%90%EC%9D%B8%EB%83%A5", - "color_name": "41 자두인냥", - "category": "[COHA] 쥬시 래스팅 틴트 MINI", - "brand": "롬앤", - "hex": "#f0d8e3", - "lab_l": 88.71, - "lab_a": 10.29, - "lab_b": -2.26, - "warmCool": 50.73, - "lightDeep": 10.59, - "cluster": 0 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", - "color_name": "12 캐니언", - "category": "듀이풀 워터 틴트 #뮤트럴 누드", - "brand": "롬앤", - "hex": "#edd8d4", - "lab_l": 88.14, - "lab_a": 6.63, - "lab_b": 4.79, - "warmCool": 60.78, - "lightDeep": 11.96, - "cluster": 2 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", - "color_name": "13 커스터드 모브", - "category": "듀이풀 워터 틴트 #뮤트럴 누드", - "brand": "롬앤", - "hex": "#f1ddde", - "lab_l": 89.9, - "lab_a": 7.14, - "lab_b": 1.89, - "warmCool": 52.54, - "lightDeep": 9.41, - "cluster": 0 - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", - "image": "https://romand.io/images/product/965/09M9HtLkGPO8GNM3NToxgzDyIXoJ8Gv8WaTfyWXk.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000B&option_name=02%20%EB%B8%94%EB%9E%99%20%EB%B2%A0%EB%A6%AC%20%ED%8C%9F", - "color_name": "02 블랙 베리 팟", - "category": "글래스팅 멜팅 팟", - "brand": "롬앤", - "hex": "#c4c8d4", - "lab_l": 80.77, - "lab_a": 0.83, - "lab_b": -6.48, - "warmCool": 45.74, - "lightDeep": 20.0, - "cluster": 1 - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", - "image": "https://romand.io/images/product/965/30BQaNQpgtjbPym2zAAqNqDsiBwAkC9OYcqlSzX4.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000A&option_name=01%20%EC%BD%94%ED%8A%BC%20%EB%B0%80%ED%81%AC%20%ED%8C%9F", - "color_name": "01 코튼 밀크 팟", - "category": "글래스팅 멜팅 팟", - "brand": "롬앤", - "hex": "#f7f6f5", - "lab_l": 97.0, - "lab_a": 0.47, - "lab_b": 0.61, - "warmCool": 50.78, - "lightDeep": 3.53, - "cluster": 3 - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", - "image": "https://romand.io/images/product/965/rXnio3CB5DJRiOVlHQ1eHFvi6F8rQGxdjcQu3FhM.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000C&option_name=03%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%ED%8C%9F", - "color_name": "03 피치 허니 팟", - "category": "글래스팅 멜팅 팟", - "brand": "롬앤", - "hex": "#f8e9e7", - "lab_l": 93.62, - "lab_a": 4.72, - "lab_b": 2.67, - "warmCool": 52.91, - "lightDeep": 6.08, - "cluster": 0 - } -] \ No newline at end of file diff --git a/static/data/romand_products_enhanced.json b/static/data/romand_products_enhanced.json deleted file mode 100644 index 517ebff..0000000 --- a/static/data/romand_products_enhanced.json +++ /dev/null @@ -1,1289 +0,0 @@ -[ - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 30 보늬 밤", - "image": "https://romand.io/images/product/994/2hVgwjntZmhpGANTN6g0dJii6FWJRdKWcoJIDJVM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000K&option_name=30%20%EB%B3%B4%EB%8A%AC%20%EB%B0%A4", - "color_name": "30 보늬 밤", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#e8dbd8", - "lab_l": 88.46, - "lab_a": 4.33, - "lab_b": 2.91 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 29 조선 무화과", - "image": "https://romand.io/images/product/994/vp2VylRiIA3287NecXLwESdOZlPL1uQ0uDbl1GT6.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000J&option_name=29%20%EC%A1%B0%EC%84%A0%20%EB%AC%B4%ED%99%94%EA%B3%BC", - "color_name": "29 조선 무화과", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f7e0e0", - "lab_l": 91.16, - "lab_a": 7.6, - "lab_b": 2.96 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 28 설화 딸기", - "image": "https://romand.io/images/product/994/0y64Ojupqdu8ZW8Z4KZ4ucrIKrdf3lpueojfZtcK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000I&option_name=28%20%EC%84%A4%ED%99%94%20%EB%94%B8%EA%B8%B0", - "color_name": "28 설화 딸기", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f9e8ec", - "lab_l": 93.52, - "lab_a": 6.49, - "lab_b": 0.04 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 27 허니 듀 멜론", - "image": "https://romand.io/images/product/994/h4KEgqv0XejM1hZxnxZF0SPOcsingVAlg9LJC2TR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000H&option_name=27%20%ED%97%88%EB%8B%88%20%EB%93%80%20%EB%A9%9C%EB%A1%A0", - "color_name": "27 허니 듀 멜론", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f8e5e3", - "lab_l": 92.68, - "lab_a": 6.07, - "lab_b": 3.38 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 #레어시리즈 / 26 신비 복숭아", - "image": "https://romand.io/images/product/994/aL8OhiGRHY20X4WS3q8mKmqKNHCdBDYAhPvi88oy.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/994/?variant_code=P0000BMG000G&option_name=26%20%EC%8B%A0%EB%B9%84%20%EB%B3%B5%EC%88%AD%EC%95%84", - "color_name": "26 신비 복숭아", - "category": "더 쥬시 래스팅 틴트 #레어시리즈", - "brand": "롬앤", - "hex": "#f7dcdd", - "lab_l": 90.03, - "lab_a": 9.63, - "lab_b": 2.63 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 04 피그 피그", - "image": "https://romand.io/images/product/958/hVrWzeIAuVwXIUXGqSPfedtnS9ON0FiAC859PKgD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000D&option_name=04%20%ED%94%BC%EA%B7%B8%20%ED%94%BC%EA%B7%B8", - "color_name": "04 피그 피그", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ead4d9", - "lab_l": 86.93, - "lab_a": 8.58, - "lab_b": 0.31 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 03 베어 그레이프", - "image": "https://romand.io/images/product/958/Ax5b75vAi528eIiYmonRqylpfzrKROrVZVxnUa5w.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000C&option_name=03%20%EB%B2%A0%EC%96%B4%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84", - "color_name": "03 베어 그레이프", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#efdce0", - "lab_l": 89.51, - "lab_a": 7.38, - "lab_b": 0.64 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 02 누카다미아", - "image": "https://romand.io/images/product/958/nO3CrysMVL9U55KfxZurkmyIcryGpKjNZrYmDMr0.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000B&option_name=02%20%EB%88%84%EC%B9%B4%EB%8B%A4%EB%AF%B8%EC%95%84", - "color_name": "02 누카다미아", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f2dfdc", - "lab_l": 90.41, - "lab_a": 6.19, - "lab_b": 3.61 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 01 포멜로 스킨", - "image": "https://romand.io/images/product/958/KrjjrJXJNXjcmUKPkXrWAyobbvyVZxEaaiGAsDaS.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000A&option_name=01%20%ED%8F%AC%EB%A9%9C%EB%A1%9C%20%EC%8A%A4%ED%82%A8", - "color_name": "01 포멜로 스킨", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3e3de", - "lab_l": 91.55, - "lab_a": 4.46, - "lab_b": 4.55 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 06 필링 앵두", - "image": "https://romand.io/images/product/958/OA70z7jUdDOWeoUQEhsm61uHilEXmHkEMSpnkIJ3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000F&option_name=06%20%ED%95%84%EB%A7%81%20%EC%95%B5%EB%91%90", - "color_name": "06 필링 앵두", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#edd3d5", - "lab_l": 86.96, - "lab_a": 9.18, - "lab_b": 2.52 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 24 베어 쥬시 오", - "image": "https://romand.io/images/product/958/HVs9RVIp3xylieHLYevVIjGWwe6mlre889pPsnoQ.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000X&option_name=24%20%EB%B2%A0%EC%96%B4%20%EC%A5%AC%EC%8B%9C%20%EC%98%A4", - "color_name": "24 베어 쥬시 오", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f9e4da", - "lab_l": 92.09, - "lab_a": 5.83, - "lab_b": 7.26 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 23 피치 피치 미", - "image": "https://romand.io/images/product/958/kOY2uHHIYeeicQZh8S162C63jtojxgS0EAq9ZR8H.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000W&option_name=23%20%ED%94%BC%EC%B9%98%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "color_name": "23 피치 피치 미", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f9e4e7", - "lab_l": 92.36, - "lab_a": 7.6, - "lab_b": 1.17 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 22 도토리 밤", - "image": "https://romand.io/images/product/958/yMaewlQ2iW42hrhNZw2kLlG40dD9JY5ZRgWIqIdi.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000V&option_name=22%20%EB%8F%84%ED%86%A0%EB%A6%AC%20%EB%B0%A4", - "color_name": "22 도토리 밤", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#e5cccf", - "lab_l": 84.42, - "lab_a": 9.11, - "lab_b": 2.04 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 21 그레이프 밤", - "image": "https://romand.io/images/product/958/inczn5S3hX1dOAt7UCkPINdupgH6qbJZ1xVQpPET.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000U&option_name=21%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%84%20%EB%B0%A4", - "color_name": "21 그레이프 밤", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3d8e3", - "lab_l": 88.84, - "lab_a": 11.35, - "lab_b": -2.16 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 20 쥬쥬 피그", - "image": "https://romand.io/images/product/958/1I9OyW4j0wijPOsEbaoljzreN4aGXUTRlcAK7L04.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000T&option_name=20%20%EC%A5%AC%EC%A5%AC%20%ED%94%BC%EA%B7%B8", - "color_name": "20 쥬쥬 피그", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3dcdf", - "lab_l": 89.83, - "lab_a": 8.67, - "lab_b": 1.33 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 19 썸머 센트", - "image": "https://romand.io/images/product/958/2OBJbPaANmkScXjLtjRX48shuuCgsYE9p1j9Nbz1.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000S&option_name=19%20%EC%8D%B8%EB%A8%B8%20%EC%84%BC%ED%8A%B8", - "color_name": "19 썸머 센트", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f7cfd2", - "lab_l": 86.76, - "lab_a": 14.29, - "lab_b": 3.74 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 17 다크 코코넛", - "image": "https://romand.io/images/product/958/XP3eLtN4ZcjUmvyvmgyXiaeDZnwxYJ2HaDjeffdb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000Q&option_name=17%20%EB%8B%A4%ED%81%AC%20%EC%BD%94%EC%BD%94%EB%84%9B", - "color_name": "17 다크 코코넛", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ddcdcb", - "lab_l": 83.88, - "lab_a": 5.23, - "lab_b": 3.07 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 16 플럼 콕", - "image": "https://romand.io/images/product/958/MeHqAPbIXbv1DYd4ttfVFpdODslPH4cKYzG8Amsb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000P&option_name=16%20%ED%94%8C%EB%9F%BC%20%EC%BD%95", - "color_name": "16 플럼 콕", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ddc9cd", - "lab_l": 82.83, - "lab_a": 7.95, - "lab_b": 0.4 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 15 베어 피그", - "image": "https://romand.io/images/product/958/EfEL2EDNWkUFzS741F9hN9M7fFYUvjTIQ4X9GX6Y.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000O&option_name=15%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "color_name": "15 베어 피그", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ebd5db", - "lab_l": 87.36, - "lab_a": 8.32, - "lab_b": 0.03 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 14 아몬드 로즈", - "image": "https://romand.io/images/product/958/oxJxwHns1GrJk0WAn9QXxQiil0CalGNZceDsluQg.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000N&option_name=14%20%EC%95%84%EB%AA%AC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "color_name": "14 아몬드 로즈", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ecd5d7", - "lab_l": 87.43, - "lab_a": 8.31, - "lab_b": 2.02 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 13 잇 도토리", - "image": "https://romand.io/images/product/958/QK4geWmsw4P0tJNFQEOeHgdrC8PD89ABuP6xCIBx.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000M&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "color_name": "13 잇 도토리", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#e8d1cf", - "lab_l": 85.89, - "lab_a": 7.21, - "lab_b": 4.05 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 12 애플 브라운", - "image": "https://romand.io/images/product/958/B06iurpARo7agGql1klQnt9XEO2blsvJFgd73Yf3.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000L&option_name=12%20%EC%95%A0%ED%94%8C%20%EB%B8%8C%EB%9D%BC%EC%9A%B4", - "color_name": "12 애플 브라운", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#ebd4d0", - "lab_l": 86.87, - "lab_a": 6.97, - "lab_b": 5.07 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 11 파파야 잼", - "image": "https://romand.io/images/product/958/oJgHkcoeViDMvaiM7ZDEAGAOHG3BJ2L3F4rv9ZuD.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000K&option_name=11%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "color_name": "11 파파야 잼", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f5d9d5", - "lab_l": 88.93, - "lab_a": 9.37, - "lab_b": 5.56 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 10 베어 애프리콧", - "image": "https://romand.io/images/product/958/QD52KlGsKzWl5QtwmgroiiSn0y0abm7cotPUWU1v.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000J&option_name=10%20%EB%B2%A0%EC%96%B4%20%EC%95%A0%ED%94%84%EB%A6%AC%EC%BD%A7", - "color_name": "10 베어 애프리콧", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f8dedd", - "lab_l": 90.7, - "lab_a": 8.82, - "lab_b": 3.9 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 09 멀드 피치", - "image": "https://romand.io/images/product/958/ACQYJFhs3MqIqGnIugCft1mZKSBLmVRVlFNkEOxP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000I&option_name=09%20%EB%A9%80%EB%93%9C%20%ED%94%BC%EC%B9%98", - "color_name": "09 멀드 피치", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3dedd", - "lab_l": 90.21, - "lab_a": 7.41, - "lab_b": 2.99 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 08 핑크 펌킨", - "image": "https://romand.io/images/product/958/JP0abekdVUyFdheuHWBOEEl1PBELsV6QoZkL2YPK.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000H&option_name=08%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "color_name": "08 핑크 펌킨", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f3d7d5", - "lab_l": 88.31, - "lab_a": 9.39, - "lab_b": 4.44 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 07 체리 밤", - "image": "https://romand.io/images/product/958/iKTjBrzXDwqWW3QimfKxKU8vCSSjeICGlsmvTT3M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000G&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EB%B0%A4", - "color_name": "07 체리 밤", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#e9cccf", - "lab_l": 84.71, - "lab_a": 10.51, - "lab_b": 2.09 - }, - { - "name": "롬앤 더 쥬시 래스팅 틴트 / 05 쥬쥬브", - "image": "https://romand.io/images/product/958/UQiAZpL8zY2zzpHxnCgDfRvLa6Yb38ymNoFFJx4M.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/958/?variant_code=P0000BKW000E&option_name=05%20%EC%A5%AC%EC%A5%AC%EB%B8%8C", - "color_name": "05 쥬쥬브", - "category": "더 쥬시 래스팅 틴트", - "brand": "롬앤", - "hex": "#f1d7d7", - "lab_l": 88.11, - "lab_a": 8.97, - "lab_b": 3.27 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 06 인 바이너리", - "image": "https://romand.io/images/product/914/Cjtc5nbhltfSrWLXajdjhctz8ASkDmegf645golu.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000F&option_name=06%20%EC%9D%B8%20%EB%B0%94%EC%9D%B4%EB%84%88%EB%A6%AC", - "color_name": "06 인 바이너리", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#efdfe2", - "lab_l": 90.41, - "lab_a": 5.87, - "lab_b": 0.43 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 05 더치 코코아", - "image": "https://romand.io/images/product/914/KKrisSZpk7w26Ij8VuG9ojCVsCW1Z2cxtk6AB5sx.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000E&option_name=05%20%EB%8D%94%EC%B9%98%20%EC%BD%94%EC%BD%94%EC%95%84", - "color_name": "05 더치 코코아", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f0e1df", - "lab_l": 90.81, - "lab_a": 5.06, - "lab_b": 2.62 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 04 카멜 너츠", - "image": "https://romand.io/images/product/914/b1pgYnsvoPZ45J8dfa0IQYaqQLy32JZXWKtYCvQd.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000D&option_name=04%20%EC%B9%B4%EB%A9%9C%20%EB%84%88%EC%B8%A0", - "color_name": "04 카멜 너츠", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f5e5e2", - "lab_l": 92.28, - "lab_a": 4.88, - "lab_b": 3.45 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 03 태피 베리", - "image": "https://romand.io/images/product/914/cFCNTbYdLWOeruOVbsmVg4CJoaJ0kYP3OJT9XZjk.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000C&option_name=03%20%ED%83%9C%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "color_name": "03 태피 베리", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f8e1e4", - "lab_l": 91.61, - "lab_a": 8.1, - "lab_b": 1.65 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 02 버니 홉", - "image": "https://romand.io/images/product/914/Nci2yDfFBmGjlmAdAT5fPXDHcsq9SudDp4MF8s6v.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000B&option_name=02%20%EB%B2%84%EB%8B%88%20%ED%99%89", - "color_name": "02 버니 홉", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f8e6e9", - "lab_l": 92.95, - "lab_a": 6.53, - "lab_b": 0.82 - }, - { - "name": "롬앤 쉬어 틴티드 스틱 / 01 베어 펌킨", - "image": "https://romand.io/images/product/914/srpBdGR1vhZ7n9VMmX7iafFN7zgOLu1oxu3ZkTk9.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/914/?variant_code=P0000BJE000A&option_name=01%20%EB%B2%A0%EC%96%B4%20%ED%8E%8C%ED%82%A8", - "color_name": "01 베어 펌킨", - "category": "쉬어 틴티드 스틱", - "brand": "롬앤", - "hex": "#f8e9e4", - "lab_l": 93.49, - "lab_a": 4.38, - "lab_b": 3.97 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 MINI / 30 캐슈넛 로즈", - "image": "https://romand.io/images/product/816/m0ZRQjd4alvRs8L2kFFE4TXGnPfPoEGv8dSs62zh.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/816/?variant_code=P0000BFK000A&option_name=30%20%EC%BA%90%EC%8A%88%EB%84%9B%20%EB%A1%9C%EC%A6%88", - "color_name": "30 캐슈넛 로즈", - "category": "쥬시 래스팅 틴트 MINI", - "brand": "롬앤", - "hex": "#f6e9e8", - "lab_l": 93.44, - "lab_a": 4.35, - "lab_b": 2.11 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 10 누 베이지", - "image": "https://romand.io/images/product/835/NUyQZbqsEaBKovRvDJSCYjZNAsxAWE04lSpKfENN.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRD&option_name=10%20%EB%88%84%20%EB%B2%A0%EC%9D%B4%EC%A7%80", - "color_name": "10 누 베이지", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f4e6e0", - "lab_l": 92.34, - "lab_a": 3.71, - "lab_b": 4.42 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 11 버피 코랄", - "image": "https://romand.io/images/product/835/lHvrxDYabeSJGZwXJ3U1EubnOYNQASjudJ1BMZ2m.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRE&option_name=11%20%EB%B2%84%ED%94%BC%20%EC%BD%94%EB%9E%84", - "color_name": "11 버피 코랄", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f4e5e1", - "lab_l": 92.09, - "lab_a": 4.63, - "lab_b": 3.81 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 12 베일드 로즈", - "image": "https://romand.io/images/product/835/RNO6LVXc8tQGLbbduHLe0dTLj5ArcVkA40DGDYak.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRF&option_name=12%20%EB%B2%A0%EC%9D%BC%EB%93%9C%20%EB%A1%9C%EC%A6%88", - "color_name": "12 베일드 로즈", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f2e1e1", - "lab_l": 91.02, - "lab_a": 5.85, - "lab_b": 1.88 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 13 스카치 누드", - "image": "https://romand.io/images/product/835/KWrTJXvaCwbukkJmONrxGTA21jxjZAO5GUWxOMj9.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRG&option_name=13%20%EC%8A%A4%EC%B9%B4%EC%B9%98%20%EB%88%84%EB%93%9C", - "color_name": "13 스카치 누드", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f0deda", - "lab_l": 90.02, - "lab_a": 5.26, - "lab_b": 4.32 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 14 디어 애플", - "image": "https://romand.io/images/product/835/CN6ODkrXQkPQwnLA6Ik2DFl9UFsVlks0U2L5UDsM.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRH&option_name=14%20%EB%94%94%EC%96%B4%20%EC%95%A0%ED%94%8C", - "color_name": "14 디어 애플", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f4ddda", - "lab_l": 90.09, - "lab_a": 7.51, - "lab_b": 4.16 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #더스티온더누드 / 15 피칸 브루", - "image": "https://romand.io/images/product/835/jf53GAvICu8OKpFn6XZekg8F773VQ2jq618LAKOw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/835/?variant_code=P0000BGD0CRI&option_name=15%20%ED%94%BC%EC%B9%B8%20%EB%B8%8C%EB%A3%A8", - "color_name": "15 피칸 브루", - "category": "글래스팅 멜팅 밤 #더스티온더누드", - "brand": "롬앤", - "hex": "#f2dad3", - "lab_l": 88.86, - "lab_a": 7.32, - "lab_b": 6.06 - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 펑키 멜론 / 펑키 멜론", - "image": "https://romand.io/images/product/841/pLiEyH8MJjV8lpr142gQBPjJ5sYbekqxpeKfMf9F.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/841/?variant_code=P0000BGJ000I&option_name=%ED%8E%91%ED%82%A4%20%EB%A9%9C%EB%A1%A0", - "color_name": "펑키 멜론", - "category": "[COHA] 쥬시 래스팅 틴트 펑키 멜론", - "brand": "롬앤", - "hex": "#edbbc8", - "lab_l": 80.7, - "lab_a": 19.84, - "lab_b": 0.24 - }, - { - "name": "[COHA] 롬앤 쥬시 래스팅 틴트 NO.36 / 36 피치 허니 비", - "image": "https://romand.io/images/product/853/05vlUBwqiZbfjvIR91YzcnXhXSJbFSmKRG1GxXHp.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/853/?variant_code=P0000BGV00BG&option_name=36%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%EB%B9%84", - "color_name": "36 피치 허니 비", - "category": "[COHA] 쥬시 래스팅 틴트 NO.36", - "brand": "롬앤", - "hex": "#f4dad8", - "lab_l": 89.33, - "lab_a": 8.33, - "lab_b": 4.46 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 17 베리 인 블랙", - "image": "https://romand.io/images/product/902/UZg74Q1zeFIsVQugzASd3XuZp9Qz0hrSfBTTv1Cb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000E&option_name=17%20%EB%B2%A0%EB%A6%AC%20%EC%9D%B8%20%EB%B8%94%EB%9E%99", - "color_name": "17 베리 인 블랙", - "category": "글래스팅 멜팅 밤 #블랙스펙트럼", - "brand": "롬앤", - "hex": "#cdcacc", - "lab_l": 81.87, - "lab_a": 1.06, - "lab_b": -0.34 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 16 키튼 피치", - "image": "https://romand.io/images/product/902/EJ1VyyBRxhumy6rRRC3oNLbiy8qkqiB6KKPOWG5h.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000D&option_name=16%20%ED%82%A4%ED%8A%BC%20%ED%94%BC%EC%B9%98", - "color_name": "16 키튼 피치", - "category": "글래스팅 멜팅 밤 #블랙스펙트럼", - "brand": "롬앤", - "hex": "#d8cccc", - "lab_l": 83.12, - "lab_a": 4.48, - "lab_b": 1.47 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #블랙스펙트럼 / 06 카야 피그", - "image": "https://romand.io/images/product/902/3hQ1EehF0vNo65GAUh92JlD4ofo9PxcpILWHhFqb.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/902/?variant_code=P0000BIS000C&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "color_name": "06 카야 피그", - "category": "글래스팅 멜팅 밤 #블랙스펙트럼", - "brand": "롬앤", - "hex": "#d5cccd", - "lab_l": 83.07, - "lab_a": 3.08, - "lab_b": 0.98 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 09 피오니즈", - "image": "https://romand.io/images/product/757/yJp29K9lzByeOCbmaKahgMnnJKpXIqxNxDHPDUo5.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000P&option_name=09%20%ED%94%BC%EC%98%A4%EB%8B%88%EC%A6%88", - "color_name": "09 피오니즈", - "category": "글래스팅 멜팅 밤 #뉴베어", - "brand": "롬앤", - "hex": "#fbf5f6", - "lab_l": 97.04, - "lab_a": 2.27, - "lab_b": 0.01 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #뉴베어 / 08 코랄리아", - "image": "https://romand.io/images/product/757/91eoj10Pz9IVNHamBY3Xed6tIjMJchIbqjbTQZXt.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/757/?variant_code=P0000BDD000O&option_name=08%20%EC%BD%94%EB%9E%84%EB%A6%AC%EC%95%84", - "color_name": "08 코랄리아", - "category": "글래스팅 멜팅 밤 #뉴베어", - "brand": "롬앤", - "hex": "#fbf5f3", - "lab_l": 97.01, - "lab_a": 1.77, - "lab_b": 1.36 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 05 피치 미", - "image": "https://romand.io/images/product/890/2XljHRzFt8z6KtKJB59rxGkn0AukfHVkMp7MqRuV.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000C&option_name=05%20%ED%94%BC%EC%B9%98%20%EB%AF%B8", - "color_name": "05 피치 미", - "category": "쥬시 래스팅 틴트 #단종귀환템", - "brand": "롬앤", - "hex": "#fde0e3", - "lab_l": 91.63, - "lab_a": 10.59, - "lab_b": 2.27 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #단종귀환템 / 04 드래곤 핑크", - "image": "https://romand.io/images/product/890/PGGDHAoQsh980WHj9zys2vbds0snYQMhizUie6PY.png", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/890/?variant_code=P0000BIG000B&option_name=04%20%20%EB%93%9C%EB%9E%98%EA%B3%A4%20%ED%95%91%ED%81%AC", - "color_name": "04 드래곤 핑크", - "category": "쥬시 래스팅 틴트 #단종귀환템", - "brand": "롬앤", - "hex": "#facde1", - "lab_l": 87.0, - "lab_a": 18.89, - "lab_b": -3.75 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 29 파파야 잼", - "image": "https://romand.io/images/product/49/JV8NqUVwLthMiBxlmAbQ65XLjXRHXt0Qf1nqKYqP.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00OG&option_name=29%20%ED%8C%8C%ED%8C%8C%EC%95%BC%20%EC%9E%BC", - "color_name": "29 파파야 잼", - "category": "쥬시 래스팅 틴트 #밀크그로서리", - "brand": "롬앤", - "hex": "#f8ede8", - "lab_l": 94.66, - "lab_a": 2.89, - "lab_b": 3.84 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #밀크그로서리 / 28 베어 피그", - "image": "https://romand.io/images/product/49/PvDFiup7g5fJvEfkiJNyn73CBOkZp2VucBuNZhSq.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/49/?variant_code=P00000BW00NX&option_name=28%20%EB%B2%A0%EC%96%B4%20%ED%94%BC%EA%B7%B8", - "color_name": "28 베어 피그", - "category": "쥬시 래스팅 틴트 #밀크그로서리", - "brand": "롬앤", - "hex": "#f7eeed", - "lab_l": 94.83, - "lab_a": 2.89, - "lab_b": 1.54 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 06 카야 피그", - "image": "https://romand.io/images/product/655/vl3Kp3qFAEe2ermmW7L4cuJoBXrxXEyZ56YTaWL4.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FI&option_name=06%20%EC%B9%B4%EC%95%BC%20%ED%94%BC%EA%B7%B8", - "color_name": "06 카야 피그", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#ecd7d8", - "lab_l": 87.84, - "lab_a": 7.2, - "lab_b": 2.27 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 01 코코 누드", - "image": "https://romand.io/images/product/655/fkMWkrsCoeqGyO1onb5tkOvgIaxVvIbR6VdTPRoV.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FD&option_name=01%20%EC%BD%94%EC%BD%94%20%EB%88%84%EB%93%9C", - "color_name": "01 코코 누드", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f6e9e6", - "lab_l": 93.47, - "lab_a": 3.73, - "lab_b": 3.17 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 02 러비 핑크", - "image": "https://romand.io/images/product/655/4aMjABkiueyfVm12habY4NR4M48s7sWfJrLMMawd.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FE&option_name=02%20%EB%9F%AC%EB%B9%84%20%ED%95%91%ED%81%AC", - "color_name": "02 러비 핑크", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f9e5e8", - "lab_l": 92.75, - "lab_a": 7.28, - "lab_b": 0.85 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 03 소르베 밤", - "image": "https://romand.io/images/product/655/1vV6pMdBV627mX2QSq4aPdLeQnbopcnrLXChumBo.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FF&option_name=03%20%EC%86%8C%EB%A5%B4%EB%B2%A0%20%EB%B0%A4", - "color_name": "03 소르베 밤", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f6e7e5", - "lab_l": 92.84, - "lab_a": 4.96, - "lab_b": 2.72 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 04 히피 베리", - "image": "https://romand.io/images/product/655/otoAh9xx2OvsmaAKFhdhVxd71Q3FoI5rCezxqpvb.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FG&option_name=04%20%ED%9E%88%ED%94%BC%20%EB%B2%A0%EB%A6%AC", - "color_name": "04 히피 베리", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f0d3d6", - "lab_l": 87.13, - "lab_a": 10.34, - "lab_b": 2.3 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 05 누가 샌드", - "image": "https://romand.io/images/product/655/kpZBguUaYBShV9UjCqjxiejfWSAm0ZXFQybihogt.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FH&option_name=05%20%EB%88%84%EA%B0%80%20%EC%83%8C%EB%93%9C", - "color_name": "05 누가 샌드", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#f1e6e4", - "lab_l": 92.41, - "lab_a": 3.26, - "lab_b": 2.38 - }, - { - "name": "롬앤 글래스팅 멜팅 밤 #오리지널 / 07 모브 휩", - "image": "https://romand.io/images/product/655/lw6TIt1IFTdWl2s4no8tHeLN2YxgM9tdK1wYUips.jpg", - "price": "8,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/655/?variant_code=P00000ZF00FJ&option_name=07%20%EB%AA%A8%EB%B8%8C%20%ED%9C%A9", - "color_name": "07 모브 휩", - "category": "글래스팅 멜팅 밤 #오리지널", - "brand": "롬앤", - "hex": "#ecdcde", - "lab_l": 89.14, - "lab_a": 5.73, - "lab_b": 0.93 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #스파클링 / 16 코니 소다", - "image": "https://romand.io/images/product/515/PKURcokT6yaSMCghl5QJNBTyIYCJqWCEjA1fjrsw.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/515/?variant_code=P00000TV000C&option_name=16%20%EC%BD%94%EB%8B%88%20%EC%86%8C%EB%8B%A4", - "color_name": "16 코니 소다", - "category": "쥬시 래스팅 틴트 #스파클링", - "brand": "롬앤", - "hex": "#e3c6c7", - "lab_l": 82.39, - "lab_a": 10.54, - "lab_b": 3.33 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 02 나이트 마린", - "image": "https://romand.io/images/product/817/SefjWR5iYfiWloM9IUu083u2ZO9f03ppLuS2wGpq.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000F&option_name=02%20%EB%82%98%EC%9D%B4%ED%8A%B8%20%EB%A7%88%EB%A6%B0", - "color_name": "02 나이트 마린", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#f5f1f4", - "lab_l": 95.63, - "lab_a": 1.96, - "lab_b": -0.84 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 03 페어리 샤베트", - "image": "https://romand.io/images/product/817/y3vX9lxV6fhJZEZylr2hOLWjEDksT9Fq4WJONf9c.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000G&option_name=03%20%ED%8E%98%EC%96%B4%EB%A6%AC%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "color_name": "03 페어리 샤베트", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#f9f2f8", - "lab_l": 96.45, - "lab_a": 3.17, - "lab_b": -1.7 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 04 허니 샤베트", - "image": "https://romand.io/images/product/817/g0Jo8nHxXolDshoOkWVJpJVFqdFPG6wgE0WJXCRZ.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000H&option_name=04%20%ED%97%88%EB%8B%88%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "color_name": "04 허니 샤베트", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#fcf6ee", - "lab_l": 97.26, - "lab_a": 0.67, - "lab_b": 4.56 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 05 피치 샤베트", - "image": "https://romand.io/images/product/817/e1zRzltrbR79ByQNXXqyOuaPV2W268gwdd3QKRds.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000I&option_name=05%20%ED%94%BC%EC%B9%98%20%EC%83%A4%EB%B2%A0%ED%8A%B8", - "color_name": "05 피치 샤베트", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#fcf6f3", - "lab_l": 97.35, - "lab_a": 1.8, - "lab_b": 2.18 - }, - { - "name": "롬앤 글래스팅 워터 글로스 MINI / 06 클리어 젤리", - "image": "https://romand.io/images/product/817/19z3uTts0K4r09iHf3DKMSiNkT7dtRSV4LT0Q93Z.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/817/?variant_code=P0000BFL000J&option_name=06%20%ED%81%B4%EB%A6%AC%EC%96%B4%20%EC%A0%A4%EB%A6%AC", - "color_name": "06 클리어 젤리", - "category": "글래스팅 워터 글로스 MINI", - "brand": "롬앤", - "hex": "#f9f9f9", - "lab_l": 97.96, - "lab_a": 0.05, - "lab_b": -0.11 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 13 잇 도토리", - "image": "https://romand.io/images/product/300/GDNb1zDIFg6oP0su1vDRlKUc2T8aLWStdk4Tfv4o.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000I&option_name=13%20%EC%9E%87%20%EB%8F%84%ED%86%A0%EB%A6%AC", - "color_name": "13 잇 도토리", - "category": "쥬시 래스팅 틴트 #가을열매", - "brand": "롬앤", - "hex": "#e7cec9", - "lab_l": 84.93, - "lab_a": 7.65, - "lab_b": 5.77 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 11 핑크 펌킨", - "image": "https://romand.io/images/product/300/HbMLPwuYY0vtbEZHE2e0Fsq9CDmXCqaZMY3LXmqR.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000G&option_name=11%20%ED%95%91%ED%81%AC%20%ED%8E%8C%ED%82%A8", - "color_name": "11 핑크 펌킨", - "category": "쥬시 래스팅 틴트 #가을열매", - "brand": "롬앤", - "hex": "#f1d8d9", - "lab_l": 88.59, - "lab_a": 8.62, - "lab_b": 2.99 - }, - { - "name": "롬앤 쥬시 래스팅 틴트 #가을열매 / 10 누디 피넛", - "image": "https://romand.io/images/product/300/AM3zv8bwCn0OPbUqFxyXnt9t78kSUy088r31xR7K.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/300/?variant_code=P00000LO000F&option_name=10%20%EB%88%84%EB%94%94%20%ED%94%BC%EB%84%9B", - "color_name": "10 누디 피넛", - "category": "쥬시 래스팅 틴트 #가을열매", - "brand": "롬앤", - "hex": "#f2dbd9", - "lab_l": 89.38, - "lab_a": 7.46, - "lab_b": 4.11 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 02 레드 드롭", - "image": "https://romand.io/images/product/343/83hNUBzKzJQlENPe1SzACyEp4LRLHs829TPrKJL1.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CJ&option_name=02%20%EB%A0%88%EB%93%9C%20%EB%93%9C%EB%A1%AD", - "color_name": "02 레드 드롭", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#edd0d0", - "lab_l": 85.96, - "lab_a": 10.22, - "lab_b": 3.44 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 03 브릭 리버", - "image": "https://romand.io/images/product/343/hQexC85XR5qR4DkMetrs1SiMg5Y6RvUMMo90H2Nk.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CK&option_name=03%20%EB%B8%8C%EB%A6%AD%20%EB%A6%AC%EB%B2%84", - "color_name": "03 브릭 리버", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ebd5d2", - "lab_l": 87.01, - "lab_a": 7.26, - "lab_b": 3.91 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 04 빈티지 오션", - "image": "https://romand.io/images/product/343/BZgkQP0CTQ1Wb8FTVcLlVBqfPwSBpyZ3BeEQVdCu.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CL&option_name=04%20%EB%B9%88%ED%8B%B0%EC%A7%80%20%EC%98%A4%EC%85%98", - "color_name": "04 빈티지 오션", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#e2d1cf", - "lab_l": 85.33, - "lab_a": 5.72, - "lab_b": 2.97 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 05 로즈 스플래쉬", - "image": "https://romand.io/images/product/343/Zgt57l9jOIHt0W047LxwsfxW4r24ARMearETLLC2.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CM&option_name=05%20%EB%A1%9C%EC%A6%88%20%EC%8A%A4%ED%94%8C%EB%9E%98%EC%89%AC", - "color_name": "05 로즈 스플래쉬", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ead4d6", - "lab_l": 86.82, - "lab_a": 8.27, - "lab_b": 1.44 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #오리지널 / 08 로제 스트림", - "image": "https://romand.io/images/product/343/q0xStU1kzFEXTy8AziwIyiF2WShatd1rfNwkMNzJ.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/343/?variant_code=P00000NF00CN&option_name=08%20%EB%A1%9C%EC%A0%9C%20%EC%8A%A4%ED%8A%B8%EB%A6%BC", - "color_name": "08 로제 스트림", - "category": "글래스팅 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ead6d7", - "lab_l": 87.31, - "lab_a": 7.08, - "lab_b": 2.04 - }, - { - "name": "롬앤 글래스팅 워터 글로스 / 00 메테오 트랙", - "image": "https://romand.io/images/product/451/MiJFUm3pVt8PRHg5dBak9UJMYVcTvtuWFqoFaMqb.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BB&option_name=00%20%EB%A9%94%ED%85%8C%EC%98%A4%20%ED%8A%B8%EB%9E%99", - "color_name": "00 메테오 트랙", - "category": "글래스팅 워터 글로스", - "brand": "롬앤", - "hex": "#f6f6f6", - "lab_l": 96.96, - "lab_a": 0.27, - "lab_b": -0.24 - }, - { - "name": "롬앤 글래스팅 워터 글로스 / 01 산호 크러쉬", - "image": "https://romand.io/images/product/451/TM1sDRWJvxsVuJaYtXOQ2C1sB3mq7icZuaJBHZvC.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/451/?variant_code=P00000RJ00BC&option_name=01%20%EC%82%B0%ED%98%B8%20%ED%81%AC%EB%9F%AC%EC%89%AC", - "color_name": "01 산호 크러쉬", - "category": "글래스팅 워터 글로스", - "brand": "롬앤", - "hex": "#fae4dd", - "lab_l": 92.32, - "lab_a": 6.6, - "lab_b": 6.08 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 04 칠리 업", - "image": "https://romand.io/images/product/600/7VK7rgF8RsYV2wEGWNCv2AkRZxjgty5IYbjLrR9n.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LA&option_name=04%20%EC%B9%A0%EB%A6%AC%20%EC%97%85", - "color_name": "04 칠리 업", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#e8cecd", - "lab_l": 85.18, - "lab_a": 8.77, - "lab_b": 4.1 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 06 툴리안", - "image": "https://romand.io/images/product/600/fPqkZWe7ujcDcUAFXbxcRlZvh4ofpmNR4wrZJNvA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LC&option_name=06%20%ED%88%B4%EB%A6%AC%EC%95%88", - "color_name": "06 툴리안", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#f0d3db", - "lab_l": 87.28, - "lab_a": 11.4, - "lab_b": -0.44 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 07 체리 웨이", - "image": "https://romand.io/images/product/600/9LfrbnqOg1pMA7ZSdCOpP5fHSGaxoNxRMbX2cr5d.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00LD&option_name=07%20%EC%B2%B4%EB%A6%AC%20%EC%9B%A8%EC%9D%B4", - "color_name": "07 체리 웨이", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#f1cdd0", - "lab_l": 85.72, - "lab_a": 12.89, - "lab_b": 3.09 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #오리지널 / 03 이프 로즈", - "image": "https://romand.io/images/product/600/Ao2GX80C5AsjNUhUHAT4TMNOj7TJY45vAJfOS5GE.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/600/?variant_code=P00000XC00KZ&option_name=03%20%EC%9D%B4%ED%94%84%20%EB%A1%9C%EC%A6%88", - "color_name": "03 이프 로즈", - "category": "듀이풀 워터 틴트 #오리지널", - "brand": "롬앤", - "hex": "#ebd3d4", - "lab_l": 86.78, - "lab_a": 8.37, - "lab_b": 2.79 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 05 딤 모브", - "image": "https://romand.io/images/product/847/Yvq1cQTmyhIhO1bi3jqhmdS7I7EboT3muVjsDvRt.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GX&option_name=05%20%EB%94%A4%20%EB%AA%A8%EB%B8%8C", - "color_name": "05 딤 모브", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#e4d3d3", - "lab_l": 86.03, - "lab_a": 5.89, - "lab_b": 2.01 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 02 너티 베이그", - "image": "https://romand.io/images/product/847/Z9MqbuGFkXAo2eNeQBuxIsurVO4a7YiOSe3pRw3d.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GU&option_name=02%20%EB%84%88%ED%8B%B0%20%EB%B2%A0%EC%9D%B4%EA%B7%B8", - "color_name": "02 너티 베이그", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#efddd8", - "lab_l": 89.59, - "lab_a": 5.37, - "lab_b": 4.63 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 04 그레이피 웨이", - "image": "https://romand.io/images/product/847/nXD733s6NgeMuPj5hVLwORizy2MJ9r8JCdX8tYuY.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GW&option_name=04%20%EA%B7%B8%EB%A0%88%EC%9D%B4%ED%94%BC%20%EC%9B%A8%EC%9D%B4", - "color_name": "04 그레이피 웨이", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#ecd6da", - "lab_l": 87.51, - "lab_a": 8.33, - "lab_b": 0.58 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 03 로즈 핀치", - "image": "https://romand.io/images/product/847/6EADRhaRhU7YXAytPK2rRsvg0rdS8dRTxXqzmLZm.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GV&option_name=03%20%EB%A1%9C%EC%A6%88%20%ED%95%80%EC%B9%98", - "color_name": "03 로즈 핀치", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#e9d6d7", - "lab_l": 87.39, - "lab_a": 6.8, - "lab_b": 1.81 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 06 디픈 무어", - "image": "https://romand.io/images/product/847/bKeKU3LagDmkGbXXPXIDNbaeO5ePC7vbT6yMO8VT.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GY&option_name=06%20%EB%94%94%ED%94%88%20%EB%AC%B4%EC%96%B4", - "color_name": "06 디픈 무어", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#e3d1cf", - "lab_l": 85.32, - "lab_a": 5.93, - "lab_b": 3.34 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 / 01 피오니 발레", - "image": "https://romand.io/images/product/847/dt3narGEEUTYpJG5Qbldcenng5Pgke18Z9cH61ZV.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/847/?variant_code=P0000BGP00GT&option_name=01%20%ED%94%BC%EC%98%A4%EB%8B%88%20%EB%B0%9C%EB%A0%88", - "color_name": "01 피오니 발레", - "category": "글래스팅 컬러 글로스", - "brand": "롬앤", - "hex": "#f5e2e4", - "lab_l": 91.51, - "lab_a": 7.11, - "lab_b": 1.13 - }, - { - "name": "롬앤 글래스팅 워터 틴트 MINI / 09 소프트 풀", - "image": "https://romand.io/images/product/859/y5NwVVP7YTnU3l0HAlzWkwxoxw7OkNWnhfQAfNzE.png", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/859/?variant_code=P0000BHB000A&option_name=09%20%EC%86%8C%ED%94%84%ED%8A%B8%20%ED%92%80", - "color_name": "09 소프트 풀", - "category": "글래스팅 워터 틴트 MINI", - "brand": "롬앤", - "hex": "#f0dae0", - "lab_l": 89.12, - "lab_a": 8.39, - "lab_b": 0.06 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 07 스프링 피버", - "image": "https://romand.io/images/product/879/cN2rdPkqlSAO7AvjcDIsHqw06ETULOYDlRYLi5G6.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000B&option_name=07%20%EC%8A%A4%ED%94%84%EB%A7%81%20%ED%94%BC%EB%B2%84", - "color_name": "07 스프링 피버", - "category": "글래스팅 컬러 글로스 #스프링피버", - "brand": "롬앤", - "hex": "#f9e5e5", - "lab_l": 92.6, - "lab_a": 6.7, - "lab_b": 2.58 - }, - { - "name": "롬앤 글래스팅 컬러 글로스 #스프링피버 / 08 체리 업", - "image": "https://romand.io/images/product/879/mSn9TLjjWdOIg0T8FG2xAvhGNa7rCJNeDpH7pZ6D.jpg", - "price": "10,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/879/?variant_code=P0000BHV000C&option_name=08%20%EC%B2%B4%EB%A6%AC%20%EC%97%85", - "color_name": "08 체리 업", - "category": "글래스팅 컬러 글로스 #스프링피버", - "brand": "롬앤", - "hex": "#f6e3e6", - "lab_l": 92.0, - "lab_a": 7.05, - "lab_b": 1.05 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 14 모브 문", - "image": "https://romand.io/images/product/842/NGMs3C4Hltp7Yq33i92ICFxSLyWmWjhzyYGnpehd.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GR&option_name=14%20%EB%AA%A8%EB%B8%8C%20%EB%AC%B8", - "color_name": "14 모브 문", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#f0dee1", - "lab_l": 90.09, - "lab_a": 6.97, - "lab_b": 0.59 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 15 누디 선다운", - "image": "https://romand.io/images/product/842/Xk0oUdsoMRdjzooCx9MUn9AkGb7PnOOId5W6FxwQ.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GS&option_name=15%20%EB%88%84%EB%94%94%20%EC%84%A0%EB%8B%A4%EC%9A%B4", - "color_name": "15 누디 선다운", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#f1e0dc", - "lab_l": 90.51, - "lab_a": 5.12, - "lab_b": 4.12 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 16 피그 라이즈", - "image": "https://romand.io/images/product/842/If8BzbBehLSDxFjRIMCUgnlGuFV3i03Frtmt69kj.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GT&option_name=16%20%ED%94%BC%EA%B7%B8%20%EB%9D%BC%EC%9D%B4%EC%A6%88", - "color_name": "16 피그 라이즈", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#ebd8d9", - "lab_l": 87.97, - "lab_a": 6.91, - "lab_b": 1.87 - }, - { - "name": "롬앤 글래스팅 워터 틴트 #선셋 / 17 우디 선셋", - "image": "https://romand.io/images/product/842/nNzcFaxNFI1lLul5ycUFh0IKUYtqMWsivSb88SZe.jpg", - "price": "7,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/842/?variant_code=P0000BGK00GU&option_name=17%20%EC%9A%B0%EB%94%94%20%EC%84%A0%EC%85%8B", - "color_name": "17 우디 선셋", - "category": "글래스팅 워터 틴트 #선셋", - "brand": "롬앤", - "hex": "#e3d4d4", - "lab_l": 86.32, - "lab_a": 5.14, - "lab_b": 2.08 - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 40 블랙 사파이어", - "image": "https://romand.io/images/product/900/20zNZqkRxaxi0TBA5Xi1rHFxVbf6PteRuSJthWTM.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000G&option_name=40%20%EB%B8%94%EB%9E%99%20%EC%82%AC%ED%8C%8C%EC%9D%B4%EC%96%B4", - "color_name": "40 블랙 사파이어", - "category": "[COHA] 쥬시 래스팅 틴트 MINI", - "brand": "롬앤", - "hex": "#e4dadc", - "lab_l": 88.01, - "lab_a": 4.11, - "lab_b": 0.06 - }, - { - "name": "[COHA] 쥬시 래스팅 틴트 MINI / 41 자두인냥", - "image": "https://romand.io/images/product/900/XqcciN7iH3Hz7wU4LDTfsZE9t606KxLRpkubIfc7.jpg", - "price": "6,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/900/?variant_code=P0000BIQ000H&option_name=41%20%EC%9E%90%EB%91%90%EC%9D%B8%EB%83%A5", - "color_name": "41 자두인냥", - "category": "[COHA] 쥬시 래스팅 틴트 MINI", - "brand": "롬앤", - "hex": "#f0d8e3", - "lab_l": 88.71, - "lab_a": 10.29, - "lab_b": -2.26 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 12 캐니언", - "image": "https://romand.io/images/product/687/8DKyfS4HMuU2ybauMy5uMqeKvqlpTXqBYSbhCUaO.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000P&option_name=12%20%EC%BA%90%EB%8B%88%EC%96%B8", - "color_name": "12 캐니언", - "category": "듀이풀 워터 틴트 #뮤트럴 누드", - "brand": "롬앤", - "hex": "#edd8d4", - "lab_l": 88.14, - "lab_a": 6.63, - "lab_b": 4.79 - }, - { - "name": "롬앤 듀이풀 워터 틴트 #뮤트럴 누드 / 13 커스터드 모브", - "image": "https://romand.io/images/product/687/XboSQNeupCJkdwWvRcqoVJnsef6DjrB4WTznNTOA.jpg", - "price": "9,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/687/?variant_code=P0000BAL000Q&option_name=13%20%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%93%9C%20%EB%AA%A8%EB%B8%8C", - "color_name": "13 커스터드 모브", - "category": "듀이풀 워터 틴트 #뮤트럴 누드", - "brand": "롬앤", - "hex": "#f1ddde", - "lab_l": 89.9, - "lab_a": 7.14, - "lab_b": 1.89 - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 02 블랙 베리 팟", - "image": "https://romand.io/images/product/965/09M9HtLkGPO8GNM3NToxgzDyIXoJ8Gv8WaTfyWXk.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000B&option_name=02%20%EB%B8%94%EB%9E%99%20%EB%B2%A0%EB%A6%AC%20%ED%8C%9F", - "color_name": "02 블랙 베리 팟", - "category": "글래스팅 멜팅 팟", - "brand": "롬앤", - "hex": "#c4c8d4", - "lab_l": 80.77, - "lab_a": 0.83, - "lab_b": -6.48 - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 01 코튼 밀크 팟", - "image": "https://romand.io/images/product/965/30BQaNQpgtjbPym2zAAqNqDsiBwAkC9OYcqlSzX4.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000A&option_name=01%20%EC%BD%94%ED%8A%BC%20%EB%B0%80%ED%81%AC%20%ED%8C%9F", - "color_name": "01 코튼 밀크 팟", - "category": "글래스팅 멜팅 팟", - "brand": "롬앤", - "hex": "#f7f6f5", - "lab_l": 97.0, - "lab_a": 0.47, - "lab_b": 0.61 - }, - { - "name": "롬앤 글래스팅 멜팅 팟 / 03 피치 허니 팟", - "image": "https://romand.io/images/product/965/rXnio3CB5DJRiOVlHQ1eHFvi6F8rQGxdjcQu3FhM.jpg", - "price": "5,900원", - "url": "https://romand.co.kr/product/%EB%A1%AC%EC%95%A4/965/?variant_code=P0000BLD000C&option_name=03%20%ED%94%BC%EC%B9%98%20%ED%97%88%EB%8B%88%20%ED%8C%9F", - "color_name": "03 피치 허니 팟", - "category": "글래스팅 멜팅 팟", - "brand": "롬앤", - "hex": "#f8e9e7", - "lab_l": 93.62, - "lab_a": 4.72, - "lab_b": 2.67 - } -] \ No newline at end of file diff --git a/static/data/romand_shadow_products.json b/static/data/romand_shadow_products.json deleted file mode 100644 index fd316a4..0000000 --- a/static/data/romand_shadow_products.json +++ /dev/null @@ -1,577 +0,0 @@ -[ - { - "image": "https://romand.io/images/product/995/zcHWLlHLCmVhYHll9mIujmozM8s1EhRkhUVpZvnG.jpg", - "name": "롬앤 슬라이드 인 싱글 #매트펄 / M28 키튼 젤리", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/995/E0I46t6jD7VchQ1FCTN32FOoj0W9WAhCyKUi05wY.jpg", - "name": "롬앤 슬라이드 인 싱글 #매트펄 / M29 피치 슈", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/995/GfQhLAmWFLJW1q5R1v4h1GejmT5yzMEje2j2yZyj.jpg", - "name": "롬앤 슬라이드 인 싱글 #매트펄 / M30 캔디드 베리", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/995/xGs5AxnDeAmPLcxWa1lhX5RPkDz1Sp4Zvp2iYnuO.jpg", - "name": "롬앤 슬라이드 인 싱글 #매트펄 / M31 슈가 프레즐", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/849/ZHFH0DQzxYe5D7R36JdLtZjHlVRlfo2A1aklU6a8.jpg", - "name": "롬앤 더 유니버스 리퀴드 글리터 / 05 러비 플레어", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/849/ZWPYoBGGYDBxewkYztWOsgIKtAyGJmRXETs3cdim.jpg", - "name": "롬앤 더 유니버스 리퀴드 글리터 / 06 리틀 메테오", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/849/qvYl3W80XFuwyNAPQ1WF0dBB2cAYIsgrNqDmEuEd.jpg", - "name": "롬앤 더 유니버스 리퀴드 글리터 / 07 미스틱 문", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/849/iaNv8PykvghOaHeNjWNkayiHVS2Xxurgla9LaxUE.jpg", - "name": "롬앤 더 유니버스 리퀴드 글리터 / 08 민티 웨이", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/971/JsPt0ihZf1BBk8YyprXa0ghllAWQM8bEgEqs3qrr.jpg", - "name": "[ONLY 공식몰] 롬앤 슬라이드 인 싱글 #구름 / G06 구름", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/836/gVLQ1CnEZPAQkeToMKZQQUVYlCtv4cewKJM3qLTl.jpg", - "name": "롬앤 베러 댄 팔레트 #더스티온더누드 / 11 치키 치키 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/836/98s7r4jEnoQ1BhGcHM1UpAgin6oyoTSkx4Bv0EIV.jpg", - "name": "롬앤 베러 댄 팔레트 #더스티온더누드 / 05 쉐이드 앤 섀도우 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/836/kQ7JywQBoD9cAPcQstYUkrbM6qoMdx07AIGiWLbQ.jpg", - "name": "롬앤 베러 댄 팔레트 #더스티온더누드 / 04 더스티 포그 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/772/0xR7Vv7RdvQwHriAqiZEqBfkgFbHxRWt91ENuRJk.jpg", - "name": "롬앤 트윙클 펜 라이너 / 01 실버 플레이크", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/772/W9q39ywbEP9o5KHoW82Di8uF6DlTTYzh6uSLDftt.jpg", - "name": "롬앤 트윙클 펜 라이너 / 02 골든 웨이브", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/772/naUhT47g8jF42hA4qVDkWnzFBSzhcZ2LtVWXsrw4.jpg", - "name": "롬앤 트윙클 펜 라이너 / 03 로지 스파클", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/772/dz9pxDy3UcXGXpFvSwaiiThCGyTYbVTwn03gfTF4.jpg", - "name": "롬앤 트윙클 펜 라이너 / 04 미드나잇 애쉬", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/772/bnfdPAhhAAYBZ3vsgfmrpK3BK0UXfdORUP0u3NOB.jpg", - "name": "롬앤 트윙클 펜 라이너 / 05 선셋 헤이즐", - "price": "7,900원" - }, - { - "image": "https://romand.io/images/product/904/UnY2ZyiAIu54HwBSoQtdoSl2M597zLmax1t9E5k8.jpg", - "name": "롬앤 베러 댄 아이즈 #블랙스펙트럼 / B01 그을린 메밀꽃", - "price": "16,000원" - }, - { - "image": "https://romand.io/images/product/904/2DIMmSipTwVSM2NUWPN8L5bvQ8vEWn0icCndMOX2.jpg", - "name": "롬앤 베러 댄 아이즈 #블랙스펙트럼 / B02 그을린 피오니", - "price": "16,000원" - }, - { - "image": "https://romand.io/images/product/904/bHJaBdhbDsaRyo6sqHAcgMdCnHn3mX3xT5gZbjA7.jpg", - "name": "롬앤 베러 댄 아이즈 #블랙스펙트럼 / B03 글리츠 인 블랙", - "price": "16,000원" - }, - { - "image": "https://romand.io/images/product/882/EmgxgegQFKj8mYn4HpSzP9k6jzTxXmNNgV6A8Z2i.jpg", - "name": "롬앤 베러 댄 팔레트 #스프링피버 / 12 샌디드 브리즈 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/882/uZSrhYnWV7unCQzIWnYpKPKL2B8EupjUIOiiX4G3.jpg", - "name": "롬앤 베러 댄 팔레트 #스프링피버 / 13 오드 브리즈 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/767/HIDRuRGJEQ6Z12d7SVkGjpLAQUVf3eG4Z4OQy3vj.jpg", - "name": "롬앤 베어 레이어 팔레트 / 01 애프리콧 무드", - "price": "16,900원" - }, - { - "image": "https://romand.io/images/product/767/GtqJ9cZPvYgi28wbMSvUDVQr0e5sHyqDIryJHQuR.jpg", - "name": "롬앤 베어 레이어 팔레트 / 02 스트로베리 무드", - "price": "16,900원" - }, - { - "image": "https://romand.io/images/product/957/bDqfjWfo31CD535pAPkFtnlmr6jl9uU5Ni3WN1l5.jpg", - "name": "롬앤 슬라이드 인 싱글 / M01 웜 볼류머", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/mmhtT49Jp6HENSOIqj9yu8VhYaJ10Gw7YNLVK4rR.jpg", - "name": "롬앤 슬라이드 인 싱글 / M02 쿨 볼류머", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/GZ01K1rMmU6BuGYypJxW9aSRLd2KygB3OtjLg1Ou.jpg", - "name": "롬앤 슬라이드 인 싱글 / M03 요거트 크림", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/Er8dbr13YbOQhvgEjNPW4qXoFaBTLzx5PDF6fWoE.jpg", - "name": "롬앤 슬라이드 인 싱글 / M04 쥬시 망고", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/q0eRM6bqeyntk1Wzzrg4kPX4kT4OccZoPteAr5eM.jpg", - "name": "롬앤 슬라이드 인 싱글 / M05 멜론 듀", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/u1tlobNE2ZMbyzibmNuoh5t8DyDVoqqN4MnpVayC.jpg", - "name": "롬앤 슬라이드 인 싱글 / M06 소다 팝", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/GqPW9eLbOEhAuXtHDrhBJ2AXHdL8QoJHlagjS86Z.jpg", - "name": "롬앤 슬라이드 인 싱글 / M07 스프링 라벤더", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/kyhC8lIuAXszvXwsJ2zDmStE7zNHxgEgcYfbqGro.jpg", - "name": "롬앤 슬라이드 인 싱글 / M08 페일 피오니", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/nMenGCIXDUnuAekqAJUzPTcWLnJwvQypYwigsSu1.jpg", - "name": "롬앤 슬라이드 인 싱글 / M09 비 헤이지", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/GdZwYDwuLZ4tvh0AvkB4dA75qjiIPLW1UXXhWeT9.jpg", - "name": "롬앤 슬라이드 인 싱글 / M10 토피 라떼", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/S7yJuTDrWw3VoXd9t2UotUItWSVPtbnTXOFASkAv.jpg", - "name": "롬앤 슬라이드 인 싱글 / M11 커스터드", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/yUPcVlZ42zV8DeGkYkkUvHCdPyLo1lDolYD9OFKt.jpg", - "name": "롬앤 슬라이드 인 싱글 / M12 마가렛", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/mMm6kwG7NcIHGFMYUTRkDbdGyDY026HMgOIjMee0.jpg", - "name": "롬앤 슬라이드 인 싱글 / M13 포도 크림", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/CIhbm8u1MMLajczU094QaUgt98FKvNGsxP9IICFN.jpg", - "name": "롬앤 슬라이드 인 싱글 / M14 토 슈즈", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/3Xxdn1iWFJkvsSkBGGLqOMkew0oVXr33VlJeI5IJ.jpg", - "name": "롬앤 슬라이드 인 싱글 / M15 낫띵 피치", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/Cru3RigHlAsrhOWWrkjVYrrStfb6sVfnQeAroGIK.jpg", - "name": "롬앤 슬라이드 인 싱글 / M16 피그 휘핑", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/Ym3LgkZ6w02HICyVjzcZg1P9yXEAQxA7LDOGxfM1.jpg", - "name": "롬앤 슬라이드 인 싱글 / M17 포니", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/bZYF7Lbm6LCppssecpca1DoYZvrypaBBGC50uHUc.jpg", - "name": "롬앤 슬라이드 인 싱글 / M18 플레인 모카", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/o5RGNWhPMVcXDEQBhs6atXx2WIwObcnmENG3zHM0.jpg", - "name": "롬앤 슬라이드 인 싱글 / M19 모브 도우", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/7qEnPTz4jaR8y12qiLGomAw9i0v8XOKJlBYBobLG.jpg", - "name": "롬앤 슬라이드 인 싱글 / M20 데일리 메밀", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/7T9kS06TylaDe4a6J31a6hErYQMldClFFrewyhT0.jpg", - "name": "롬앤 슬라이드 인 싱글 / M21 웜 캐러멜", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/PcocQc0fkrpEqidbqcTwmczquBWCbJp2JQAIp7Tr.jpg", - "name": "롬앤 슬라이드 인 싱글 / M22 미드 마롱", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/nCjlypebIvDODxSpAbArdojxDDZTnLKC8BQ2qY3M.jpg", - "name": "롬앤 슬라이드 인 싱글 / M23 레드 빈즈", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/Cg3Je2sQltUYir1SCRX2vSrIqdPZpF6DhgYvdDRg.jpg", - "name": "롬앤 슬라이드 인 싱글 / M24 먼지", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/y8B2g2YwQTTWqN7WFod85n0RhmTj1PwUDZ1A34b9.jpg", - "name": "롬앤 슬라이드 인 싱글 / M25 처비 초코", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/5ivyO4F5PqIQYHFG61VPfH75lbS5Y1vt9IZEzju0.jpg", - "name": "롬앤 슬라이드 인 싱글 / M26 블렌딩 코코", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/s1YfseODJvqDkMVJMnuLTDjl9vUYCIjim4WDBrV0.jpg", - "name": "롬앤 슬라이드 인 싱글 / M27 콜드 브루", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/P6UyKBL9RDAnQTwRAdHy5mTY40mYuPjVJyvRXqS9.jpg", - "name": "롬앤 슬라이드 인 싱글 / G01 스노이", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/9gHhZlCEyuCKJyZxItPXh5X5mEo32ZAdyZDXzXzF.jpg", - "name": "롬앤 슬라이드 인 싱글 / G02 버터링", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/s5ypanOSMbW4i8hyepDZGpQoevJrklqSPWJj1urY.jpg", - "name": "롬앤 슬라이드 인 싱글 / G03 버니 챗", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/dhoW5zktNLLfj3hCFL3bMELYs0XW2sMKgSfQblin.jpg", - "name": "롬앤 슬라이드 인 싱글 / G04 퍼플 릿", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/BXD71i3TfcK8oZv8n51brlBqbpHZXlQP5Bj327ii.jpg", - "name": "롬앤 슬라이드 인 싱글 / G05 누 메테오", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/I59XnedYW5JjBgHRgwoD8EKWjycVVhFJkFvA8kzK.jpg", - "name": "롬앤 슬라이드 인 싱글 / S01 글레이즈", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/JFH0FsqOm0U1WFhm40OsthNhyWEXVM8f1WkBaMCs.jpg", - "name": "롬앤 슬라이드 인 싱글 / S02 리치 레몬", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/7O4LoVPSsjymNn5QStGPLN4YNg7rofifJPhY7N70.jpg", - "name": "롬앤 슬라이드 인 싱글 / S03 블루 베일", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/JFtSs0a7bdPqYArToickDd2yOJM9RxvHfP0uQO6P.jpg", - "name": "롬앤 슬라이드 인 싱글 / S04 베어 타로", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/wPb2ktgwbXbskpVB8qecTMzJvzZTl0N1dthJgvGh.jpg", - "name": "롬앤 슬라이드 인 싱글 / S05 버블리", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/SKuMXu2LKsR7varIx9dxBcABsGY9wo5efBlc46Fn.jpg", - "name": "롬앤 슬라이드 인 싱글 / S06 소르베 휩", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/MZ7jg5UdHPyISTBeUNN0cSEwr00Dt2bbnhBdhbxo.jpg", - "name": "롬앤 슬라이드 인 싱글 / S07 포슬린", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/CWMv4MQPCox1WIVPJc5nQtOQCVHbpLYmTWvxZK48.jpg", - "name": "롬앤 슬라이드 인 싱글 / S08 핑크 샤", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/3eiFiypbBYTxCWngRYfzqaqUUYfk7M3sXX5PAiBX.jpg", - "name": "롬앤 슬라이드 인 싱글 / S09 솔티 바닐라", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/gHfU9rICnc0mZiocFrVUKWxryMd8tBFKhqquDIPy.jpg", - "name": "롬앤 슬라이드 인 싱글 / S10 잠봉 핑크", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/yGJiFI396WjIu9ZeLfgaMub3VAziralVE7tsERX1.jpg", - "name": "롬앤 슬라이드 인 싱글 / S11 매쉬드 자몽", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/psZlSZNhbNRmfWwZEFPQFWld5Wq5GftMkActCGHa.jpg", - "name": "롬앤 슬라이드 인 싱글 / S12 카프리 바이올렛", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/ZRoGsKd4BnGI7e0PSlB8yZKwd2sDOQyhvXhp911K.jpg", - "name": "롬앤 슬라이드 인 싱글 / S13 레이지 마젠타", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/cOJcTHNWtS71zycR1jpciikBPpU7DqoJzdyrENSk.jpg", - "name": "롬앤 슬라이드 인 싱글 / S14 배디", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/Tb96OTNyQ8XydJV85Qxnr0kMpmATbiEigb8vWyKr.jpg", - "name": "롬앤 슬라이드 인 싱글 / S15 생강", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/1f7HXeC8F69UaV4i9Aa3U8Kou4VQbyYEAyV7kMyQ.jpg", - "name": "롬앤 슬라이드 인 싱글 / S16 얼 그레이", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/957/3qY455Drldndbzze61yQQmmA8j96vGqogTETunL6.jpg", - "name": "롬앤 슬라이드 인 싱글 / S17 퍼지", - "price": "5,900원" - }, - { - "image": "https://romand.io/images/product/671/pbZLvi9rFzHusgNNp1tgmYWQhbkhaSGqZPrr0Aix.jpg", - "name": "롬앤 한올 브로우 카라 / 01 그레이스 토프", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/671/9OAfooEI7ROdKd4cnaVXSkMsha0XDZAerlvPhbU9.jpg", - "name": "롬앤 한올 브로우 카라 / 02 마일드 우디", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/671/ImtDiu2bT9jUb766MJTCCkBUFMcKRRNA5Evp6TyI.jpg", - "name": "롬앤 한올 브로우 카라 / 03 모던 베이지", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/671/HM3P1OgCW8PzGMxmKWxU9jhHXApWXzkAjFotlA0n.jpg", - "name": "롬앤 한올 브로우 카라 / 04 메리 블론디", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/671/2ww2gn8nR1dNhC0oyHQ0HGj83hYEC70cLGDtunyV.jpg", - "name": "롬앤 한올 브로우 카라 / 한올 브로우 픽서", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/557/TGEDqu27uYg41MGlQVWj4lJ6GJA8bG00OiXhGMdH.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 샤프 C1 클래식 그레이", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/557/ccwnllAjHt7y8arRacPJVugWXNiIPlzr5wek9AaH.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 샤프 C2 그레이스 토프", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/557/owMrXdI74yJ137fcPWCAFUcLIbAiwnH1w0Kdx2qX.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 샤프 C3 모던 베이지", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/557/vLTKd8L8WnpaNF10O77opsS3QvAn7QONMOi8CmgS.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 샤프 W1 젠틀 브라운", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/557/OF7wyKTaANtAFu3MW1SwjtyGpcTBVvn2rmxr9zsb.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 샤프 W2 마일드 우디", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/557/eGs1mVzJqj65bwnvvGY2CINy3Xo1Ok1Csp2nzxmA.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 샤프 W3 메리 블론디", - "price": "9,900원" - }, - { - "image": "https://romand.io/images/product/557/ehWocZjbSRhqjEORBVi5hK3casCV6zDgzHtDrnwO.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 플랫 C1 클래식 그레이", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/557/Z2jnP2SIAScQ7VNG7UUkE5ZI75xnOyrlIZBPxRlI.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 플랫 C2 그레이스 토프", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/557/i5O1dtnk83Xg67fiVpamHssl3FbyGENa78gDylJB.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 플랫 C3 모던 베이지", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/557/1f8amIHBROmqcWLnXeyU9Z5IFzJM47rOLZUjzKNV.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 플랫 W1 젠틀 브라운", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/557/n5fJW4cZpfpi3QfqWScXL5cbrkPsUGCvk39xEHOR.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 플랫 W2 마일드 우디", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/557/rWtZ2e0VFmOh3SlAv93YUUTDlenOj47hJswfjrJE.jpg", - "name": "롬앤 한올 플랫/샤프 브로우 / 플랫 W3 메리 블론디", - "price": "8,900원" - }, - { - "image": "https://romand.io/images/product/730/5GGCiAmFyZa6PC3fOWJwSSGKFbhDRCgvMRMqMxya.jpg", - "name": "롬앤 베러 댄 팔레트 #밀크 그로서리 / 09 드리미 라일락 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/729/n65OCsKLKmKKKMVpU9exs6ovsZEpMx9B6IxUEiUW.jpg", - "name": "롬앤 베러 댄 팔레트 #에너제틱 브라이트 / 07 베리 푸시아 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/729/h6P6QxJgpsuNhwKv1TBSNeobX71WCie9rEiRBuIV.jpg", - "name": "롬앤 베러 댄 팔레트 #에너제틱 브라이트 / 08 피치 달리아 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/559/9CUrRmlNlpkpKIUDIwnyT9xkRfpIwicv0pvMC2iJ.jpg", - "name": "롬앤 베러 댄 팔레트 #오리지널 / 01 팜파스 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/559/J9HjK5Tf1tBaZhs2aX6GMRAV6Od4osTNerdawQ7R.jpg", - "name": "롬앤 베러 댄 팔레트 #오리지널 / 02 마호가니 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/559/iuJayfnJYT9oZiZI4U5LxMHOgvYBJFENaYx8zV0p.jpg", - "name": "롬앤 베러 댄 팔레트 #오리지널 / 03 로즈버드 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/559/t8S6crnCFWX4rRSJHE5JoKKJzyIFikggRNvWtKcg.jpg", - "name": "롬앤 베러 댄 팔레트 #오리지널 / 04 더스티 포그 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/559/EgA8ptMWy9ZJDvLAjUmQpY0SPqGW25QKU9f22B4K.jpg", - "name": "롬앤 베러 댄 팔레트 #오리지널 / 05 쉐이드 앤 쉐도우 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/559/V9QWx0aaZCuqoTNusGf5Swn66S32ikYoi5UHHLIM.jpg", - "name": "롬앤 베러 댄 팔레트 #오리지널 / 06 피오니 누드 가든", - "price": "22,900원" - }, - { - "image": "https://romand.io/images/product/564/j5HCbygunDRdSyNLo13an9UYupPb4rQKOh1yPWXF.png", - "name": "롬앤 베러 댄 팔레트 00 라이트 앤 글리터 가든 #비밀정원 / 00 라이트 앤 글리터 가든", - "price": "24,900원" - }, - { - "image": "https://romand.io/images/product/489/AVCFlY4HyGdfYvfgpaz8shtNyglBrGh7Jwdcsaog.jpg", - "name": "롬앤 베러 댄 아이즈 #우유 / W01 말린 라벤더", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/489/smNdgpqkhaiE6I2k7uDpHvnQGYwPpjGVXJtk47YL.jpg", - "name": "롬앤 베러 댄 아이즈 #우유 / W02 말린 복숭아꽃", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/489/ouNEKWpWB1oKzNhOpSI7tJPpVxZ1xN8XrMmzB9HN.jpg", - "name": "롬앤 베러 댄 아이즈 #우유 / W03 말린 스트로베리", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/539/jq78ZoGeF9y1oGFnlcG0gqr3BACYy2LlWD0xlpsV.jpg", - "name": "롬앤 베러 댄 아이즈 #빛바랜음영 / N01 말린 버들꽃", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/539/U1OZzQhMwK5rpLgKY1JeVOkXqga5eirTjw3JOlAH.jpg", - "name": "롬앤 베러 댄 아이즈 #빛바랜음영 / N02 말린 제비꽃", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/299/M3KO8Dp4bdN5FR6ZCJHitJTBt0b5qi4ItpCzeY5U.jpg", - "name": "롬앤 베러 댄 아이즈 #뮤직 / M01 말린 애플 블라썸", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/299/ooDzcTY8yEZ1DXZXxBwExfTVteR5D1vQVwdMaQ9S.jpg", - "name": "롬앤 베러 댄 아이즈 #뮤직 / M02 말린 메밀꽃", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/175/WOrGNcon3qcpjrCZygTSAKE0mdwjT49C2gwGHhxt.jpg", - "name": "롬앤 베러 댄 아이즈 #오리지널 / 01 말린 망고튤립", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/175/ib0JLZvE7MecKm1Shu97JTnAcN0QyW7QUjpLDvby.jpg", - "name": "롬앤 베러 댄 아이즈 #오리지널 / 02 말린 장미", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/175/APINeT5VNj8O7vgfXWVk89V218PdSCMDg00yt3ir.jpg", - "name": "롬앤 베러 댄 아이즈 #오리지널 / 03 말린 라그라스", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/556/8wRBCFqcXhC6sOLCpCzfgUnOS45TnzJ7mpddqX4q.jpg", - "name": "롬앤 한올 픽스 마스카라 / L02 롱 애쉬", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/556/LaqRCEojic1W0LgW6jx641Y3IH6v2C5KKnVSzaas.jpg", - "name": "롬앤 한올 픽스 마스카라 / L03 롱 헤이즐", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/556/cUqegxGuxPFPW0Po3jzPzFOEp0fufa4qPRn1UDBg.jpg", - "name": "롬앤 한올 픽스 마스카라 / V01 볼륨 블랙", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/556/mlim9QUsSPbggt1eIL3zuyakHKe7xJ2p8fGTAfdF.jpg", - "name": "롬앤 한올 픽스 마스카라 / L01 롱 블랙", - "price": "12,900원" - }, - { - "image": "https://romand.io/images/product/611/weW4p4o8FIkngngdX9SNW2WfSxymijIJ9ayLzyBV.jpg", - "name": "롬앤 한올 래쉬 세럼 / 한올 래쉬 세럼 단품", - "price": "7,900원" - } -] \ No newline at end of file diff --git a/templates/products/liked_products.html b/templates/products/liked_products.html index fa49bb4..a387d28 100644 --- a/templates/products/liked_products.html +++ b/templates/products/liked_products.html @@ -22,7 +22,7 @@