Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color changes for light color themes. #539

Merged
merged 3 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

- Update VSCode client dependencies, should bring some performance
improvements to goal pretty printing (@ejgallego, #530)
- Update goal display colors for light mode so they are actually readable now. (@bhaktishh, #539, fixes #532)

# coq-lsp 0.1.7: Just-in-time
-----------------------------
Expand Down
18 changes: 15 additions & 3 deletions editor/code/views/info/media/coqpp.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,14 @@ div.Pp_box:not([data-mode="vertical"]) > .Pp_break:not(.br) > span.prev-indent {
color: #aabb22;
}

.constr\.variable {
body.vscode-dark .constr\.variable {
color: #7fbfff;
}

body.vscode-light .constr\.variable {
color: #007bff;
}

.module\.definition {
color: #777ddd;
}
Expand All @@ -80,14 +84,22 @@ div.Pp_box:not([data-mode="vertical"]) > .Pp_break:not(.br) > span.prev-indent {
color: #9674b8;
}

.tactic\.primitive {
body.vscode-dark .tactic\.primitive {
color: #c0c0c0;
}

.tactic\.string {
body.vscode-light .tactic\.primitive {
color: #5c5b5b;
}

body.vscode-dark .tactic\.string {
color: #99ff99;
}

body.vscode-light .tactic\.string {
color: #71ba71;
}

.constr\.reference:hover,
.constr\.type:hover,
.constr\.variable:hover,
Expand Down
Loading