CSS has a number of functions that can be used to set, translate, and manipulate colors. Learn what they are and how they are used with a bunch of examples to get you started.| CSS-Tricks
If you are a front-end or a fullstack developer, you maybe already imported CSS files from a Javascript or a Typescript file. For instance: import styles from "./styles.css" A few months ago it would not have been possible out of the shelf. Indeed you would need a bundler (such as WebPack, Rollup,…) to “inline” the CSS file as a string in your Javascript file. Nowadays it’s possible thanks to the “CSS Modules” (to not confuse with the homonym open-source project).| Raphael Medaer’s blog
Everything important and useful to know about CSS Custom Properties. Like that they are often referred to as "CSS Variables" but that's not their real name.| CSS-Tricks
The transform property allows you to visually manipulate an element by skewing, rotating, translating, or scaling:| CSS-Tricks
The perspective CSS property gives an element a 3D-space by affecting the distance between the Z plane and the user.| CSS-Tricks