Search
Game Devs Of Color Expo Is Full Of Great Free Steam Demos, Melanin
23.9.2021
The Game Devs of Color Expo, an event showcasing the diverse talent in games while providing a platform for creators of color, is officially underway. The 6th annual festival runs from September 23-27 and gives way to a host of happenings, from panels and talks to demos and trailers. There’s four...
The Whiteness of Skater XL’s Mods Is A Major Bummer
22.9.2021
Skater XL, the skateboarding simulator developed by Easy Day Studios, is one of two more recent genre entries that attempts to capture the zeitgeist of EA’s Skate. The game plops you in a myriad of selectable maps, each replete with various obstacles (such as benches and rails) to trick over,...
“Just in Time” CSS
10.9.2021
I believe acss.io is the first usage of “Atomic CSS” where the point of it is to be a compiler. You write CSS like this:
<div class="C(#fff) P(20px)"text
</div
And it will generate CSS like:
.C\(\#333\) {
color: #333;
…
The post “Just in Time” CSS appeared...
EyeDropper API Dropped
10.9.2021
I had no idea this was coming but it’s pretty neat! Chrome has shipped the EyeDropper API in v95 (Canary, as I write).
???? Loving the new `EyeDropper` Web API:
“`jsawait new EyeDropper().open();// Returns the picked color, e.g.,
…
The post EyeDropper API Dropped appeared...
The Big Gotcha With Custom Properties
19.8.2021
I’ve seen this confuse more than a handful of people recently, including myself, so I’m making sure it’s written down.
Let’s chuck a couple of custom properties into CSS:
html {
--color-1: red;
--color-2: blue;
}
Let’s use them right …
The post The...
Collective #675
19.8.2021
CSS accent-color * Shared Element Transition API * Breaking the web forward * MIDIVal
The post Collective #675 appeared first on Codrops
Wanna see a whiter white?
11.8.2021
Heck of a CSS trick here from Dongsung Kim.
There are hidden HDR videos playing at the corners of this page. When a HDR-capable browser encounters one, it switches to HDR mode. For some reason, CSS backdrop-filter + brightness >100%
…
The post Wanna see a whiter white? appeared first...
Safari 15 Opinions
28.7.2021
It was interesting that when Safari 15 was dropping at this last WWDC, in my circles at least, I mostly heard enthusiasm. Like the colors-in-the-browser-controls stuff was a neat trick and fun to play with. And there were other …
The post Safari 15 Opinions appeared first on CSS-Tricks....
Crypto Exchange BitYard Undertakes Brand Refresh With New Logo and Slogan ‘Grow Your Future in the Yard’
22.7.2021
PRESS RELEASE. BitYard, the world’s leading cryptocurrency derivative exchange based in Singapore, announced a refreshed corporate visual identity: a new logo highlighting ‘B’ & ‘Y’, a fresh slogan, and a vivid color palette. While ‘B’ conveys...
Spike Lee Directs ‘Old Money Is Out, New Money Is In’ Commercial for Cryptocurrency ATMs
16.7.2021
Award-winning director Spike Lee has teamed up with bitcoin ATM operator Coin Cloud on a multimillion-dollar crypto campaign. “Digital currency is viable for not just people of color, but anybody who has been historically excluded from traditional financial systems,” said the famed...
Meta Theme Color and Trickery
13.7.2021
Starting with Version 15, Safari supports the theme-color <meta> tag both on macOS and iOS. That’s exciting news because now the first desktop browser supports this <meta> tag and it also supports the media attribute and the prefers-color-scheme media feature.…
The post Meta...
System *Things
29.6.2021
I think we’re all largely aware of named colors in CSS:
color: OldLace;
background: rebeccapurple;
I guess you’d just call those “named colors” in CSS.
Those aren’t the only kind of named colors there are though. Some of them …
The post System *Things appeared...
Safari 15: New UI, Theme Colors, and… a CSS-Tricks Cameo!
11.6.2021
There’s a 33-minute video (and resources) over on apple.com covering the upcoming Safari changes we saw in the WWDC keynote this year in much more detail. Look who’s got a little cameo in there:
Perhaps the most noticeable thing there …
The post Safari 15: New UI, Theme Colors...
The Nintendo Download: Color Dots Connect Color Dots
27.5.2021
There are 39 games coming to the Nintendo Switch eShop this week. One of them is called Color Dots Connect. Another is called Connect Color Dots. They are two different versions of the same sort of puzzle game. Nintendo really needs to rein this nonsense in. Read more
Exploring color-contrast() for the first time.
26.4.2021
I saw in the release notes for Safari Technical Preview 122 that it has support for a color-contrast() function in CSS. Safari is first out of the gate here. As far as I know, no other browser supports this yet …
The post Exploring color-contrast() for the first time. appeared first...
Fan-Made Portal Game Adds Third Color, Which Allows Time Travel
20.4.2021
Portal 2 was challenging enough when all you had to worry about was space, but now we have to think about time as well?Read more
Not Your Typical Horizontal Rules
16.4.2021
The default browser style for <hr> is so weird. It’s basically:
border-style: inset;
border-width: 1px;
The default border-color is black, but the border doesn’t actually look black, because the inset border “adds a split tone to the line …
The post Not Your Typical...
Flash of inAccurate coloR Theme (FART)
16.4.2021
There is a lot to think about when implementing a dark mode theme on a website. We have a huge guide on it. There are some very clever quick wins out there, but there are also some quite tricky things …
The post Flash of inAccurate coloR Theme (FART) appeared first on CSS-Tricks.
You...
Why You Should Rewatch Your Favorite Movies in Black and White
2.4.2021
Cinema snobs the world over scoffed when polarizing director Zack Snyder announced that his indulgent superhero opus Zack Snyder’s Justice League would be re-rereleased in a desaturated black and white version he’d dubbed Zack Snyder’s Justice League: Justice Is Gray. I was among them, but mostly...
Want to Write a Hover Effect With Inline CSS? Use CSS Variables.
26.3.2021
The other day I was working on a blog where each post has a custom color attached to it for a little dose of personality. The author gets to pick that color in the CMS when they’re writing the post. …
The post Want to Write a Hover Effect With Inline CSS? Use CSS Variables. appeared first...