diff --git a/test/playground.generated/customizing-the-appearence-exposed-colors.html b/test/playground.generated/customizing-the-appearence-exposed-colors.html index 2da2ba36..5d58d20f 100644 --- a/test/playground.generated/customizing-the-appearence-exposed-colors.html +++ b/test/playground.generated/customizing-the-appearence-exposed-colors.html @@ -141,6 +141,7 @@ monaco.editor.create(document.getElementById("container"), { 'editorWhitespace.foreground' // Color of whitespace characters in the editor. 'editorIndentGuide.background' // Color of the editor indentation guides. 'editorLineNumber.foreground' // Color of editor line numbers. +'editorLineNumber.activeForeground' // Color of editor active line number. 'editorRuler.foreground' // Color of the editor rulers. 'editorCodeLens.foreground' // Foreground color of editor code lenses 'editorBracketMatch.background' // Background color behind matching brackets diff --git a/website/playground/new-samples/customizing-the-appearence/exposed-colors/sample.js b/website/playground/new-samples/customizing-the-appearence/exposed-colors/sample.js index dd100883..0da824d6 100644 --- a/website/playground/new-samples/customizing-the-appearence/exposed-colors/sample.js +++ b/website/playground/new-samples/customizing-the-appearence/exposed-colors/sample.js @@ -104,6 +104,7 @@ monaco.editor.create(document.getElementById("container"), { 'editorWhitespace.foreground' // Color of whitespace characters in the editor. 'editorIndentGuide.background' // Color of the editor indentation guides. 'editorLineNumber.foreground' // Color of editor line numbers. +'editorLineNumber.activeForeground' // Color of editor active line number. 'editorRuler.foreground' // Color of the editor rulers. 'editorCodeLens.foreground' // Foreground color of editor code lenses 'editorBracketMatch.background' // Background color behind matching brackets