Bluesky app fork with some witchin' additions 💫

Fix disabled primary button text color (#8796)

authored by

Eric Bailey and committed by
GitHub
88856b0f 08a83242

+7 -1
+7 -1
src/components/Button.tsx
··· 592 592 if (!disabled) { 593 593 baseStyles.push({color: t.palette.white}) 594 594 } else { 595 - baseStyles.push({color: t.palette.white}) 595 + baseStyles.push({ 596 + color: select(t.name, { 597 + light: t.palette.white, 598 + dim: t.atoms.text_inverted.color, 599 + dark: t.atoms.text_inverted.color, 600 + }), 601 + }) 596 602 } 597 603 } else if (color === 'secondary') { 598 604 if (!disabled) {