Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
await page.setRequestInterception(true); | |
page.on('request', async (req) => { | |
if (req.resourceType() !== 'image') { | |
return req.continue(); | |
} | |
try { | |
const res = await axios.get(req.url(), { responseType: 'arraybuffer' }); | |
const jpeg = await sharp(res.data).webp().toBuffer(); | |
req.respond({ body: jpeg }); | |
} catch(e) { |
Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
// | |
// UILabel+BoldTag.h | |
// | |
// Created by Guvener Gokce on 8/2/13. | |
// Copyright (c) 2013 Gladly Interactive All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface UILabel (BoldTag) |