const COLORS={'Milky White':'var(--grey-300)','Black':'var(--charcoal-900)','Yellow':'var(--pigment-ochre)','Red':'var(--accent-primary)','Blue':'var(--pigment-royal-blue)','Green':'var(--pigment-green)','Orange':'var(--pigment-orange)','Violet':'var(--pigment-deep-blue)'}; const SPARKS=[['Milky White','8','22','68 ± 2%'],['Black','8-9','90','41 ± 2%'],['Yellow','8','23','40 ± 2%'],['Red','8','55','43 ± 2%'],['Blue','9-10','18','49 ± 2%'],['Green','8','25','52 ± 2%'],['Orange','8','24','50 ± 2%'],['Violet','8-9','36','34 ± 2%']]; const FLARES=[['Milky White','8','22','60 ± 2%'],['Black','8-9','90','33 ± 2%'],['Yellow','8','23','32 ± 2%'],['Red','8','55','35 ± 2%'],['Blue','9-10','18','41 ± 2%'],['Green','8','25','44 ± 2%'],['Orange','8','24','42 ± 2%'],['Violet','8-9','36','26 ± 2%']]; const INK_APPS=['BOPP Tape','Flexible Packaging','Pharmaceutical','Corrugated Box & Paper','Extrusion & Lamination','Poly Printing','Labels & Stickers']; const INKS=[ {cat:'BOPP Tape inks',name:'Tapepack BOPP ink',method:'Rotogravure',app:'Reverse Printing',substrate:'BOPP Film',reducers:'Ethyl Acetate, Toluene',base:'Vinyl base',desc:'Ideal for high-quality reverse printing on BOPP films.'}, {cat:'Extrusion inks',name:'GR Xtop Inks',method:'Rotogravure',app:'Reverse Printing',substrate:'Specialised BOPP Tape (High Temp & Extrusion)',reducers:'Ethyl Acetate, Toluene',base:'Vinyl base',desc:'Engineered for extreme conditions, perfect for high temperature and extrusion applications.'}, {cat:'Polyester printing ink',name:'Esterlam Liquid Printing Ink',method:'Rotogravure',app:'Reverse Printing',substrate:'Polyester (Untreated/Corona-treated/Chemically treated)',reducers:'MEK, Toluene',base:'Vinyl base',desc:'High-performance lamination ink for superior bonding on various polyester films.'}, {cat:'POLY printing inks',name:'Micro Gloss Ink',method:'Flexographic & Rotogravure',app:'Reverse Printing',substrate:'Treated PP & PE, Polyester, Treated OPP, Pearlescent BOPP',reducers:'(Flexo) IPA, (Gravure) Toluene',base:'Polyamide base',desc:'Achieve brilliant gloss and robust performance on a wide range of films.'}, {cat:'POLY printing inks',name:'Poplam Ink',method:'Rotogravure',app:'Reverse Printing',substrate:'BOPP Film, Polyester',reducers:'Ethyl Acetate, Toluene',base:'',desc:'Reliable lamination grade ink for excellent results on BOPP film and polyester.'}, {cat:'Paper printing ink',name:'Hydro-i-kraft',method:'Flexographic',app:'Surface Printing',substrate:'Paper (Coated & Uncoated), Kraft Paper, Non-woven',reducers:'Water, IPA',base:'Water base',desc:'Eco-friendly water-based solution for crisp surface printing on paper and non-woven materials.'}, {cat:'Paper printing ink',name:'Microlabel Ink',method:'Flexographic',app:'Surface Printing',substrate:'Paper (Coated & Uncoated)',reducers:'Water, IPA',base:'Water base',desc:'Specialised water-based ink for precise watermarking and high-quality label printing.'}, {cat:'Al foil printing ink',name:'Pharmatemp Ink',method:'Rotogravure',app:'Surface Printing',substrate:'Aluminium Foil, Paper (Coated & Uncoated) — Medical Purposes',reducers:'Ethyl Alcohol',base:'NC base',desc:'Heat-resistant ink designed for demanding medical packaging on foils and papers.'}, {cat:'Eco-friendly ink',name:'Gecko Ink',method:'Flexographic & Rotogravure',app:'Surface Printing',substrate:'PE, Coex OPP, BOPP, Paper, Metalized Film',reducers:'(Flexo) Ethanol, (Gravure) Ethyl Acetate',base:'NC base',desc:'Environmentally conscious ink offering superior surface print quality across multiple substrates.'}, {cat:'Specialised ink',name:'Fantasy Ink',method:'Flexographic & Rotogravure',app:'Surface & Reverse Printing',substrate:'BOPP Film, LD, HDPE, Polyester (Untreated)',reducers:'(Gravure) Ethyl Acetate & Toluene, (Flexo) IPA & NBA',base:'Polyamide base',desc:'Versatile ink for exceptional performance in both surface and reverse printing applications.'}, {cat:'Others — Poly Lamination Adhesives',name:'Micro-Flex',method:'',app:'',substrate:'',reducers:'',base:'Solvent base',desc:'High-performance solvent-based adhesives for robust and durable lamination.'}, {cat:'Others — Metallic Pastes',name:'Gold & Silver Pastes',method:'',app:'',substrate:'',reducers:'',base:'Solvent base',desc:'Premium solvent-based metallic pastes for striking visual effects and enhanced product appeal. Available in small packaging.'} ]; function InkCard({p}){ const [open,setOpen]=React.useState(false); return (
{e.stopPropagation();setOpen(o=>!o);}} style={{border:'1px solid var(--border-subtle)',borderRadius:'var(--radius-lg)',padding:open?20:'14px 20px',background:'#fff',cursor:'pointer'}}>
{p.cat}

{p.name}

{p.base&&{p.base}}
{open&&(<>

{p.desc}

{p.method&&(
Method{p.method} Application{p.app} Substrate{p.substrate} Reducers{p.reducers}
)} )}
); } function SpecTable({rows}){ const isMobile=window.useIsMobile(); return (
Product
pH
Viscosity (sec)
Solid %
{rows.map(([name,ph,visc,solid])=>(
{name}
{ph}
{visc}
{solid}
))}
); } function VerticalBanner({variant}){ const isMobile=window.useIsMobile(); const lastWord=variant==='paste'?'coated':'printed'; const caption=variant==='paste'?'Click to see inks':'Click to see pastes'; if(isMobile)return (
{caption}
); return (
{caption}
{['More','per','kg.','Less','per',lastWord,'metre.'].map((w,i)=>({w}))}
); } function MiniStat({label,value}){ return (
{label}
{value}
); } function MobilePasteSelector(){ const {Card}=window.PolychemDesignSystem_373bbb; const [brand,setBrand]=React.useState('flares'); const [pasteName,setPasteName]=React.useState('Milky White'); const rows=brand==='flares'?FLARES:SPARKS; const row=rows.find(r=>r[0]===pasteName)||rows[0]; return (
e.stopPropagation()}>
setBrand('flares')} style={{flex:1,border:brand==='flares'?'2px solid var(--accent-primary)':'1px solid var(--border-subtle)',borderRadius:'var(--radius-lg)',padding:14,background:'#fff',cursor:'pointer'}}>
FLARES
New, cost-conscious pigment paste range.
setBrand('sparks')} style={{flex:1,border:brand==='sparks'?'2px solid var(--accent-primary)':'1px solid var(--border-subtle)',borderRadius:'var(--radius-lg)',padding:14,background:'#fff',cursor:'pointer'}}>
SPARKS
Our top-most brand, trusted by thousands.
{rows.map(([name])=>(
setPasteName(name)} style={{display:'flex',alignItems:'center',gap:6,padding:'8px 12px',borderRadius:'var(--radius-pill)',border:pasteName===name?'2px solid var(--accent-primary)':'1px solid var(--border-subtle)',background:'#fff',fontSize:13,color:'var(--text-primary)',cursor:'pointer'}}> {name}
))}
{brand==='flares'?'FLARES':'SPARKS'} — {pasteName}
Brown — customizable
Matched to your sample, available on both brands.

