Skip to content

Commit

Permalink
Seperated the font color of the output view in themes.
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bicker <jan.bicker@typefox.io>
  • Loading branch information
jbicker committed Aug 27, 2019
1 parent 24bf9f2 commit 85b7576
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/core/src/browser/style/variables-bright.useable.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,4 +260,7 @@ is not optimized for dense, information rich UIs.
--theia-ansi-cyan-background-color: darkcyan;
--theia-ansi-white-background-color: #BDBDBD;

/* Output */
--theia-output-font-color: var(--theia-ui-font-color1);

}
3 changes: 3 additions & 0 deletions packages/core/src/browser/style/variables-dark.useable.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,4 +260,7 @@ is not optimized for dense, information rich UIs.
--theia-ansi-cyan-background-color: #218D8D;
--theia-ansi-white-background-color: #707070;

/* Output */
--theia-output-font-color: var(--theia-ui-font-color1);

}
2 changes: 1 addition & 1 deletion packages/output/src/browser/style/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#outputView {
font-size: var(--theia-ui-font-size1);
color: var(--theia-ui-font-color1);
color: var(--theia-output-font-color);
}

#outputView #outputContents {
Expand Down

0 comments on commit 85b7576

Please sign in to comment.