jeffreestarcosmetics.com Open in urlscan Pro
23.227.38.32  Public Scan

URL: https://jeffreestarcosmetics.com/products/scorpio-palette
Submission: On February 25 via api from US — Scanned from CA

Form analysis 7 forms found in the DOM

GET /search

<form action="/search" class="search-form search-form--desktop" method="get" role="search">
  <div class="input-placeholder">
    <label for="desktopSearchFormInput" class="search-form__label search-form-label">Search</label>
    <input id="desktopSearchFormInput" class="search-form__input input search-form-label js-search-input js-search-input-desktop" data-view="desktop" type="search" name="q" aria-label="Search" aria-autocomplete="list" aria-controls="search_desktop"
      aria-haspopup="listbox" aria-expanded="false">
    <button class="search-form__submit btn-icon js-search-toggle js-search-toggle-desktop" data-view="desktop" type="submit" aria-label="Search">
      <i class="search-form__submit-icon icon icon--search"></i>
      <span class="screenreader">Search submit</span>
    </button>
  </div>
</form>

GET /search

<form action="/search" class="search-form search-form--mobile" method="get" role="search">
  <div class="input-placeholder">
    <label for="mobileSearchFormInput" class="search-form__label search-form-label">Search</label>
    <input id="mobileSearchFormInput" class="search-form__input input search-form-label js-search-input js-search-input-mobile" data-view="mobile" type="search" name="q" aria-label="Search" aria-autocomplete="list" aria-controls="search_mobile"
      aria-haspopup="listbox" aria-expanded="false">
    <button class="search-form__submit btn-icon js-search-toggle js-search-toggle-mobile" data-view="mobile" type="submit" aria-label="Search">
      <i class="search-form__submit-icon icon icon--search"></i>
      <span class="screenreader">Search submit</span>
    </button>
  </div>
</form>

POST /cart/add

