Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style/colors #21

Merged
merged 3 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/channels/Channels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ type ChannelProps = {
};

const Container = tw.nav`
flex flex-col bg-gray-50 w-60 h-full
flex flex-col bg-gray-100 w-60 h-full
`;

const ChannelListContainer = tw.div`
Expand Down
4 changes: 3 additions & 1 deletion src/components/channels/UserPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function UserPanel() {
}

const Container = tw.section`
flex justify-between w-60 h-14 px-2 bg-gray-100
flex justify-between w-60 h-14 px-2 bg-gray-200/50
`;

const UserInfo = tw.div`
Expand All @@ -71,9 +71,11 @@ const Username = tw.span`
`;

const DisplayName = tw.span`
text-sm font-semibold
`;

const Tag = tw.span`
text-gray-600 text-xs font-medium
`;

const IconsPanel = tw.div`
Expand Down
2 changes: 1 addition & 1 deletion src/components/chat/TextArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ const Container = tw.form`
`;

const TextInput = tw.input`
bg-gray-100 rounded-md p-2.5 pl-4 w-full h-full text-gray-800 font-medium placeholder-gray-500
bg-gray-200/50 rounded-md p-2.5 pl-4 w-full h-full text-gray-800 font-medium placeholder-gray-500 text-gray-800
`;