File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed
scaffold-ui/src/partials/w3m-input-address
ui/src/composites/wui-input-amount Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments