Microblog posts are just quick notes, mostly for myself
They are deliberately unpolished, so that I allow myself to avoid the perfectionist trap. Keep that in mind.
Quick tips for using shadcn/ui
- Avoid referring to colours directly. Create
bg-success
instead ofbg-green-500
. - Use CSS variables for design tokens. Create
--color-success
instead of#22c55e
. - Use shadcn/ui's semantic classnames. Prefer
bg-primary
overbg-gray-500
. - Don't override the 'ui' folder. Create wrapper components instead.