<form method="post" action="/cart/add" id="addToBagForm" accept-charset="UTF-8" class="product" enctype="multipart/form-data" data-product-handle="scorpio-palette" data-enable-history-state="true" data-variant-id="44559802892415"
  data-has-only-default-variant="true"><input type="hidden" name="form_type" value="product"><input type="hidden" name="utf8" value="✓">
  <select class="js-hidden-id hide" name="id">
    <option selected="selected" value="44559802892415">Default Title</option>
  </select>
  <div id="pvColor" class="pv-color"></div>
  <div id="pvAction" class="pv-actions">
    <script>
      function getQuantityOfProductInCart(productId) {
        return fetch('/cart.js', {
          method: 'GET',
          headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
          }
        }).then(response => response.json()).then(data => {
          var productInCart = data.items.find(item => item.product_id === productId);
          if (productInCart) {
            return productInCart.quantity;
          } else {
            return 0;
          }
        }).catch(error => {
          console.error('Error reading cart info:', error);
          return -1;
        });
      }

      function checkButtonState() {
        getQuantityOfProductInCart(8160874233983).then(productQuantity => {
          var incrementButton = document.querySelector('.js-increment-btn[data-action="add"]');
          var addToCartButton = document.getElementById('btnAddToBag');
          var itemQuantity = parseInt(document.querySelector('.pv-action__input.js-increment-input').value);
          var maxQuantityTag = parseInt(incrementButton.getAttribute('data-limit'));
          incrementButton.disabled = false;
          addToCartButton.disabled = false;
          if (itemQuantity + productQuantity > maxQuantityTag) {
            incrementButton.disabled = true;
            addToCartButton.disabled = true;
          }
        })
      }
      document.addEventListener('DOMContentLoaded', function() {
        checkButtonState();
        var incrementButton = document.querySelector('.js-increment-btn[data-action="add"]');
        var removeButton = document.querySelector('.js-increment-btn[data-action="remove"]');
        var addToCartButton = document.getElementById('btnAddToBag');
        incrementButton.addEventListener('click', checkButtonState);
        removeButton.addEventListener('click', checkButtonState);
        addToCartButton.addEventListener('click', checkButtonState);
        const body = document.querySelector('body');
        const observer = new MutationObserver(mutationsList => {
          for (const mutation of mutationsList) {
            if (mutation.type === 'attributes' && mutation.attributeName === 'class') {
              checkButtonState()
            }
          }
        });
        observer.observe(body, {
          attributes: true
        });
      });
    </script>
    <div class="increment js-increment pv-action pv-action--qty">
      <button type="button" class="pv-action__increment js-increment-btn js-pv-increment" data-limit="12" data-action="remove" disabled="" aria-label="Decrease quantity by 1"> - <span class="screenreader">Subtract</span>
      </button>
      <span class="js-qty-text pv-qty__label"></span>
      <input class="pv-action__input js-increment-input" id="quantity" type="number" name="quantity" value="1" min="1" max="12">
      <button type="button" class="pv-action__increment js-increment-btn js-pv-increment" data-limit="12" data-action="add" aria-label="Increase quantity by one"> + <span class="screenreader">Add</span>
      </button>
    </div>
    <div class="pv-qty__messages messages" id="quantityMessages"></div>
    <div class="pv-action pv-action--add">
      <div class="yotpo-widget-subscriptions-add-to-cart yotpo-widget-override-css yotpo-widget-clear  " data-render-id="odflo">
        <style class="yotpo-css-clear">
          .yotpo-widget-clear,
          .yotpo-widget-clear input,
          .yotpo-widget-clear button,
          .yotpo-widget-clear span,
          .yotpo-widget-clear select,
          .yotpo-widget-clear label {
            animation: none;
            animation-delay: 0;
            animation-direction: normal;
            animation-duration: 0;
            animation-fill-mode: none;
            animation-iteration-count: 1;
            animation-name: none;
            animation-play-state: running;
            animation-timing-function: ease;
            backface-visibility: visible;
            background: 0;
            background-attachment: scroll;
            background-clip: border-box;
            background-color: transparent;
            background-image: none;
            background-origin: padding-box;
            background-position: 0 0;
            background-position-x: 0;
            background-position-y: 0;
            background-repeat: repeat;
            background-size: auto auto;
            border: 0;
            border-style: none;
            border-width: medium;
            border-color: inherit;
            border-bottom: 0;
            border-bottom-color: inherit;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom-style: none;
            border-bottom-width: medium;
            border-collapse: separate;
            border-image: none;
            border-left: 0;
            border-left-color: inherit;
            border-left-style: none;
            border-left-width: medium;
            border-radius: 0;
            border-right: 0;
            border-right-color: inherit;
            border-right-style: none;
            border-right-width: medium;
            border-spacing: 0;
            border-top: 0;
            border-top-color: inherit;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-top-style: none;
            border-top-width: medium;
            bottom: auto;
            box-shadow: none;
            box-sizing: content-box;
            caption-side: top;
            clear: none;
            clip: auto;
            color: inherit;
            columns: auto;
            column-count: auto;
            column-fill: balance;
            column-gap: normal;
            column-rule: medium none currentColor;
            column-rule-color: currentColor;
            column-rule-style: none;
            column-rule-width: none;
            column-span: 1;
            column-width: auto;
            content: normal;
            counter-increment: none;
            counter-reset: none;
            cursor: auto;
            direction: ltr;
            display: inline;
            empty-cells: show;
            float: none;
            font: normal;
            font-family: inherit;
            font-size: medium;
            font-style: normal;
            font-variant: normal;
            font-weight: normal;
            height: auto;
            hyphens: none;
            left: auto;
            letter-spacing: normal;
            line-height: normal;
            list-style: none;
            list-style-image: none;
            list-style-position: outside;
            list-style-type: disc;
            margin: 0;
            margin-bottom: 0;
            margin-left: 0;
            margin-right: 0;
            margin-top: 0;
            max-height: none;
            max-width: none;
            min-height: 0;
            min-width: 0;
            opacity: 1;
            orphans: 0;
            outline: 0;
            outline-color: invert;
            outline-style: none;
            outline-width: medium;
            overflow: visible;
            overflow-x: visible;
            overflow-y: visible;
            padding: 0;
            padding-bottom: 0;
            padding-left: 0;
            padding-right: 0;
            padding-top: 0;
            page-break-after: auto;
            page-break-before: auto;
            page-break-inside: auto;
            perspective: none;
            perspective-origin: 50% 50%;
            position: static;
            right: auto;
            tab-size: 8;
            table-layout: auto;
            text-align: inherit;
            text-align-last: auto;
            text-decoration: none;
            text-decoration-color: inherit;
            text-decoration-line: none;
            text-decoration-style: solid;
            text-indent: 0;
            text-shadow: none;
            text-transform: none;
            top: auto;
            transform: none;
            transform-style: flat;
            transition: none;
            transition-delay: 0s;
            transition-duration: 0s;
            transition-property: none;
            transition-timing-function: ease;
            unicode-bidi: normal;
            vertical-align: baseline;
            visibility: visible;
            white-space: normal;
            widows: 0;
            width: auto;
            word-spacing: normal;
            word-break: normal;
            z-index: auto;
          }
        </style>
      </div><button class="pv-action__add btn btn--primary js-add-to-bag" id="btnAddToBag" name="add" type="submit" aria-label="Add to Cart Scorpio Palette">
        <span class="js-add-to-bag-text pv-action__wrapper" id="btnAddToBagText"> Add to Cart </span>
        <span id="btnAddToBagPrice">
          <div class="pv-price__wrapper">
            <p id="productPrice" class="pv-price hide-desktop">
              <span class="pv-price__original js-price-original">$ 62</span>
              <span class="pv-price__compare js-price-compare" style="display: none;">$ 0</span>
            </p>
          </div>
        </span>
      </button>
    </div>
  </div>
  <div class="pv-price__shopify"><shopify-payment-terms variant-id="44559802892415"
      shopify-meta="{&quot;type&quot;:&quot;product&quot;,&quot;variants&quot;:[{&quot;id&quot;:44559802892415,&quot;price_per_term&quot;:&quot;$15.50&quot;,&quot;full_price&quot;:&quot;$62.00&quot;,&quot;eligible&quot;:true,&quot;available&quot;:true}],&quot;min_price&quot;:&quot;$50.00&quot;,&quot;max_price&quot;:&quot;$30,000.00&quot;,&quot;financing_plans&quot;:[{&quot;min_price&quot;:&quot;$50.00&quot;,&quot;max_price&quot;:&quot;$149.99&quot;,&quot;terms&quot;:[{&quot;apr&quot;:0,&quot;loan_type&quot;:&quot;split_pay&quot;,&quot;installments_count&quot;:4}]},{&quot;min_price&quot;:&quot;$150.00&quot;,&quot;max_price&quot;:&quot;$999.99&quot;,&quot;terms&quot;:[{&quot;apr&quot;:0,&quot;loan_type&quot;:&quot;split_pay&quot;,&quot;installments_count&quot;:4},{&quot;apr&quot;:15,&quot;loan_type&quot;:&quot;interest&quot;,&quot;installments_count&quot;:3},{&quot;apr&quot;:15,&quot;loan_type&quot;:&quot;interest&quot;,&quot;installments_count&quot;:6},{&quot;apr&quot;:15,&quot;loan_type&quot;:&quot;interest&quot;,&quot;installments_count&quot;:12}]},{&quot;min_price&quot;:&quot;$1,000.00&quot;,&quot;max_price&quot;:&quot;$30,000.00&quot;,&quot;terms&quot;:[{&quot;apr&quot;:15,&quot;loan_type&quot;:&quot;interest&quot;,&quot;installments_count&quot;:3},{&quot;apr&quot;:15,&quot;loan_type&quot;:&quot;interest&quot;,&quot;installments_count&quot;:6},{&quot;apr&quot;:15,&quot;loan_type&quot;:&quot;interest&quot;,&quot;installments_count&quot;:12}]}],&quot;installments_buyer_prequalification_enabled&quot;:false,&quot;seller_id&quot;:14221}"></shopify-payment-terms>
  </div>
  <p class="pv-max"> limit 12 per customer</p><input type="hidden" name="product-id" value="8160874233983">
</form>

