Skip to content

Commit

Permalink
update styling for stat and prog
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Sep 26, 2024
1 parent f7affcd commit 2de0784
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/web/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@
--rul-bg-color: #f3caf4;
--rul-shadow-color: #d461d0;

--stat-bg-color: #f3caf4;
--stat-shadow-color: #d461d0;

--prog-bg-color: var(--stat-bg-color);
--prog-shadow-color: var(--stat-shadow-color);

--nul-bg-color: #b6b6b6;
--nul-shadow-color: #a97804;

Expand Down Expand Up @@ -351,6 +357,12 @@
stroke: var(--pat-shadow-color);
/* stroke: var(--pat-bg-color); */
}
.child-line.Stat {
stroke: var(--stat-shadow-color);
}
.child-line.Prog {
stroke: var(--prog-shadow-color);
}
.child-line.Space {
display: none;
}
Expand Down Expand Up @@ -423,6 +435,12 @@
.tok-bar.Exp {
stroke: var(--exp-shadow-color);
}
.tok-bar.Stat {
stroke: var(--stat-shadow-color);
}
.tok-bar.Prog {
stroke: var(--prog-shadow-color);
}

.tile-path.Any.indicated {
fill: #f0dead;
Expand All @@ -442,6 +460,12 @@
fill: var(--exp-bg-color);
/*fill:#b9e3be;*/
}
.tile-path.Stat.indicated {
fill: var(--stat-bg-color);
}
.tile-path.Prog.indicated {
fill: var(--prog-bg-color);
}
.tile-path.Exp.indicated-caret {
fill: #feddb3;
/*fill:#b9e3be;*/
Expand Down

0 comments on commit 2de0784

Please sign in to comment.