Skip to content

Commit b2939cc

Browse files
committed
Colors changed
1 parent eb44289 commit b2939cc

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

TAQ/components/QueueEntry.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,13 @@ export default QueueEntry
6262
const styles = StyleSheet.create({
6363
container: {
6464
padding: 10,
65-
borderWidth: 1,
65+
// borderWidth: 1,
6666
borderRadius: 10,
6767
justifyContent: "space-between",
6868
flexDirection: "row",
69-
borderColor: "white",
69+
// borderColor: "white",
70+
backgroundColor: Colors.Tertiary,
71+
7072
},
7173
textContainer: {
7274
gap: 5,

TAQ/config/Colors.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
export const Colors = {
2-
Background: "#1e1e2e",
2+
Background: "#11111b",
33
Primary: "#cdd6f4",
44
Secondary: "#a6adc8",
5+
Tertiary: "#1e1e2e",
56
Red: "#EF4444",
67
Green: "#a6e3a1",
78
Blue: "#89b4fa",

TAQ/screens/ClassQueue.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const ClassQueue = () => {
2727
<QueueEntry UBIT={"Thirumal"} Topic={"WA4"} Question={"How do I append in a list without making a list?"}/>
2828
<QueueEntry UBIT={"Thirumal"} Topic={"WA4"} Question={"How do I append in a list without making a list?"}/>
2929
<QueueEntry UBIT={"Thirumal"} Topic={"WA4"} Question={"How do I append in a list without making a list?"}/>
30-
<QueueEntry UBIT={"Thirumal"} Topic={"WA4"} Question={"How do I append in a list without making a list?"}/>
30+
<QueueEntry UBIT={"Thirumal"} Topic={"WA4"} Question={"How do I append in a list without making a list?How do I append in a list without making a list?How do I append in a list without making a list?"}/>
3131
<View style={styles.bottomSpacer} />
3232
</View>
3333
</ScrollView>
@@ -45,7 +45,7 @@ export default ClassQueue
4545
const styles = StyleSheet.create({
4646
safeArea: {
4747
flex: 1,
48-
backgroundColor: Colors.Background
48+
backgroundColor: Colors.Background,
4949
},
5050
container: {
5151
padding: 10,

0 commit comments

Comments
 (0)