<form aria-label="Write A Review Form">
  <div class="write-review-wrapper write-form">
    <div class="write-review yotpo-regular-box" id="write-review-tabpanel-main-widget" role="tabpanel">
      <div class="yotpo-header">
        <div>
          <h2 class="y-label yotpo-header-title">WRITE A REVIEW</h2>
        </div>
        <div class="yotpo-mandatory-explain"> <span class="yotpo-mandatory-mark">*</span> Indicates a required field </div> <br> <span class="yotpo-mandatory-mark">* </span> <span class="y-label"
          id="write-review-score-1b2027cd-e6d4-4fd3-8767-7d6819d90551">Score: <span class="form-input-error yotpo-hidden" id="yotpo_score_message_1b2027cd-e6d4-4fd3-8767-7d6819d90551"></span></span>
        <div aria-describedby="yotpo_score_message_1b2027cd-e6d4-4fd3-8767-7d6819d90551" aria-labelledby="write-review-score-1b2027cd-e6d4-4fd3-8767-7d6819d90551" role="radiogroup" tabindex="-1"> <span class="stars-wrapper"> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="1" aria-label="score 1" role="radio" tabindex="0" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="2" aria-label="score 2" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="3" aria-label="score 3" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="4" aria-label="score 4" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="5" aria-label="score 5" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> </span> </div>
      </div>
      <div class="write-review-content">
        <div class="form-group">
          <div class="form-element"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_title_1b2027cd-e6d4-4fd3-8767-7d6819d90551"> Title: <span class="form-input-error yotpo-hidden"
                id="yotpo_input_review_title_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"></span> </label> <input id="yotpo_input_review_title_1b2027cd-e6d4-4fd3-8767-7d6819d90551" class="y-input" name="review_title" maxlength="150"
              aria-required="true" placeholder="" aria-describedby="yotpo_input_review_title_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"> </div>
          <div class="form-element"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_content_1b2027cd-e6d4-4fd3-8767-7d6819d90551"> Review: <span class="form-input-error yotpo-hidden"
                id="yotpo_input_review_content_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"></span> </label> <textarea id="yotpo_input_review_content_1b2027cd-e6d4-4fd3-8767-7d6819d90551" class="y-input yotpo-text-box" name="review_content"
              aria-required="true" placeholder="" aria-describedby="yotpo_input_review_content_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"></textarea> </div>
        </div>
      </div>
      <div class="yotpo-footer yotpo-animation-opacity visible" style="display: inherit;">
        <div class="socialize-wrapper">
          <div class="connected">You are connected as <span class="username"></span></div>
          <div class="socialize"> <span class="y-label">Connect with:</span>
            <div>
              <div class="yotpo-default-button yotpo-icon-btn" data-network="twitter" aria-label="connect with twitter" role="link" tabindex="0"><span class="yotpo-icon yotpo-icon-twitter pull-left"></span></div>
              <div class="yotpo-default-button yotpo-icon-btn" data-network="facebook" aria-label="connect with facebook" role="link" tabindex="0"><span class="yotpo-icon yotpo-icon-facebook pull-left"></span></div>
            </div>
          </div>
          <div class="yotpo-or"> -OR- </div>
        </div>
        <div class="connect-wrapper visible " style="display: inherit;">
          <div class="form-element name-input visible" style="display: inherit;"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_username_1b2027cd-e6d4-4fd3-8767-7d6819d90551">Use your name: <span
                class="form-input-error yotpo-hidden" id="yotpo_input_review_username_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"></span></label> <input id="yotpo_input_review_username_1b2027cd-e6d4-4fd3-8767-7d6819d90551" class="y-input"
              autocomplete="nickname" name="display_name" maxlength="40" aria-required="true" placeholder="" aria-describedby="yotpo_input_review_username_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"> </div>
          <div class="form-element email-input visible" style="display: inherit;"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_email_1b2027cd-e6d4-4fd3-8767-7d6819d90551">Email: <span
                class="form-input-error yotpo-hidden" id="yotpo_input_review_email_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"></span></label> <input id="yotpo_input_review_email_1b2027cd-e6d4-4fd3-8767-7d6819d90551" class="y-input"
              autocomplete="email" name="email" aria-required="true" placeholder="" aria-describedby="yotpo_input_review_email_error_1b2027cd-e6d4-4fd3-8767-7d6819d90551"> </div>
          <div class="yotpo-clr"></div>
        </div>
      </div>
      <div class="error-box yotpo-hidden">
        <div class="text-wrapper"> <span class="error-text empty yotpo-hidden">Review's title &amp; body can't be empty</span>
          <span class="error-text empty_question yotpo-hidden">Question's body can't be empty</span>
          <span class="error-text score yotpo-hidden">Please enter a star rating for this review</span>
          <span class="error-text display_name_empty yotpo-hidden">Name field cannot be empty</span>
          <span class="error-text email yotpo-hidden">Invalid email</span>
          <span class="error-text user-already-reviewed yotpo-hidden">Your review has already been submitted.</span>
          <span class="error-text max_length yotpo-hidden">Max length was exceeded</span>
          <span class="error-text mandatory_field yotpo-hidden">Please fill out all of the mandatory (*) fields</span>
          <span class="error-text open_question_answer_length yotpo-hidden">One or more of your answers does not meet the required criteria</span>
        </div>
        <div class="yotpo-icon-btn-small transparent-color-btn"><span class="yotpo-icon yotpo-icon-cross" role="button" tabindex="0" aria-label="close error message"></span></div>
      </div>
      <div class="form-element submit-button"> <span class="form-input-error yotpo-hidden"></span> <input type="button" class="yotpo-default-button primary-color-btn yotpo-submit" aria-disabled="true" data-button-type="submit" value="Post"> </div>
      <div class="yotpo-preloader-wrapper">
        <div class="yotpo yotpo-pre-loader">
          <span class="yotpo-empty-stars">
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
          </span>
          <span class="yotpo-full-stars">
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
          </span>
        </div>
      </div>
      <div class="yotpo-clr"></div>
    </div>
  </div>
</form>

<form aria-label="Ask A Question Form">
  <div class="write-question-wrapper write-form">
    <div class="write-review yotpo-regular-box" id="write-question-tabpanel" role="tabpanel">
      <div>
        <h2 class="y-label yotpo-header-title">ASK A QUESTION</h2>
      </div>
      <div class="yotpo-mandatory-explain"> <span class="yotpo-mandatory-mark">* </span> Indicates a required field </div> <br>
      <div class="write-question-content">
        <div class="form-group">
          <div class="form-element"> <label class="y-label" for="yotpo_input_question_content"><span class="yotpo-mandatory-mark">* </span>Question: <span class="form-input-error yotpo-hidden"></span></label> <textarea
              id="yotpo_input_question_content" class="y-input yotpo-text-box" name="review_content" maxlength="1000" aria-required="true" placeholder=""></textarea> </div>
        </div>
      </div>
      <div class="error-box yotpo-hidden">
        <div class="text-wrapper"> <span class="error-text empty yotpo-hidden">Review's title &amp; body can't be empty</span>
          <span class="error-text empty_question yotpo-hidden">Question's body can't be empty</span>
          <span class="error-text score yotpo-hidden">Please enter a star rating for this review</span>
          <span class="error-text display_name_empty yotpo-hidden">Name field cannot be empty</span>
          <span class="error-text email yotpo-hidden">Invalid email</span>
          <span class="error-text user-already-reviewed yotpo-hidden">Your review has already been submitted.</span>
          <span class="error-text max_length yotpo-hidden">Max length was exceeded</span>
          <span class="error-text mandatory_field yotpo-hidden">Please fill out all of the mandatory (*) fields</span>
          <span class="error-text open_question_answer_length yotpo-hidden">One or more of your answers does not meet the required criteria</span>
        </div>
        <div class="yotpo-icon-btn-small transparent-color-btn"><span class="yotpo-icon yotpo-icon-cross"></span></div>
      </div>
      <div class="yotpo-footer yotpo-animation-opacity visible" style="display: inherit;">
        <div class="connect-wrapper">
          <div class="form-element name-input"> <label class="y-label" for="yotpo_input_question_username"><span class="yotpo-mandatory-mark">* </span>Use your name: <span class="form-input-error yotpo-hidden"></span></label> <input
              id="yotpo_input_question_username" class="y-input" autocomplete="nickname" name="display_name" maxlength="40" aria-required="true" placeholder=""> </div>
          <div class="form-element email-input visible" style="display: inherit;"> <label class="y-label" for="yotpo_input_question_email"><span class="yotpo-mandatory-mark">* </span>Email: <span class="form-input-error yotpo-hidden"></span></label>
            <input id="yotpo_input_question_email" class="y-input" autocomplete="email" name="email" aria-required="true" placeholder=""> </div>
          <div class="yotpo-clr"></div>
        </div>
      </div>
      <div class="form-element submit-button"> <span class="form-input-error yotpo-hidden"></span> <input type="button" class="yotpo-default-button primary-color-btn yotpo-submit" aria-disabled="true" data-button-type="submit" value="Post"> </div>
      <div class="yotpo-clr"></div>
    </div>
  </div>
