Skip to content

Commit

Permalink
fix(header): fix header color doesn't work properly
Browse files Browse the repository at this point in the history
The header color only show correctly on supervisor page but in another page is all default blue
color.

fix #2
  • Loading branch information
thatkookooguy committed Nov 15, 2020
1 parent c7ccdd9 commit ad972ad
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions themes/kibibit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ kibibit:
# Global
background-image: "center / cover no-repeat fixed url('https://thatkookooguy.github.io/https-assets/bg-kibibit-theme.png')"
lovelace-background: var(--background-image)
primary-color: "#209cee" # from Apple systemOrange dark mode
light-primary-color: "#B6B6C1" # (icons on left menu) (light: systemGray5 from iOS dark mode, dark: XXX)
primary-background-color: "#2c2c2e" # systemGray5 dark mode
primary-color: "#209cee"
light-primary-color: "#B6B6C1"
primary-background-color: "#212121"
secondary-background-color: rgba(25, 25, 25, 0.7)
divider-color: "#98989d" # from Apple systemGray dark mode
divider-color: var(--primary-background-color)
accent-color: rgba(255, 159, 9, 1)
# Fonts
primary-font-family: 'Comfortaa'
Expand Down Expand Up @@ -72,6 +72,7 @@ kibibit:
paper-dialog-background-color: rgba(55, 55, 55, 0.6)
paper-item-icon-color: white # also should mini-media-player icon white (but doesn't work by itself)
more-info-header-background: rgba(25, 25, 25, 0.5)
app-header-background-color: var(--primary-background-color)
# Custom
mcg-title-letter-spacing: .15em
mini-media-player-base-color: white
Expand All @@ -84,11 +85,11 @@ kibibit-dark-cards:
# Global
background-image: "center / cover no-repeat fixed url('https://thatkookooguy.github.io/https-assets/bg-kibibit-theme.png')"
lovelace-background: var(--background-image)
primary-color: "#209cee" # from Apple systemOrange dark mode
light-primary-color: "#B6B6C1" # (icons on left menu) (light: systemGray5 from iOS dark mode, dark: XXX)
primary-background-color: "#2c2c2e" # systemGray5 dark mode
primary-color: "#209cee"
light-primary-color: "#B6B6C1"
primary-background-color: "#212121"
secondary-background-color: rgba(25, 25, 25, 0.7)
divider-color: "#98989d" # from Apple systemGray dark mode
divider-color: var(--primary-background-color)
accent-color: rgba(255, 159, 9, 1)
# Fonts
primary-font-family: 'Comfortaa'
Expand Down Expand Up @@ -151,6 +152,7 @@ kibibit-dark-cards:
paper-dialog-background-color: rgba(55, 55, 55, 0.6)
paper-item-icon-color: white # also should mini-media-player icon white (but doesn't work by itself)
more-info-header-background: rgba(25, 25, 25, 0.5)
app-header-background-color: var(--primary-background-color)
# Custom
mcg-title-letter-spacing: .15em
mini-media-player-base-color: white
Expand Down

0 comments on commit ad972ad

Please sign in to comment.