This commit is contained in:
Janus C. H. Knudsen 2025-12-09 21:24:17 +01:00
parent 016a504431
commit f39e38986c
4 changed files with 20 additions and 8 deletions

View file

@ -14,9 +14,13 @@
--color-border: #e0e0e0;
--color-surface: #fff;
--color-background: #f5f5f5;
--color-background-hover: #f0f0f0;
--color-background-alt: #fafafa;
--color-text: #333333;
--color-text-secondary: #666;
--color-primary: #1976d2;
--color-team-bg: #e3f2fd;
--color-team-text: #1565c0;
/* Colors - Grid */
--color-hour-line: rgba(0, 0, 0, 0.2);

View file

@ -29,7 +29,7 @@ swp-nav-button {
cursor: pointer;
background: var(--color-surface);
&:hover { background: #f0f0f0; }
&:hover { background: var(--color-background-hover); }
}
swp-week-info {
@ -75,7 +75,7 @@ swp-header-drawer {
display: block;
height: 0;
overflow: hidden;
background: #fafafa;
background: var(--color-background-alt);
border-bottom: 1px solid var(--color-border);
}
@ -180,13 +180,14 @@ swp-team-header {
}
swp-team-header {
background: #e3f2fd;
color: #1565c0;
background: var(--color-team-bg);
color: var(--color-team-text);
font-weight: 500;
grid-column: span var(--team-cols, 1);
}
swp-resource-header {
background: #fafafa;
background: var(--color-background-alt);
font-size: 13px;
}