Skip to content

Commit 4285f92

Browse files
committed
Refine text opacity in keywords hint and remove redundant background color in message header component.
1 parent 37c1581 commit 4285f92

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

web/components/messaging/send-message-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export const SendMessageButton = (props: {
196196
<>
197197
{!!profile.keywords?.length && (
198198
<div className={'w-full border border-canvas-100 rounded-xl p-2'}>
199-
<p className={'text-ink-1000/55 mb-2 text-xs'}>
199+
<p className={'text-ink-1000/75 mb-2 text-xs'}>
200200
{t(
201201
'send_message.keywords_hint',
202202
`Insert some of {name} topics in your message`,

web/pages/messages/[channelId].tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export const PrivateChat = (props: {
253253

254254
return (
255255
<Col className="w-full">
256-
<Row className={'border-ink-200 bg-canvas-50 h-14 items-center gap-1 border-b rounded-xl'}>
256+
<Row className={'border-ink-200 h-14 items-center gap-1 border-b rounded-xl'}>
257257
<BackButton className="self-stretch" />
258258
{members && members.length > 0 ? (
259259
<MultipleOrSingleAvatars

web/styles/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@
244244
/*--color-ink-50: 17 17 17; !* #111111 *!*/
245245
/*--color-ink-0: 0 0 0; !* black *!*/
246246

247-
--color-canvas-25: 0 0 0;
248-
--color-canvas-0: 20 20 20;
247+
--color-canvas-0: 0 0 0;
248+
--color-canvas-25: 20 20 20;
249249
--color-canvas-50: 20 20 20;
250250
--color-canvas-100: 40 40 40;
251251
--color-canvas-200: 60 60 60;

0 commit comments

Comments
 (0)