File tree Expand file tree Collapse file tree 14 files changed +15
-15
lines changed Expand file tree Collapse file tree 14 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ function GitHubCorner() {
20
20
width = "150"
21
21
height = "100"
22
22
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"
24
24
aria-hidden = "true"
25
25
style = { {
26
26
color : "#151513" ,
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ function ChatInput() {
36
36
return (
37
37
< form
38
38
onSubmit = { handleSendMessage }
39
- className = "flex justify-between rounded-md border border-primary "
39
+ className = "flex justify-between rounded-md border border-pink-500 "
40
40
>
41
41
< input
42
42
type = "text"
@@ -45,7 +45,7 @@ function ChatInput() {
45
45
ref = { inputRef }
46
46
/>
47
47
< 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"
49
49
type = "submit"
50
50
>
51
51
< LuSendHorizonal size = { 24 } />
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ function ChatList() {
52
52
}
53
53
>
54
54
< div className = "flex justify-between" >
55
- < span className = "text-xs text-primary " >
55
+ < span className = "text-xs text-pink-500 " >
56
56
{ message . username }
57
57
</ span >
58
58
< span className = "text-xs text-white" >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ function Footer() {
5
5
Build with ❤️ by{ " " }
6
6
< a
7
7
href = "https://github.com/parthhalwane"
8
- className = "text-primary underline underline-offset-1"
8
+ className = "text-pink-500 underline underline-offset-1"
9
9
>
10
10
parthhalwane
11
11
</ a >
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ const ConnectionError = () => {
25
25
</ span >
26
26
< div className = "flex flex-wrap justify-center gap-4" >
27
27
< 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"
29
29
onClick = { reloadPage }
30
30
>
31
31
Try Again
32
32
</ button >
33
33
< 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"
35
35
onClick = { gotoHomePage }
36
36
>
37
37
Go to HomePage
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ const FormComponent = () => {
111
111
/>
112
112
< button
113
113
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"
115
115
>
116
116
Join
117
117
</ button >
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ function CopilotView() {
75
75
onChange = { ( e ) => setInput ( e . target . value ) }
76
76
/>
77
77
< 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"
79
79
onClick = { generateCode }
80
80
disabled = { isRunning }
81
81
>
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ function RunView() {
67
67
onChange = { ( e ) => setInput ( e . target . value ) }
68
68
/>
69
69
< 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"
71
71
onClick = { runCode }
72
72
disabled = { isRunning }
73
73
>
You can’t perform that action at this time.
0 commit comments