Daily Shaarli

All links of one day in a single page.

September 11, 2022

Download the Atkinson Hyperlegible Font | Braille Institute

A font meant for readability by the Braille Institute

Stylify Me - Online Style Guide Generator

Retrieve the background and text colors of a page, its typography (Font, Style, Size, Leading, Colour), and image dimensions. The idea is great 👍‍

This tool can be improved with more data about the page #idea #project

Free SVG generators, color tools & web design tools
CSS Stats

Provide stats about the CSS on a page 👍

Pick the first and last items of an array - Front-end Tips

const { length, 0: first, [length - 1]: last } = arr;

Vanilla documentation

A simple, extensible CSS framework

Vanilla Framework aims for Level AA conformance with the Web Content Accessibility Guidelines (WCAG) 2.1.

Create a multiline strings - Front-end Tips

I was also struggling with it:
const multilineStrings = 'This is a\n' + 'multiline\n' + 'strings';
or
const multilineStrings = ['This is a', 'multiline', 'strings'].join('\n');
or
``const multilineStrings =This is a
multiline
strings`;