</form>

<form id="footerNewsletterForm" class="footer-newsletter form-inline">
  <div class="footer-newsletter__wrapper form-inline__input input-placeholder">
    <label for="footerNewsletterEmail" class="footer-newsletter__label">
      <span class="hide-desktop">email</span>
      <span class="hide-mobile">email@emailaddress.com</span>
    </label>
    <input id="footerNewsletterEmail" class="footer-newsletter__input input" type="email" required="">
  </div>
  <button id="footerNewsletterSubmit" class="footer-newsletter__btn form-inline__btn" type="submit" aria-label="Sign up for the newsletter">Sign Up</button>
  <div class="footer-newsletter__messages">
    <div id="footerNewsletterMessages"></div>
  </div>
</form>

POST /cart

<form id="bagForm" action="/cart" method="post" class="bag__form">
  <header id="bagHeader" class="bag__header">
    <div class="bag__header-flex">
      <h2 class="bag__title" aria-live="polite" role="alert"> Your Bag <span class="screenreader">contains</span> (<span class="js-bag-count">0</span>) <span class="screenreader">items.</span>
      </h2><button id="bagContinue" type="button" class="btn-icon bag__close">
        <i class="icon icon--close"></i>
        <span class="screenreader">Close Bag</span>
      </button>
      <div id="bagShipping" class="bag-shipping">
        <div class="bag-shipping__content">
          <p class="bag-shipping__text js-bag-shipping-text">Only $50.00 away from free domestic shipping!</p>
        </div>
        <script>
          SDG.Data.cartShippingThreshold = 5000.0;
          SDG.Data.cartTotalPrice = 0;
          SDG.Data.shippingOffset = 0;
          SDG.Data.cartFreeShippingReachedMessage = 'YAAAAAS bitch you qualify for free domestic shipping!';
          SDG.Data.cartFreeShippingUnmet = 'Only $AMOUNT$ away from free domestic shipping!';
        </script>
      </div>
    </div>
    <div class="bag__message">Buy one Liquid Star Shadow*, Get one FREE! Simply add two to cart to activate offer. *Excludes shades from the Scorpio Collection. Ends 2/25</div>
  </header>
  <div class="bag__form-inner">
    <div id="bagWrapper" style="overflow-y: auto; max-height: calc(100% - 191px);">
      <div id="bagContent" class="xbag__content" data-count="0" data-total-price="0" data-shipping-offset="0">
        <script>
          SDG.Data.bagItems = [];
          const productIds = [];
        </script>
        <div id="bagEmpty" class="bag__empty">
          <h3 class="bag__empty-heading"> Your bag is empty. </h3>
          <div class="bag__empty-cta">
            <a href="/collections/all" class="btn btn--primary btn--full">
        Shop All
      </a>
          </div>
        </div>
      </div>
      <div id="rebuyWidget" style="padding: 0 1.875rem;"></div>
    </div>
    <div id="bagFooter" class="bag__footer">
      <div class="bag__summary">
        <div id="bagTotals" class="bag__totals">
          <p class="bag__total">
            <span class="bag__total-label"> Your Subtotal </span>
            <span id="bagSubtotal" class="bag__total-value">$0.00</span>
          </p>
        </div>
      </div>
      <a class="bag__checkout btn btn--primary btn--full" href="/checkout">
            Checkout
          </a>
    </div>
  </div>
</form>

Text Content

Press Alt+1 for screen-reader mode, Alt+0 to cancelAccessibility Screen-Reader
Guide, Feedback, and Issue Reporting

Free Domestic Shipping now ONLY $50 to activate

Free Domestic Shipping now ONLY $50 to activate

Shop Wake Your Ass Up! ☕️ Skincare

My Account Contact Us Store Locator
Search Search submit
Menu toggle
Toggle Cart ( 0 )
SEARCH FOR:
Close search
Products
Sorry, there no are results.



WAKE YOUR ASS UP! ☕️


WAKE YOUR ASS UP! ☕️


SCORPIO 🦂


SCORPIO 🦂


SKINCARE


SKINCARE


BUNDLES


BUNDLES


EYES


EYES


FACE


FACE


HIGHLIGHTERS


HIGHLIGHTERS


LIPS


LIPS


FASHION


FASHION


ACCESSORIES


ACCESSORIES

Wake Your Ass Up! Ultimate Bundle Morning Latte Bundle Private Jet Bundle Cafe
au Lait Bundle Magic Star™ Espresso Serum Coffee Drip Lip Oil Wake Your Ass Up
Eye Cream Espresso Shot Body Lotion Wake Your Face Up Caffeine Face Mist Coffee
Makeup Bag Shop the Wake Your Ass Up! Collection

Scorpio Ultimate Bundle Scorpio Palette Scorpio Liquid Star Shadow Scorpio Shiny
Trap Scorpio Venom Lip Oil Shop the Scorpio Collection

Wyoming Winter Star Milk Skincare Bundles Cleansers Moisturizers Serums and
Toners Eye Creams and Lip Care Face Mists Explore Skincare

Scorpio Ultimate Bundle Ultimate Star Wedding Bundle Gothic Mermaid Bundle
Ultimate Rainbow Palette Bundle Explore all Bundles

Mascara 🖤 Artistry Singles BeachProof Eyeliner Eye Gloss Powder ✨ Liquid Star
Shadow Palettes Shop All Eyes

Magic Candy™ Liquid Blush 🍬 Magic Star™ Concealer Magic Star™ Setting Powder
Magic Star™ Luminous Setting Powder Wedding Proof Makeup Setting Spray 💦 Shop
All Face

