Fix colors in light mode
This commit is contained in:
parent
b344a9c6b2
commit
a1b36f66d3
3 changed files with 13 additions and 7 deletions
|
@ -51,10 +51,6 @@ export class AppHeader extends LitElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(prefers-color-scheme: light) {
|
@media(prefers-color-scheme: light) {
|
||||||
header {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav fluent-anchor::part(control) {
|
nav fluent-anchor::part(control) {
|
||||||
color: initial;
|
color: initial;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,13 +8,13 @@ export class NavigationIcon extends LitElement {
|
||||||
return css`
|
return css`
|
||||||
svg {
|
svg {
|
||||||
display: block;
|
display: block;
|
||||||
color: var(--foreground-color);
|
color: white;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
render() {
|
render() {
|
||||||
return html`
|
return html`
|
||||||
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M2 4.5c0-.28.22-.5.5-.5h15a.5.5 0 010 1h-15a.5.5 0 01-.5-.5zm0 5c0-.28.22-.5.5-.5h15a.5.5 0 010 1h-15a.5.5 0 01-.5-.5zm.5 4.5a.5.5 0 000 1h15a.5.5 0 000-1h-15z"/></svg>
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M2 4.5c0-.28.22-.5.5-.5h15a.5.5 0 010 1h-15a.5.5 0 01-.5-.5zm0 5c0-.28.22-.5.5-.5h15a.5.5 0 010 1h-15a.5.5 0 01-.5-.5zm.5 4.5a.5.5 0 000 1h15a.5.5 0 000-1h-15z"/></svg>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -24,6 +24,14 @@ export class AppHome extends LitElement {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.timer-wrapper {
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 1em;
|
||||||
|
background-color: var(--timer-background-default);
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -76,6 +84,7 @@ export class AppHome extends LitElement {
|
||||||
`;
|
`;
|
||||||
} else {
|
} else {
|
||||||
body = html`
|
body = html`
|
||||||
|
<div class="timer-wrapper">
|
||||||
<p>
|
<p>
|
||||||
Create a timer to begin<br />
|
Create a timer to begin<br />
|
||||||
<fluent-button
|
<fluent-button
|
||||||
|
@ -84,6 +93,7 @@ export class AppHome extends LitElement {
|
||||||
New Timer
|
New Timer
|
||||||
</fluent-button>
|
</fluent-button>
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue