Skip to content

Commit

Permalink
Color Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Nov 8, 2023
1 parent a15f80e commit cd1250f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ const BudgetCategories = memo(
<View
style={
!dragState && {
':hover': { backgroundColor: '#fcfcfc' },
':hover': { backgroundColor: theme.tableBackground },
}
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function SidebarCategory({
// The zIndex here forces the the view on top of a row below
// it that may be "collapsed" and show a border on top
...(dragPreview && {
backgroundColor: 'white',
backgroundColor: theme.tableBackground,
zIndex: 10000,
borderRadius: 6,
overflow: 'hidden',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export const CategoryMonth = memo(function CategoryMonth({
onEdit(null);
},
style: {
backgroundColor: 'white',
backgroundColor: theme.tableBackground,
},
}}
onSave={amount => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export const ExpenseCategoryMonth = memo(function ExpenseCategoryMonth({
borderRadius: 4,
':hover': {
boxShadow: 'inset 0 0 0 1px ' + theme.mobileAccountShadow,
backgroundColor: 'white',
backgroundColor: theme.tableBackground,
},
}}
valueProps={{
Expand All @@ -283,7 +283,7 @@ export const ExpenseCategoryMonth = memo(function ExpenseCategoryMonth({
onEdit(null);
},
style: {
backgroundColor: 'white',
backgroundColor: theme.tableBackground,
},
}}
onSave={amount => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ const Transaction = memo(function Transaction(props) {
valueStyle={valueStyle}
style={{
fontStyle: 'italic',
color: '#c0c0c0',
color: theme.pageTextSubdued,
fontWeight: 300,
}}
inputProps={{
Expand Down

0 comments on commit cd1250f

Please sign in to comment.