Skip to content
Snippets Groups Projects
Unverified Commit 991fc4f4 authored by shall0pass's avatar shall0pass Committed by GitHub
Browse files

[Theme] Midnight updates (#2394)

* color updates

* release note
parent 4a8c692d
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,10 @@ export const PayeeTableRow = memo( ...@@ -129,7 +129,10 @@ export const PayeeTableRow = memo(
<InputCell <InputCell
value={(payee.transfer_acct ? 'Transfer: ' : '') + payee.name} value={(payee.transfer_acct ? 'Transfer: ' : '') + payee.name}
valueStyle={ valueStyle={
!selected && payee.transfer_acct && { color: theme.pageTextSubdued } (!selected &&
payee.transfer_acct && { color: theme.pageTextSubdued }) ||
(!selected && !payee.transfer_acct && { color: theme.tableText }) ||
(selected && { color: theme.tableTextSelected })
} }
exposed={focusedField === 'name'} exposed={focusedField === 'name'}
width="flex" width="flex"
......
...@@ -24,17 +24,17 @@ export const tableRowBackgroundHover = colorPalette.gray500; ...@@ -24,17 +24,17 @@ export const tableRowBackgroundHover = colorPalette.gray500;
export const tableText = colorPalette.gray150; export const tableText = colorPalette.gray150;
export const tableTextLight = tableText; export const tableTextLight = tableText;
export const tableTextSubdued = colorPalette.gray500; export const tableTextSubdued = colorPalette.gray500;
export const tableTextSelected = colorPalette.gray150; export const tableTextSelected = colorPalette.gray800;
export const tableTextHover = colorPalette.gray400; export const tableTextHover = colorPalette.gray400;
export const tableTextInactive = colorPalette.gray400; export const tableTextInactive = colorPalette.gray400;
export const tableHeaderText = colorPalette.gray200; export const tableHeaderText = colorPalette.gray200;
export const tableHeaderBackground = colorPalette.gray900; export const tableHeaderBackground = colorPalette.gray900;
export const tableBorder = colorPalette.gray500; export const tableBorder = colorPalette.gray600;
export const tableBorderSelected = colorPalette.purple400; export const tableBorderSelected = colorPalette.purple400;
export const tableBorderHover = colorPalette.purple300; export const tableBorderHover = colorPalette.purple300;
export const tableBorderSeparator = colorPalette.gray400; export const tableBorderSeparator = colorPalette.gray400;
export const tableRowBackgroundHighlight = colorPalette.purple150; export const tableRowBackgroundHighlight = colorPalette.purple150;
export const tableRowBackgroundHighlightText = colorPalette.gray600; export const tableRowBackgroundHighlightText = colorPalette.gray800;
export const tableRowHeaderBackground = colorPalette.gray700; export const tableRowHeaderBackground = colorPalette.gray700;
export const tableRowHeaderText = colorPalette.gray150; export const tableRowHeaderText = colorPalette.gray150;
...@@ -63,7 +63,7 @@ export const menuAutoCompleteTextHeader = colorPalette.purple200; ...@@ -63,7 +63,7 @@ export const menuAutoCompleteTextHeader = colorPalette.purple200;
export const modalBackground = colorPalette.gray700; export const modalBackground = colorPalette.gray700;
export const modalBorder = colorPalette.gray200; export const modalBorder = colorPalette.gray200;
export const mobileHeaderBackground = colorPalette.gray800; export const mobileHeaderBackground = colorPalette.gray900;
export const mobileHeaderText = colorPalette.purple200; export const mobileHeaderText = colorPalette.purple200;
export const mobileHeaderTextSubdued = colorPalette.gray200; export const mobileHeaderTextSubdued = colorPalette.gray200;
export const mobileHeaderTextHover = 'rgba(200, 200, 200, .15)'; export const mobileHeaderTextHover = 'rgba(200, 200, 200, .15)';
...@@ -98,7 +98,7 @@ export const buttonMenuSelectedBorder = buttonMenuSelectedBackground; ...@@ -98,7 +98,7 @@ export const buttonMenuSelectedBorder = buttonMenuSelectedBackground;
export const buttonPrimaryText = colorPalette.white; export const buttonPrimaryText = colorPalette.white;
export const buttonPrimaryTextHover = buttonPrimaryText; export const buttonPrimaryTextHover = buttonPrimaryText;
export const buttonPrimaryBackground = colorPalette.gray400; export const buttonPrimaryBackground = colorPalette.purple300;
export const buttonPrimaryBackgroundHover = buttonPrimaryBackground; export const buttonPrimaryBackgroundHover = buttonPrimaryBackground;
export const buttonPrimaryBorder = buttonPrimaryBackground; export const buttonPrimaryBorder = buttonPrimaryBackground;
export const buttonPrimaryShadow = 'rgba(0, 0, 0, 0.6)'; export const buttonPrimaryShadow = 'rgba(0, 0, 0, 0.6)';
...@@ -176,7 +176,7 @@ export const checkboxBackgroundSelected = colorPalette.purple300; ...@@ -176,7 +176,7 @@ export const checkboxBackgroundSelected = colorPalette.purple300;
export const checkboxBorderSelected = colorPalette.purple300; export const checkboxBorderSelected = colorPalette.purple300;
export const checkboxShadowSelected = colorPalette.purple500; export const checkboxShadowSelected = colorPalette.purple500;
export const pillBackground = colorPalette.gray700; export const pillBackground = colorPalette.gray500;
export const pillBackgroundLight = colorPalette.gray900; export const pillBackgroundLight = colorPalette.gray900;
export const pillText = colorPalette.gray200; export const pillText = colorPalette.gray200;
export const pillTextHighlighted = colorPalette.purple200; export const pillTextHighlighted = colorPalette.purple200;
......
---
category: Maintenance
authors: [shall0pass]
---
Midnight theme updates, round 2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment