Skip to content

Commit

Permalink
darkmode: added color change for type-op and type-ap
Browse files Browse the repository at this point in the history
  • Loading branch information
vChavezB committed Jan 6, 2024
1 parent f6c25f7 commit 7e18d4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/main/resources/darkmode/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
--bg-hlist: #67676E;
--bg-description:#67676E;
--literal:#00D900;
--type-ap: #EB4A4A;
--type-op: #75E1FC;
}

2 changes: 2 additions & 0 deletions src/main/resources/darkmode/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@
--bg-hlist: #F4FFFF;
--bg-description:rgb(242, 243, 244);
--literal:green;
--type-ap: maroon;
--type-op: navy;
}
4 changes: 2 additions & 2 deletions src/main/resources/lode/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ h1 {

.type-op {
cursor:help;
color:navy;
color:var(--type-op);
}

.type-dp {
Expand All @@ -48,7 +48,7 @@ h1 {

.type-ap {
cursor:help;
color:maroon;
color:var(--type-ap);
}

.type-ni {
Expand Down

0 comments on commit 7e18d4c

Please sign in to comment.