Skip to content

Commit

Permalink
Remove Static Colors (#1875)
Browse files Browse the repository at this point in the history
* Color Changes

* notes
  • Loading branch information
carkom authored Nov 9, 2023
1 parent 3004f33 commit 184b302
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,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
6 changes: 6 additions & 0 deletions upcoming-release-notes/1875.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [carkom]
---

Removing the last of the static colors and replacing with theme colors.

0 comments on commit 184b302

Please sign in to comment.