Skip to content

Commit

Permalink
Adds --app-header-(background|text)-color
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Jan 1, 2020
1 parent a211c6e commit c98bebf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/style/ha-style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export const _haStyle = css`
app-header,
app-toolbar {
background-color: var(--primary-color);
background-color: var(--app-header-background-color, var(--primary-color));
font-weight: 400;
color: var(--text-primary-color, white);
color: var(--app-header-text-color, var(--text-primary-color, white));
}
app-toolbar ha-menu-button + [main-title],
Expand Down
4 changes: 2 additions & 2 deletions src/style/nav-style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const _navStyle = css`
app-header,
app-toolbar,
paper-tabs {
background-color: var(--primary-color);
background-color: var(--app-header-background-color, var(--primary-color));
color: var(--app-header-text-color, var(--text-primary-color, white));
font-weight: 400;
text-transform: uppercase;
color: var(--text-primary-color, white);
}
paper-tabs {
Expand Down

0 comments on commit c98bebf

Please sign in to comment.