
This commit mainly changes the color definitions. Mostly, those changes are semantically equally, but there are a few changes that occurred to align the color scheme within the app.
8 lines
189 B
JavaScript
8 lines
189 B
JavaScript
/* eslint no-console:0 */
|
|
|
|
// JS
|
|
import hljs from 'highlight.js/lib/common'
|
|
import julia from 'highlight.js/lib/languages/julia';
|
|
hljs.registerLanguage('julia', julia);
|
|
window.hljs = hljs;
|