Skip to content

Commit

Permalink
Merge pull request microsoft#4304 from microsoft/aiday/changingTheCol…
Browse files Browse the repository at this point in the history
…orRanges

Changing the color ranges of the color provider example in the playground
  • Loading branch information
hediet committed Dec 14, 2023
2 parents cb106b4 + 99622db commit d8144cf
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@ monaco.languages.registerColorProvider("colorLanguage", {
color: { red: 1, blue: 0, green: 0, alpha: 1 },
range: {
startLineNumber: 1,
startColumn: 0,
startColumn: 1,
endLineNumber: 1,
endColumn: 0,
endColumn: 4,
},
},
{
color: { red: 0, blue: 1, green: 0, alpha: 1 },
range: {
startLineNumber: 2,
startColumn: 0,
startColumn: 1,
endLineNumber: 2,
endColumn: 0,
endColumn: 5,
},
},
{
color: { red: 0, blue: 0, green: 1, alpha: 1 },
range: {
startLineNumber: 3,
startColumn: 0,
startColumn: 1,
endLineNumber: 3,
endColumn: 0,
endColumn: 6,
},
},
];
Expand Down

0 comments on commit d8144cf

Please sign in to comment.