monaco-editor/website/playground/new-samples/extending-language-services/custom-languages/sample.css

15 lines
253 B
CSS

.monaco-editor .token.custom-info {
color: grey;
}
.monaco-editor .token.custom-error {
color: red;
font-weight: bold;
font-size: 1.2em;
}
.monaco-editor .token.custom-notice {
color: orange;
}
.monaco-editor .token.custom-date {
color: green;
}