Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Triple Fix Full Coverage Brightening Concealer
Vendor by: Natural Face

Triple Fix Full Coverage Brightening Concealer

$19.00
$0.00
-$-19.00
Color-LG1 (Porcelain)
Please select a color
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
SKU: '210000013308

Triple Fix Full Coverage Brightening Concealer

This product is: A luxuriously rich, ultra-creamy concealer that helps visibly brighten,
conceal, and nourish skin with undetectable coverage and a skin-like finish.

Good for: Normal Skin Types, Dark Spots, Hyperpigmentation, Redness, Dry, Dehydrated, and Textured Skin.

Why we love it: LYS Beauty Triple Fix Full Coverage Brightening Concealer satisfies the craving for coverage, while imparting a healthy, natural finish to the skin...regardless of your skin type! With fully customizable coverage, this vegan formula is designed to build and layer beautifully on the skin without settling into fine lines and pores. 

Designed with both the face and under-eye area in mind, this skin-loving, highly pigmented formula dries down into a soft-focus, creaseless finish to neutralize the look of enlarged pores, wrinkles, sun spots, redness, blemishes, or dark circles. Make this product your own with a selection of 25 universal shades formulated to correct and conceal any complexion irregularities.

LYS Beauty Triple Fix Full Coverage Brightening Concealer in 25 shades:

DPG5 - truffle rich brown skin with golden undertones
DPN4 - coffee rich brown skin with neutral undertones
DPP1 - mocha blush dark brown skin with pink undertones
DPN1 - mocha neutral dark brown skin with neutral undertones
DPG1 - mocha dark brown skin with golden undertones
DG6 - dark golden almond dark brown skin with golden undertones
DN5 - hazelnut dark brown skin with neutral undertones
DN3 - caramel brown skin with neutral undertones
DG3 - golden caramel brown skin with golden undertones
TG7 - tan sand tan/olive skin with golden undertones
TN6 - honey tan/olive skin with neutral undertones
TG5 - golden beige tan/olive skin with golden undertones
TN3 - oak tan skin with neutral undertones
TG1 - latte light tan skin with golden undertones
MG5 - golden almond golden medium skin with golden undertones
MN5 - almond medium skin with neutral undertones
MP3 - buff light blush medium skin with pink undertones
MN3 - neutral buff light medium skin with neutral undertones
MG2 - bisque light golden medium skin with golden undertones
MN1 - ivory beige light medium skin with neutral undertones
LN6 - light nude light skin with neutral undertones
LP4 - vanilla fair skin with pink undertones
LG3 - bone golden very fair skin with neutral undertones
LN3 - bone blush very fair skin with neutral undertones
LG1 - porcelain very fair skin with golden undertones

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.