Extreme Frost™ Supreme Frost™ Shop All Highlighters

Hydrating Glitz Lip Balm Lip Oil Shiny Trap Supreme Gloss The Gloss Velour Lip
Scrub Velour Liquid Lipstick Velvet Trap Lipstick 🎀 Shop All Lips

Activewear Outerwear Tees Bottoms Hats Shop All

Hand Mirrors LED Makeup Mirror Bags Tumblers Pets Shop All

Close
Search Search submit
Products
Sorry, there no are results.

Wake Your Ass Up! ☕️ Scorpio 🦂 Skincare Bundles Eyes Face Highlighters Lips
Fashion Accessories

My Account Contact Us Store Locator

Free Domestic Shipping now ONLY $50 to activate

Wake Your Ass Up! ☕️
Wake Your Ass Up! Ultimate Bundle Morning Latte Bundle Private Jet Bundle Cafe
au Lait Bundle Magic Star™ Espresso Serum Coffee Drip Lip Oil Wake Your Ass Up
Eye Cream Espresso Shot Body Lotion Wake Your Face Up Caffeine Face Mist Coffee
Makeup Bag Shop the Wake Your Ass Up! Collection
Scorpio 🦂
Scorpio Ultimate Bundle Scorpio Palette Scorpio Liquid Star Shadow Scorpio Shiny
Trap Scorpio Venom Lip Oil Shop the Scorpio Collection
Skincare
Wyoming Winter Star Milk Skincare Bundles Cleansers Moisturizers Serums and
Toners Eye Creams and Lip Care Face Mists Explore Skincare
Bundles
Scorpio Ultimate Bundle Ultimate Star Wedding Bundle Gothic Mermaid Bundle
Ultimate Rainbow Palette Bundle Explore all Bundles
Eyes
Mascara 🖤 Artistry Singles BeachProof Eyeliner Eye Gloss Powder ✨ Liquid Star
Shadow Palettes Shop All Eyes
Face
Magic Candy™ Liquid Blush 🍬 Magic Star™ Concealer Magic Star™ Setting Powder
Magic Star™ Luminous Setting Powder Wedding Proof Makeup Setting Spray 💦 Shop
All Face
Highlighters
Extreme Frost™ Supreme Frost™ Shop All Highlighters
Lips
Hydrating Glitz Lip Balm Lip Oil Shiny Trap Supreme Gloss The Gloss Velour Lip
Scrub Velour Liquid Lipstick Velvet Trap Lipstick 🎀 Shop All Lips
Fashion
Activewear Outerwear Tees Bottoms Hats Shop All
Accessories
Hand Mirrors LED Makeup Mirror Bags Tumblers Pets Shop All

 * homepage
 * Eyes
 * Scorpio Palette


SCORPIO PALETTE

4.9 star rating 81 Reviews



 1. 
 2. 
 3. 
 4. 
 5. 




SCORPIO PALETTE

4.9 star rating 81 Reviews




$ 62 $ 0

Default Title

- Subtract + Add


Add to Cart

$ 62 $ 0



limit 12 per customer

$ 62 $ 0

About the product

Happy Birthday Jeffree!! Introducing the Jeffree Star Cosmetics Scorpio Palette,
where celestial energy meets unparalleled beauty. Dive into the depths of
Jeffree’s zodiac sign with this 24-shade Scorpio Palette designed to fully
capture Scorpio's energy! This artistry palette includes an assortment of shades
curated specifically to embody Jeffree’s birthday. From deep, sultry plums to
soft, rich tans & browns, you can create, captivating eye looks that mirror the
Scorpio spirit! Includes 14 pigmented matte shades & 10 shimmering metallics.


ROW 1: 
Scorpio Energy (PP): Matte = Dusty Pink Rose 
Star Aura: Metallic = Peachy Gold Shimmer
Diva Lynn (PP): Matte = Desert Sand Tan
Privacy (PP): Metallic = Copper Metallic
Psychoanalyze: Metallic = Bronze Metallic
Steininger: Matte = Brown with Red Undertones


ROW 2: 
Originality: Matte = Tiffany-like blue
Nov 15th (PP): Matte = Deep Wine
Spirit Realm (PP): Metallic = Lavender & Gold Metallic
Powerful Presence (PP): Metallic = Magenta Shift Pearls
Single-Minded (PP): Metallic =  Lilac Metallic
Fearless (PP): Metallic = Vibrant Violet Metallic


ROW 3: 
Intimacy King (PP): Matte = Purple Plum
Loyalty (PP): Metallic = Antique Gold Shift Pearls
Harsh (PP): Matte = Brick Red Brown
Sex Slayer (PP): Matte = Bright Orange Red
Star Camel (PP): Matte = Camel Tan
Moon In Sagittarius: Matte = Muted Periwinkle Blue


ROW 4: 
Garden Grove (PP): Matte = Muted Army Green
Secretive (PP): Matte = Light Terracotta Brown
Ego Death: Matte = Deep Teal
Abstract Love: Metallic = Vibrant Navy Blue Shimmer
Pluto’s Touch (PP): Metallic = Silver Shift Metallic Pearls
Deep Wisdom (PP): Matte = Deep Muted Navy


Pressed pigments* - Scorpio Energy, Diva Lynn, Privacy, Nov 15th, Spirit Realm,
Powerful Presence, Single-Minded, Fearless, Intimacy King, Loyalty, Harsh, Sex
Slayer, Star Camel, Garden Grove, Secretive, Pluto’s Touch, Deep Wisdom
 
*certain pigments may cause irritation or staining if used around the eyes. 

View Ingredients
Slideshow


OTHER TOP RATED PRODUCTS

Slide controls
 * Summer Mystery Box
   4.5 star rating
   (598)
   
    
 * Eye Gloss Powder
   4.6 star rating
   (343)
   
    
 * Velvet Trap
   4.6 star rating
   (1070)
   
    
 * Mini Star Ranch Palette
   4.9 star rating
   (218)
   
    
 * Artistry Singles
   4.8 star rating
   (472)
   
    
 * Blood Money Palette
   4.8 star rating
   (395)
   
    
 * Blood Lust Palette
   4.9 star rating
   (591)
   
    
 * Magic Star™ Hydrating Moisturizer
   4.8 star rating
   (361)
   
    


4.9

4.9 star rating

4.9 star rating 81 Reviews


Write A Review Ask A Question


WRITE A REVIEW

* Indicates a required field

* Score:

* Title:
* Review:
You are connected as
Connect with:

-OR-
* Use your name:
* Email:

