@dustin-riley/design 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/core.css +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dustin-riley/design",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Dustin Riley design system — warm mid-century modern tokens and primitives.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/core.css CHANGED
@@ -281,10 +281,11 @@ h6,
281
281
  font-weight: 500;
282
282
  }
283
283
 
284
- :where(a) {
285
- color: var(--ds-link);
286
- transition: color var(--ds-duration-fast) var(--ds-ease-standard);
287
- }
284
+ /* No global `a` rule. <a> is both chrome (nav/brand/footer) and content,
285
+ so any system-wide color/decoration is wrong somewhere. Links inherit
286
+ text color via Tailwind Preflight; link color/underline is an
287
+ intentional component or prose decision (article-body links, prose
288
+ links, active nav, etc. opt into var(--ds-link)). */
288
289
 
289
290
  :where(code, pre, kbd, samp) {
290
291
  font-family: var(--ds-font-mono);