Skip to content

Commit

Permalink
[Bugfix] Midnight theme - Budget Name color, Mobile category color in…
Browse files Browse the repository at this point in the history
… account view (actualbudget#2422)

* budget name / mobile account category color

* note

* color of plus on account page
  • Loading branch information
shall0pass authored Mar 5, 2024
1 parent 637b7db commit 3a07ede
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function AccountList({
<Button
type="bare"
style={{
...noBackgroundColorStyle,
color: theme.mobileHeaderText,
margin: 10,
}}
activeStyle={noBackgroundColorStyle}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ const Transaction = memo(function Transaction({
marginTop: 1,
fontWeight: '400',
color: prettyCategory
? theme.tableTextSelected
? theme.tableText
: theme.menuItemTextSelected,
fontStyle:
specialCategory || !prettyCategory ? 'italic' : undefined,
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-client/src/style/themes/midnight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const buttonNormalBorder = colorPalette.gray300;
export const buttonNormalShadow = 'rgba(0, 0, 0, 0.4)';
export const buttonNormalSelectedText = colorPalette.white;
export const buttonNormalSelectedBackground = colorPalette.purple500;
export const buttonNormalDisabledText = colorPalette.gray500;
export const buttonNormalDisabledText = colorPalette.gray400;
export const buttonNormalDisabledBackground = colorPalette.gray700;
export const buttonNormalDisabledBorder = colorPalette.gray500;

Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/2422.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [shall0pass]
---

Fix colors for the budget name and category name in the accounts view on mobile.

0 comments on commit 3a07ede

Please sign in to comment.