ALT CSS Source code example of relative color syntax.
It shows a modification of the CSS color "darkorchid" with an inverted lightness and some other alterations.
The relative color syntax allows you to tweak specific color components from a given color.
Source :
.example {
background: oklab(
from darkorchid
calc(1.0 - l)
calc(a * 0.8)
b
);
}
This is an awesome article.
I built a postcss plugin for automatically generating linear() easing functions, postcss-spring-easing npm.im/postcss-spring-easing
Nesting in CSS is available in Chrome and Safari 16.5 TP. That's a feature that I really can't wait for to officially land. Until then, we can use PostCSS to use it today.
15.6.0 is out! It adds 3 config options, adds 1 rule option, and fixes 5 bugs, including a regression of the `declaration-block-no-duplicate-properties` rule.
stylelint.io/changelog/#1560
The reason I like @PostCSS so much is that you can still build your custom css features while still writing the same syntax. Trying out a small PostCSS plugin in Reshaped to write responsive styles without copy pasting the code for each viewport size
PostCSS 8.4.22 was released.
@remcohaszing made a huge work with refactoring all type system to make it works node16 mode in TypesScript.
github.com/postcss/postcss/p…
Release’s alchemist by Pietro della Vecchia.
I subscribed for regular donations because I use postcss-preset-env as a CSS polyfill in every application.
They are like Babel but for CSS.
And I convinced my company to sponsor them as well.
We've setup GitHub Sponsoring for CSS Tools, giving you more options to support our work 🎉 github.com/sponsors/csstools
We greatly appreciate any and all contributions, including bug reports and feature requests 😊
Normally, I wouldn't mention donations on here, but this one's special. These folks at @css_tools_ create most of the CSS polyfills you see & use daily. Their work is essential to our online experiences. So if you can, pay attention & support them! 👩💻👨💻 #CSS#SupportDevelopers
We've setup GitHub Sponsoring for CSS Tools, giving you more options to support our work 🎉 github.com/sponsors/csstools
We greatly appreciate any and all contributions, including bug reports and feature requests 😊
If you are using CRA, Next.js, Rails’s webpacker, Nuxt, you are already using postcss-preset-env.
Fund them, because the income of your company really depends on their job.
github.com/sponsors/csstools
postcss-preset-env is that CSS polyfill tools, which everyone uses.
Check your lock file, your will find them (or some of their plugins).
Their work really affect of DX of CSS development.
Told to your company about sponsoring them. They deserve it a lot.
We've setup GitHub Sponsoring for CSS Tools, giving you more options to support our work 🎉 github.com/sponsors/csstools
We greatly appreciate any and all contributions, including bug reports and feature requests 😊
Do we have users with big PostCSS plugins written in TypeScript?
Can you check that this PR doesn’t break your types?
github.com/postcss/postcss/p…
Just replace in package.json: "postcss": "8.4.21" → "postcss": "remcohaszing/postcss#fix-types"
A color wheel is a nice way to see the effects : codepen.io/romainmenke/pen/g…
(screenshot : hsl on the left, oklch on the right)
ALT Two color wheels, one drawn with HSL in sRGB and one drawn with OKLCH.
The second color wheel is much more uniform in brightness and saturation compared to the first one.