Review's title & body can't be empty Question's body can't be empty Please enter
a star rating for this review Name field cannot be empty Invalid email Your
review has already been submitted. Max length was exceeded Please fill out all
of the mandatory (*) fields One or more of your answers does not meet the
required criteria




Thank you for posting a review!
We value your input. Share your review so everyone else can enjoy it too.
share
share
share
Thank you for posting a review!
Your review was sent successfully and is now waiting for our staff to publish
it.


ASK A QUESTION

* Indicates a required field

* Question:
Review's title & body can't be empty Question's body can't be empty Please enter
a star rating for this review Name field cannot be empty Invalid email Your
review has already been submitted. Max length was exceeded Please fill out all
of the mandatory (*) fields One or more of your answers does not meet the
required criteria

* Use your name:
* Email:



Thank you for posting a question!
Please click on the link in the confirmation email we just sent you to submit
your question.

Your question will appear on the site once someone answers it.
 * REVIEWS
 * QUESTIONS

Clear All

Filter Reviews
Search Reviews
More Filters

FILTERS Clear All
Rating
Scores filter
All Score all
5.0 star rating Score 5
4.0 star rating Score 4
3.0 star rating Score 3
2.0 star rating Score 2
1.0 star rating Score 1
Reviews
Images filter
All All reviews
With Images & Videos Images only
Show 81 Reviews
Rating
 * All
 * 5.0 star rating
 * 4.0 star rating
 * 3.0 star rating
 * 2.0 star rating
 * 1.0 star rating

Images & Videos
 * All
 * With Images & Videos

Clear All
81 Reviews
Sort: Select
 * Select
 * Newest
 * Highest Rating
 * Lowest Rating
 * Most Votes
 * Least Votes

Updating Results

Verified Reviewer

0.0 star rating

02/25/24
Review by Anonymous User



On
share ' Share Review by Anonymous User facebook facebook Share Review by
Anonymous User twitter twitter Share Review by Anonymous User LinkedIn linkedin
Share Review by Anonymous User
02/25/24
Was this review helpful?

0

0


J
Janet C.
Verified Buyer

5.0 star rating

01/11/24
Would recommend!!

Review by Janet C. on 11 Jan 2024 review stating Would recommend!!
I have many palettes from jeffree star and I love them all, but the scorpio
palette is by far my favorite ! I love the color story and the shadows blend
like butter! Also, the pigments, like in all his palettes , are top notch !
Don't sit on this, if you don't have the scorpio in your collection, get it !
It's a must have. I use it daily and alway...Read MoreRead more about review
stating Would recommend!!

s recieve tons of compliments! I want to add that there is very little to no
fall out from these shadows . Perfect for everyday use or a crazy, creative
look. The shimmers are beautiful ! Read LessRead less about review stating Would
recommend!!

On Scorpio Palette
share ' Share Review by Janet C. on 11 Jan 2024 facebook facebook Share Review
by Janet C. on 11 Jan 2024 twitter twitter Share Review by Janet C. on 11 Jan
2024 LinkedIn linkedin Share Review by Janet C. on 11 Jan 2024
01/11/24
Was this review helpful?

0

0

J
Josh B.
Verified Buyer

5.0 star rating

01/05/24
Gorgeous

Review by Josh B. on 5 Jan 2024 review stating Gorgeous
As expected the presentation is incredible and the colors are gorgeous.
On Scorpio Palette
share ' Share Review by Josh B. on 5 Jan 2024 facebook facebook Share Review by
Josh B. on 5 Jan 2024 twitter twitter Share Review by Josh B. on 5 Jan 2024
LinkedIn linkedin Share Review by Josh B. on 5 Jan 2024
01/05/24
Was this review helpful?

0

0

R
Rachale R.
Verified Buyer

5.0 star rating

01/05/24
Beautiful palette

Review by Rachale R. on 5 Jan 2024 review stating Beautiful palette
I’m obsessed with the pigment and quality of this palette. I can’t wait to order
more.
On Scorpio Palette
share ' Share Review by Rachale R. on 5 Jan 2024 facebook facebook Share Review
by Rachale R. on 5 Jan 2024 twitter twitter Share Review by Rachale R. on 5 Jan
2024 LinkedIn linkedin Share Review by Rachale R. on 5 Jan 2024
01/05/24
Was this review helpful?

0

0

W
Wendy L.
Verified Buyer

5.0 star rating

12/30/23
Love this!

Review by Wendy L. on 30 Dec 2023 review stating Love this!
Love this!
On Scorpio Palette
share ' Share Review by Wendy L. on 30 Dec 2023 facebook facebook Share Review
by Wendy L. on 30 Dec 2023 twitter twitter Share Review by Wendy L. on 30 Dec
2023 LinkedIn linkedin Share Review by Wendy L. on 30 Dec 2023
12/30/23
Was this review helpful?

0

0

C
Christen G.
Verified Buyer

5.0 star rating

12/30/23
Love this palette! I do

Review by Christen G. on 30 Dec 2023 review stating Love this palette! I do
Love this palette! I do not have anything in my makeup arsenal with these
colors. The metallics are stunning and the richness of the colors last all day
and are really complementary to the eyes.
On Scorpio Palette
share ' Share Review by Christen G. on 30 Dec 2023 facebook facebook Share
Review by Christen G. on 30 Dec 2023 twitter twitter Share Review by Christen G.
on 30 Dec 2023 LinkedIn linkedin Share Review by Christen G. on 30 Dec 2023
12/30/23
Was this review helpful?

0

0

1 2 3 4 5 6 7 8 9
be the first to ask a question


COMPLETE THE LOOK


 * GOTHIC BEACH PALETTE
   
   
   add to cart $54
   


 * SCORPIO BIRTHDAY BUNDLE
   
   
   add to cart $152 $129
   


 * SHINY TRAP
   
   7 SHADES
   
   Select A Shade


 * SCORPIO ULTIMATE BUNDLE
   
   
   add to cart $362 $308
   




SIGN UP FOR THE LATEST

email email@emailaddress.com
Sign Up

 * TikTok
 * youtube
 * facebook
 * instagram

 * ACCOUNT
   
   * Sign Up
   * Login
   * Order Status

 * CUSTOMER SERVICE
   
   * Returns & Exchanges
   * Shipping Information
   * International Orders
   * Contact Us

 * ABOUT US
   
   * Where To Buy
   * FAQ
   * Wholesale Inquiries
   * Careers

© 2024 Jeffree Star Cosmetics, Inc. All rights reserved. 
 * Terms & Conditions
 * Privacy Policy
 * Accessibility


YOUR BAG CONTAINS (0) ITEMS.

Close Bag

Only $50.00 away from free domestic shipping!

Buy one Liquid Star Shadow*, Get one FREE! Simply add two to cart to activate
offer. *Excludes shades from the Scorpio Collection. Ends 2/25


