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

fix: rollback KQL color change #481

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ Every PR should come with a test that checks it.

## Changelog

### 12.0.7

- revert: KQL color contrast for query operators change.

### 12.0.6

- fix: KQL color contrast for query operators now complies with accessibility guidelines.
Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kusto/monaco-kusto",
"version": "12.0.6",
"version": "12.0.7",
"description": "CSL, KQL plugin for the Monaco Editor",
"author": {
"name": "Microsoft"
Expand Down
2 changes: 1 addition & 1 deletion package/src/syntaxHighlighting/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const colors = {
paleChestnut: '#D69D85',
paleVioletRed: '#DB7093',
firebrick: '#B22222',
orangeRed: '#D93900',
orangeRed: '#FF4500',
mediumVioletRed: '#C71585',
magenta: '#FF00FF', // for debugging
darkOrchid: '#9932CC',
Expand Down
Loading