Skip to content

Commit 3193553

Browse files
committed
Change theme color to pink
1 parent f68a1bc commit 3193553

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

‎client/src/assets/illustration.svg

Lines changed: 1 addition & 1 deletion
Loading

‎client/src/assets/logo.png

-7.45 KB
Loading

‎client/src/components/GitHubCorner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function GitHubCorner() {
2020
width="150"
2121
height="100"
2222
viewBox="0 0 250 250"
23-
className="absolute right-0 top-0 z-10 border-none bg-primary text-gray-900 dark:text-gray-100"
23+
className="absolute right-0 top-0 z-10 border-none bg-pink-500 text-gray-900 dark:text-gray-100"
2424
aria-hidden="true"
2525
style={{
2626
color: "#151513",

‎client/src/components/chats/ChatInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function ChatInput() {
3636
return (
3737
<form
3838
onSubmit={handleSendMessage}
39-
className="flex justify-between rounded-md border border-primary"
39+
className="flex justify-between rounded-md border border-pink-500"
4040
>
4141
<input
4242
type="text"
@@ -45,7 +45,7 @@ function ChatInput() {
4545
ref={inputRef}
4646
/>
4747
<button
48-
className="flex items-center justify-center rounded-r-md bg-primary p-2 text-black"
48+
className="flex items-center justify-center rounded-r-md bg-pink-500 p-2 text-black"
4949
type="submit"
5050
>
5151
<LuSendHorizonal size={24} />

‎client/src/components/chats/ChatList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function ChatList() {
5252
}
5353
>
5454
<div className="flex justify-between">
55-
<span className="text-xs text-primary">
55+
<span className="text-xs text-pink-500">
5656
{message.username}
5757
</span>
5858
<span className="text-xs text-white">

‎client/src/components/common/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function Footer() {
55
Build with ❤️ by{" "}
66
<a
77
href="https://github.com/parthhalwane"
8-
className="text-primary underline underline-offset-1"
8+
className="text-pink-500 underline underline-offset-1"
99
>
1010
parthhalwane
1111
</a>

‎client/src/components/connection/ConnectionStatusPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ const ConnectionError = () => {
2525
</span>
2626
<div className="flex flex-wrap justify-center gap-4">
2727
<button
28-
className="mr-4 rounded-md bg-primary px-8 py-2 font-bold text-black"
28+
className="mr-4 rounded-md bg-pink-500 px-8 py-2 font-bold text-black"
2929
onClick={reloadPage}
3030
>
3131
Try Again
3232
</button>
3333
<button
34-
className="rounded-md bg-primary px-8 py-2 font-bold text-black"
34+
className="rounded-md bg-pink-500 px-8 py-2 font-bold text-black"
3535
onClick={gotoHomePage}
3636
>
3737
Go to HomePage

‎client/src/components/forms/FormComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const FormComponent = () => {
111111
/>
112112
<button
113113
type="submit"
114-
className="mt-2 w-full rounded-md bg-primary px-8 py-3 text-lg font-semibold text-black"
114+
className="mt-2 w-full rounded-md bg-pink-500 px-8 py-3 text-lg font-semibold text-black"
115115
>
116116
Join
117117
</button>

‎client/src/components/sidebar/sidebar-views/CopilotView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function CopilotView() {
7575
onChange={(e) => setInput(e.target.value)}
7676
/>
7777
<button
78-
className="mt-1 flex w-full justify-center rounded-md bg-primary p-2 font-bold text-black outline-none disabled:cursor-not-allowed disabled:opacity-50"
78+
className="mt-1 flex w-full justify-center rounded-md bg-pink-500 p-2 font-bold text-black outline-none disabled:cursor-not-allowed disabled:opacity-50"
7979
onClick={generateCode}
8080
disabled={isRunning}
8181
>

‎client/src/components/sidebar/sidebar-views/RunView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function RunView() {
6767
onChange={(e) => setInput(e.target.value)}
6868
/>
6969
<button
70-
className="flex w-full justify-center rounded-md bg-primary p-2 font-bold text-black outline-none disabled:cursor-not-allowed disabled:opacity-50"
70+
className="flex w-full justify-center rounded-md bg-pink-500 p-2 font-bold text-black outline-none disabled:cursor-not-allowed disabled:opacity-50"
7171
onClick={runCode}
7272
disabled={isRunning}
7373
>

0 commit comments

Comments
 (0)