Skip to content

Commit 58cee0e

Browse files
committed
[UI] Improve pipeline colours for dark and cat modes
1 parent aa6e83f commit 58cee0e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/app/ExplorerContent.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -819,6 +819,7 @@ export default function ExplorerContent() {
819819
padding: "2px 4px",
820820
borderRadius: "4px",
821821
fontWeight: "bold",
822+
fontSize: "1.1em",
822823
}}
823824
>
824825
Compilation pipeline:
@@ -829,6 +830,8 @@ export default function ExplorerContent() {
829830
padding: "2px 4px",
830831
borderRadius: "4px",
831832
fontWeight: "bold",
833+
fontSize: "1.1em",
834+
color: "#000",
832835
}}
833836
>
834837
{getLabelForIR(irWin.selectedIR)}
@@ -842,8 +845,8 @@ export default function ExplorerContent() {
842845
<React.Fragment key={i}>
843846
<span
844847
style={{
845-
fontSize: "1.2em",
846-
color: "#666",
848+
fontSize: "1.4em",
849+
color: "inherit",
847850
}}
848851
>
849852
@@ -861,13 +864,15 @@ export default function ExplorerContent() {
861864
display: "flex",
862865
flexDirection: "column",
863866
lineHeight: "1.2em",
867+
fontSize: "1.1em",
868+
color: "#000",
864869
}}
865870
>
866871
{p.tool !== "user-tool" && <span>{p.tool}</span>}
867872
<span
868873
style={{
869874
fontSize: "0.8em",
870-
color: "#555",
875+
color: "#000",
871876
}}
872877
>
873878
{preview}
@@ -885,6 +890,7 @@ export default function ExplorerContent() {
885890
marginLeft: 4,
886891
padding: "2px 6px",
887892
cursor: "pointer",
893+
fontSize: "1.1em",
888894
}}
889895
>
890896
🔍

0 commit comments

Comments
 (0)