Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-y committed Jun 23, 2022
1 parent 142500f commit fbb6599
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/Dark-Theme/Themes.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const lightTheme = {
colorAuctionBackground: 'rgb(245, 235, 235)',
colorWhite: 'black',
colorAuctionInput: '#ccc',
colorStockLablel: '#464646',
colorStockLabel: '#464646',
colorChartBackground: 'white',
colorChartBorder: 'white',
colorStockText: '#540075',
Expand All @@ -39,7 +39,7 @@ export const darkTheme = {
colorAuctionBackground: '#2e1717',
colorWhite: '#fff',
colorAuctionInput: 'white',
colorStockLablel: 'var(--colorWhite)',
colorStockLabel: 'var(--colorWhite)',
colorChartBackground: '#241212',
colorChartBorder: '#34383a',
colorStockText: '#cf56ff',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
.label {
font-weight: bold;
margin: 0.5rem 0;
color: var(--colorStockLablel);
color: var(--colorStockLabel);
}

.select {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
.label {
font-weight: bold;
margin: 0.5rem 0;
color: var(--colorStockLablel);
color: var(--colorStockLabel);
}

.select {
Expand Down

0 comments on commit fbb6599

Please sign in to comment.