mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 11:35:40 +01:00
Merge pull request #2779 from emojiiii/website-example-running-error
Fix some errors on the website playground
This commit is contained in:
commit
3638651cde
2 changed files with 8 additions and 2 deletions
|
|
@ -16,7 +16,10 @@ monaco.editor.defineTheme('myCustomTheme', {
|
|||
{ token: 'comment', foreground: 'ffa500', fontStyle: 'italic underline' },
|
||||
{ token: 'comment.js', foreground: '008800', fontStyle: 'bold' },
|
||||
{ token: 'comment.css', foreground: '0000ff' } // will inherit fontStyle from `comment` above
|
||||
]
|
||||
],
|
||||
colors: {
|
||||
'editor.foreground': '#000000'
|
||||
}
|
||||
});
|
||||
|
||||
monaco.editor.create(document.getElementById('container'), {
|
||||
|
|
|
|||
|
|
@ -22,7 +22,10 @@ monaco.editor.defineTheme('myCoolTheme', {
|
|||
{ token: 'custom-error', foreground: 'ff0000', fontStyle: 'bold' },
|
||||
{ token: 'custom-notice', foreground: 'FFA500' },
|
||||
{ token: 'custom-date', foreground: '008800' }
|
||||
]
|
||||
],
|
||||
colors: {
|
||||
'editor.foreground': '#000000'
|
||||
}
|
||||
});
|
||||
|
||||
// Register a completion item provider for the new language
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue