Skip to content

Commit d743dc5

Browse files
committed
Handbook Table Theme Fix
Signed-off-by: Namanv0509 <[email protected]>
1 parent 813eec4 commit d743dc5

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/sections/Community/Handbook/Handbook.style.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export const HandbookWrapper = styled.div`
162162
}
163163
164164
td, th {
165-
border: 0.05rem solid ${(props) => props.theme.primaryLightColor};
165+
border: 0.05rem solid ${(props) => props.theme.primaryTestLightColor};
166166
text-align: left;
167167
padding: 0.5rem;
168168
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
@@ -180,7 +180,7 @@ export const HandbookWrapper = styled.div`
180180
}
181181
182182
tbody:nth-child(even) {
183-
background-color: ${(props) => props.theme.secondaryLightColorTwo};
183+
background-color: ${(props) => props.theme.secondaryTestLightColorTwo};
184184
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
185185
}
186186

src/theme/app/themeStyles.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const lighttheme = {
1515

1616
// silver chalice (light gray)
1717
primaryLightColor: "#b3b3b3",
18+
primaryTestLightColor: "#2C2C2C",
1819

1920
// keppel (dark green)
2021
primaryLightColorTwo: "#00d3a9",
@@ -24,6 +25,7 @@ const lighttheme = {
2425
secondaryColor: "#00b39f",
2526
caribbeanGreenColor: "#00d3a9",
2627
secondaryLightColorTwo: "#F3FFFD",
28+
secondaryTestLightColorTwo: "rgba(0,179,159, .4)",
2729

2830
// lighter gray
2931
secondaryLightColor: "#FAFAFA",
@@ -248,7 +250,7 @@ export const darktheme = {
248250

249251
// silver chalice (light gray)
250252
primaryLightColor: "#2C2C2C",
251-
253+
primaryTestLightColor: "#2C2C2C",
252254
// keppel (dark green)
253255
primaryLightColorTwo: "#2C2C2C",
254256
keppelColor: "#00d3a9",
@@ -257,7 +259,7 @@ export const darktheme = {
257259
secondaryColor: "#00b39f",
258260
caribbeanGreenColor: "#00d3a9",
259261
secondaryLightColorTwo: "rgba(0,179,159, .4)",
260-
262+
secondaryTestLightColorTwo: "rgba(0,179,159, .4)",
261263
// lighter gray
262264
secondaryLightColor: "#000000",
263265

0 commit comments

Comments
 (0)