More per kg. Less per coated area.

); } function Products(){ const {Tag,Card}=window.PolychemDesignSystem_373bbb; const isMobile=window.useIsMobile(); const isNarrow=window.useIsNarrowDesktop(); const [active,setActive]=React.useState(null); const pasteOn=active==='paste',inksOn=active==='inks'; const pasteStyle={flex:pasteOn?2.4:(inksOn?0.7:1),opacity:inksOn?0.4:1,transition:'flex .35s ease-out,opacity .35s ease-out',cursor:'pointer',minWidth:0}; const inksStyle={flex:inksOn?2.4:(pasteOn?0.7:1),opacity:pasteOn?0.4:1,transition:'flex .35s ease-out,opacity .35s ease-out',cursor:'pointer',minWidth:0}; return (
Our Range

Pigment pastes and printing inks, engineered for your process.

Select a product line to see the full technical specification.

setActive(pasteOn?null:'paste')}>
{!(!pasteOn&&inksOn)&&

Pigment Pastes

} {!pasteOn&&!inksOn&&

Two brands, one consistency standard — click to see specs.

} {!pasteOn&&inksOn&&} {pasteOn&&(isMobile?:
New brand

FLARES

Our newest pigment paste range. Same raw material. Same viscosity control. Formulated for the cost conscious customer.

SPARKS

Our top-most pigment paste brand, trusted by thousands of customers.

Brown — customizable

Manufactured to each customer's sample, available across both Sparks and Flares. Specification may vary as per your sample.

8.5min. 2560 ± 2%
)}
setActive(inksOn?null:'inks')}>
{!(!inksOn&&pasteOn)&&

Printing Inks

} {!inksOn&&!pasteOn&&

Flexo and gravure inks — click to see the range.

} {!inksOn&&pasteOn&&} {inksOn&&(

Distributed in partnership with hubergroup — a full range of gravure and flexographic inks for the tape and packaging industry.

{INKS.map(p=>())}

Printed onto

{INK_APPS.map(a=>({a}))}
)}
{!pasteOn&&!inksOn&&(
Cost in use

More per kg. Less per printed metre.

Our pastes carry a higher solids percentage than commodity alternatives, so a smaller dose provides more opacity and pigmentation per square-meter. Priced higher per kilogram, the cost per sqm coated or printed comes out lower — with fewer rejections from batch-to-batch drift.
Ask for a trial batch and run the dosage math yourself.

)}
); } window.Products=Products;