YOUR BAG IS EMPTY.

Shop All


Your Subtotal $0.00

Checkout

Close


INGREDIENTS

Spirit Realm PP: Mica, Mica (CI 77019), Dimethicone, Octyldodecyl Stearoyl
Stearate, Zinc Stearate, Aluminum Hydroxide, Silica, Glyceryl Caprylate, Boron
Nitride, Lauroyl Lysine, Talc, Tin Oxide, Potassium Sorbate, Water (Aqua),
Stearic Acid, Methicone, Sodium Sulfate, Alumina +/- : Titanium Dioxide (CI
77891), Aluminum Powder (CI 77000), Ultramarines (CI 77007), Red 28 Lake (CI
45410) Yellow 5 Lake (CI 19140), Iron Oxides (CI 77491, CI 77492, CI 77499)

Scorpio Energy PP: Mica, Talc, Silica, Boron Nitride, Lauroyl Lysine,
Dimethicone, Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc Stearate,
Methicone, Aluminum Hydroxide, Potassium Sorbate, Water (Aqua), Stearic Acid,
Sodium Sulfate, Alumina, Barium Sulfate + / - : Ultramarines (CI 77007),
Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 7
Lake (CI 15850) Red 28 Lake (CI 45410), Red 40 Lake (CI 16035), Yellow 5 Lake
(CI 19140), Blue 1 Lake (CI 42090)

Pluto's Touch PP: Mica, Dimethicone, Octyldodecyl Stearoyl Stearate, Mica (CI
77019), Zinc Stearate, Glyceryl Caprylate, Boron Nitride, Lauroyl Lysine, Talc,
Silica, Potassium Sorbate, Aluminum Hydroxide, Water (Aqua), Stearic Acid,
Methicone, Sodium Sulfate + / - : Titanium Dioxide (CI 77891), Iron Oxides (CI
77491, CI 77492, CI 77499), Red 28 Lake (CI 45410)

Privacy PP: Mica, Synthetic Fluorphlogopite, Calcium Aluminum Borosilicate,
Dimethicone, Octyldodecyl Stearoyl Stearate, Mica (CI 77019), Zinc Stearate,
Silica, Glyceryl Caprylate, Boron Nitride, Lauroyl Lysine, Tin Oxide, Talc,
Aluminum Hydroxide, Potassium Sorbate, Water (Aqua), Stearic Acid, Methicone,
Alumina +/-: Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492), Red
28 Lake (CI 45410), Yellow 5 Lake (CI 19140)

Garden Grove PP: Silica, Mica, Talc, Boron Nitride, Lauroyl Lysine, Aluminum
Hydroxide, Dimethicone, Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc
Stearate, Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium
Sulfate, Alumina + / - : Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium
Dioxide (CI 77891), Chromium Oxide Greens (CI 77288) Blue 1 Lake (CI 42090), Red
40 Lake (CI 16035), Yellow 5 Lake (CI 19140), Ultramarines (CI 77007)

Ego Death: Silica, Aluminum Hydroxide, Boron Nitride, Lauroyl Lysine, Mica,
Talc, Dimethicone, Glyceryl Caprylate, Octyldodecyl Stearoyl Stearate, Zinc
Stearate, Potassium Sorbate, Methicone, Water (Aqua), Sodium Sulfate, Stearic
Acid, Alumina + / - :Chromium Hydroxide Green (CI 77289), Iron Oxides (CI 77491
CI 77492, CI 77499), Blue 1 Lake (CI 42090) Red 40 Lake (CI 16035), Yellow 5
Lake (CI 19140)

Abstract Love: Calcium Sodium Borosilicate, Mica, Dimethicone, Octyldodecyl
Stearoyl Stearate, Talc, Zinc Stearate, Boron Nitride, Lauroyl Lysine, Glyceryl
Caprylate, Silica, Potassium Sorbate, Tin Oxide, Methicone, Stearyl
Triethoxysilane, Water (Aqua), Stearic Acid, Alumina, Aluminum Hydroxide + / - :
Titanium Dioxide (CI 77891), Ultramarines (CI 77007), Ferric Ferrocyanide (CI
77510), Yellow 5 Lake (CI 19140) Blue 1 Lake (CI 42090), Iron Oxides (CI 77491,
CI 77492), Mica (CI 77019)

Deep Wisdom PP: Talc, Silica, Boron Nitride, Lauroyl Lysine, Mica, Dimethicone,
Glyceryl Caprylate, Octyldodecyl Stearoyl Stearate, Aluminum Hydroxide, Zinc
Stearate, Methicone, Potassium Sorbate, Water (Aqua), Sodium Sulfate, Stearic
Acid + / - : Ultramarines (CI 77007), Iron Oxides (CI 77491, CI 77492, CI
77499), Red 28 Lake (CI 45410), Blue 1 Lake (CI 42090) Titanium Dioxide (CI
77891)

Diva Lynn PP: Talc, Mica, Alumina, Silica, Boron Nitride, Lauroyl Lysine,
Dimethicone, Glyceryl Caprylate, Octyldodecyl Stearoyl Stearate, Zinc Stearate,
Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium Sulfate,
Aluminum Hydroxide + / - : Titanium Dioxide (CI 77891), Yellow 5 Lake (CI
19140), Iron Oxides (CI 77491, CI 77492, CI 77499), Red 6 (CI 15850) Red 40 Lake
(CI 16035)

Moon in Sagittarius: Talc, Mica, Silica, Boron Nitride, Lauroyl Lysine, Aluminum
Hydroxide, Dimethicone, Glyceryl Caprylate, Octyldodecyl Stearoyl Stearate, Zinc
Stearate, Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium
Sulfate, Alumina + / - :Ultramarines (CI 77007), Titanium Dioxide (CI 77891),
Iron Oxides (CI 77491, CI 77492, CI 77499), Blue 1 Lake (CI 42090), Red 40 Lake
(CI 16035), Yellow 5 Lake (CI 19140)

Secretive PP: Mica, Talc, Silica, Boron Nitride, Lauroyl Lysine, Alumina,
Dimethicone, Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc Stearate,
Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium Sulfate,
Aluminum Hydroxide + / - : Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium
Dioxide (CI 77891), Red 30 (CI 73360) Yellow 5 Lake (CI 19140), Red 40 Lake (CI
16035)

Intimacy King PP: Talc, Silica, Mica, Aluminum Hydroxide, Boron Nitride, Lauroyl
Lysine, Dimethicone, Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc
Stearate, Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium
Sulfate, Barium Sulfate + / - : Ultramarines (CI 77007), Titanium Dioxide (CI
77891), Red 7 Lake (CI 15850), Iron Oxides (CI 77491, CI 77492, CI 77499) Red 28
Lake (CI 45410), Red 40 Lake (CI 16035), Manganese Violet (CI 77742)

