Skip to content

Commit

Permalink
Fix text colors to work with light and dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
pathofleastresistor committed Dec 9, 2023
1 parent 2978eee commit 1a00978
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions activity-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class ActivityManagerCard extends LitElement{
--am-item-due-soon-background-color: #00000020;
--am-item-primary-font-size: 14px;
--am-item-secondary-font-size: 12px;
--mdc-theme-primary: var(--am-item-due-soon-primary-color);
--mdc-theme-primary: var(--primary-text-color);
}
.content {
padding: 0 12px 12px 12px;
Expand Down Expand Up @@ -316,8 +316,8 @@ class ActivityManagerCard extends LitElement{
display: grid;
grid-template-columns: auto min-content;
padding: 12px;
color: var(--am-item-primary-color, #ffffff);
background-color: var(--am-item-background-color, #000000ff);
#color: var(--am-item-primary-color, #ffffff);
#background-color: var(--am-item-background-color, #000000ff);
border-radius: 8px;
}
.am-item-primary {
Expand Down

0 comments on commit 1a00978

Please sign in to comment.