I’ve developed an unusual approach to styling in my React code. It’s sort of a functional, atomic css approach. Other methods I’ve used are BEM + separate css files, styled components, and tailwind. By far this is the one that lets me move fastest on my personal projects (I haven’t yet subjected anybody at work to dealing with it). Without further ado. Element Styling constbuttonStyles=s(caps, px(s6), py(s5), clickable); constactiveStyles=s(buttonStyles, bg("green"), fg(light0)); cons...