Sex Slayer PP: Silica, Talc, Mica, Aluminum Hydroxide, Boron Nitride, Lauroyl
Lysine, Dimethicone, Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc
Stearate, Alumina, Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid,
Sodium Sulfate, Barium Sulfate + / - : Red 30 (CI 73360), Red 6 (CI 15850), Red
7 Lake (CI 15850), Red 40 Lake (CI 16035), Red 28 Lake (CI 45410) Yellow 5 Lake
(CI 19140), Iron Oxides (CI 77491, CI 77492, CI 77499), Titanium Dioxide (CI
77891)

Nov 15th PP: Talc, Mica, Silica, Boron Nitride, Lauroyl Lysine, Aluminum
Hydroxide, Dimethicone, Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc
Stearate, Methicone, Potassium Sorbate, Water (Aqua), Sodium Sulfate, Stearic
Acid, Barium Sulfate + / - : Iron Oxides (CI 77491, CI 77499), Ultramarines (CI
77007), Red 7 Lake (CI 15850), Red 28 Lake (CI 45410) Red 40 Lake (CI 16035),
Titanium Dioxide (CI 77891)

Originality: Talc, Mica, Silica, Boron Nitride, Lauroyl Lysine, Aluminum
Hydroxide, Dimethicone, Glyceryl Caprylate, Octyldodecyl Stearoyl Stearate, Zinc
Stearate, Methicone, Alumina, Potassium Sorbate, Water (Aqua), Stearic Acid,
Sodium Sulfate + / - : Chromium Hydroxide Green (CI 77289), Titanium Dioxide (CI
77891), Blue 1 Lake (CI 42090), Yellow 5 Lake (CI 19140) Ultramarines (CI
77007), Iron Oxides (CI 77492, CI 77499)

Powerful Presence PP: Mica, Dimethicone, Octyldodecyl Stearoyl Stearate, Zinc
Stearate, Glyceryl Caprylate, Aluminum Hydroxide, Silica, Boron Nitride, Lauroyl
Lysine, Potassium Sorbate, Talc, Water (Aqua), Stearic Acid, Methicone, Sodium
Sulfate, Barium Sulfate + / - : Mica (CI 77019), Titanium Dioxide (CI 77891),
Iron Oxides (CI 77491, CI 77492, CI 77499), Red 28 Lake (CI 45410) Red 7 Lake
(CI 15850), Manganese Violet (CI 77742)

Star Camel: Talc, Mica, Silica, Alumina, Boron Nitride, Lauroyl Lysine,
Dimethicone, Glyceryl Caprylate, Octyldodecyl Stearoyl Stearate, Zinc Stearate,
Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium Sulfate,
Aluminum Hydroxide + / - : Titanium Dioxide (CI 77891), Red 40 Lake (CI 16035),
Yellow 5 Lake (CI 19140) Iron Oxides (CI 77491, CI 77492, CI 77499)

Steininger: Talc, Mica, Silica, Boron Nitride, Lauroyl Lysine, Dimethicone,
Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc Stearate, Aluminum
Hydroxide, Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid, Sodium
Sulfate, Alumina + / - : Iron Oxides (CI 77491, CI 77492, CI 77499), Red 40 Lake
(CI 16035), Yellow 5 Lake (CI 19140) Titanium Dioxide (CI 77891)

Star Aura PP: Synthetic Fluorphlogopite, Calcium Aluminum Borosilicate,
Dimethicone, Octyldodecyl Stearoyl Stearate, Silica, Mica, Zinc Stearate, Talc,
Boron Nitride, Lauroyl Lysine, Glyceryl Caprylate, Tin Oxide, Potassium Sorbate,
Triethoxycaprylylsilane, Methicone, Water (Aqua), Stearic Acid, Sodium Sulfate +
/ - :Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77499), Red 6 (CI
15850), Yellow 5 Lake (CI 19140)

Psychoanalyze: Mica, Dimethicone, Octyldodecyl Stearoyl Stearate, Talc, Zinc
Stearate, Glyceryl Caprylate, Boron Nitride, Lauroyl Lysine, Silica, Potassium
Sorbate, Methicone, Water (Aqua), Stearic Acid, Sodium Sulfate + / - : Titanium
Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499)

Fearless PP: Dimethicone, Octyldodecyl Stearoyl Stearate, Zinc Stearate, Mica,
Aluminum Hydroxide, Synthetic Fluorphlogopite, Glyceryl Caprylate, Silica, Boron
Nitride, Lauroyl Lysine, Talc, Potassium Sorbate, Tin Oxide, Water (Aqua),
Stearic Acid, Methicone, Sodium Sulfate, Barium Sulfate + / - : Mica (CI 77019),
Titanium Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77499), Red 28 Lake (CI
45410) Ferric Ferrocyanide (CI 77510), Red 7 Lake (CI 15850), Manganese Violet
(CI 77742)

Single Minded PP: Mica, Dimethicone, Octyldodecyl Stearoyl Stearate, Mica (CI
77019), Talc, Zinc Stearate, Glyceryl Caprylate, Boron Nitride, Lauroyl Lysine,
Aluminum Hydroxide, Silica, Potassium Sorbate, Methicone, Water (Aqua), Stearic
Acid, Sodium Sulfate, Barium Sulfate + / - :Titanium Dioxide (CI 77891),
Ultramarines (CI 77007), Red 28 Lake (CI 45410), Iron Oxides (CI 77491, CI
77492, CI 77499) Red 7 Lake (CI 15850), Manganese Violet (CI 77742)

Loyalty PP: Mica, Octyldodecyl Stearoyl Stearate, Dimethicone, Talc, Zinc
Stearate, Glyceryl Caprylate, Boron Nitride, Lauroyl Lysine, Silica, Potassium
Sorbate, Methicone, Water (Aqua), Stearic Acid, Sodium Sulfate + / - :Titanium
Dioxide (CI 77891), Iron Oxides (CI 77491, CI 77492, CI 77499)

Harsh PP: Mica, Talc, Silica, Boron Nitride, Lauroyl Lysine, Dimethicone,
Octyldodecyl Stearoyl Stearate, Glyceryl Caprylate, Zinc Stearate, Barium
Sulfate, Alumina, Methicone, Potassium Sorbate, Water (Aqua), Stearic Acid,
Sodium Sulfate, Aluminum Hydroxide + / - : Iron Oxides (CI 77491, CI 77492, CI
77499), Red 7 Lake (CI 15850), Titanium Dioxide (CI 77891) Yellow 5 Lake (CI
19140), Red 40 Lake (CI 16035)






$ {{amount}}