Skip to content

Commit dfb0893

Browse files
authored
chore: switch send input color to primary (#5451)
1 parent 17b1a2c commit dfb0893

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

.changeset/clever-walls-rule.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
'@reown/appkit-scaffold-ui': patch
3+
'@reown/appkit-ui': patch
4+
'pay-test-exchange': patch
5+
'@reown/appkit-adapter-bitcoin': patch
6+
'@reown/appkit-adapter-ethers': patch
7+
'@reown/appkit-adapter-ethers5': patch
8+
'@reown/appkit-adapter-solana': patch
9+
'@reown/appkit-adapter-ton': patch
10+
'@reown/appkit-adapter-wagmi': patch
11+
'@reown/appkit': patch
12+
'@reown/appkit-utils': patch
13+
'@reown/appkit-cdn': patch
14+
'@reown/appkit-cli': patch
15+
'@reown/appkit-codemod': patch
16+
'@reown/appkit-common': patch
17+
'@reown/appkit-controllers': patch
18+
'@reown/appkit-core': patch
19+
'@reown/appkit-experimental': patch
20+
'@reown/appkit-pay': patch
21+
'@reown/appkit-polyfills': patch
22+
'@reown/appkit-siwe': patch
23+
'@reown/appkit-siwx': patch
24+
'@reown/appkit-testing': patch
25+
'@reown/appkit-universal-connector': patch
26+
'@reown/appkit-wallet': patch
27+
'@reown/appkit-wallet-button': patch
28+
---
29+
30+
Fixed text color inconsistency in send amount input fields to properly apply theme primary text color

packages/scaffold-ui/src/partials/w3m-input-address/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default css`
4848
font-weight: ${({ fontWeight }) => fontWeight.regular};
4949
line-height: ${({ typography }) => typography['lg-regular'].lineHeight};
5050
letter-spacing: ${({ typography }) => typography['lg-regular'].letterSpacing};
51-
color: ${({ tokens }) => tokens.theme.textSecondary};
51+
color: ${({ tokens }) => tokens.theme.textPrimary};
5252
caret-color: ${({ tokens }) => tokens.core.backgroundAccentPrimary};
5353
box-sizing: border-box;
5454
-webkit-appearance: none;

packages/ui/src/composites/wui-input-amount/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default css`
1111
}
1212
1313
:host([data-error='false']) > input {
14-
color: ${({ tokens }) => tokens.theme.textSecondary};
14+
color: ${({ tokens }) => tokens.theme.textPrimary};
1515
}
1616
1717
input {

0 commit comments

Comments
 (0)