@uiw/codemirror-theme-tomorrow-night-blue
v4.23.6
Published
Theme tomorrow-night-blue for CodeMirror.
Downloads
18,385
Readme
TomorrowNightBlue Theme
TomorrowNightBlue theme for cm6, generated from vscode themes.
Install
npm install @uiw/codemirror-theme-tomorrow-night-blue --save
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { tomorrowNightBlue } from '@uiw/codemirror-theme-tomorrow-night-blue';
const state = EditorState.create({
doc: 'my source code',
extensions: [tomorrowNightBlue, javascript({ jsx: true })],
});
Using in React:
import { tomorrowNightBlue, tomorrowNightBlueInit } from '@uiw/codemirror-theme-tomorrow-night-blue';
<CodeMirror theme={tomorrowNightBlue} />
<CodeMirror
theme={tomorrowNightBlueInit({
settings: {
caret: '#c6c6c6',
fontFamily: 'monospace',
}
})}
/>
API
import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const defaultSettingsTomorrowNightBlue: CreateThemeOptions['settings'];
export declare const tomorrowNightBlueInit: (
options?: Partial<CreateThemeOptions>,
) => import('@codemirror/state').Extension;
export declare const tomorrowNightBlue: import('@codemirror/state').Extension;
Usage
import CodeMirror from '@uiw/react-codemirror';
import { tomorrowNightBlue } from '@uiw/codemirror-theme-tomorrow-night-blue';
import { javascript } from '@codemirror/lang-javascript';
function App() {
return (
<CodeMirror
value="console.log('hello world!');"
height="200px"
theme={tomorrowNightBlue}
extensions={[javascript({ jsx: true })]}
onChange={(value, viewUpdate) => {
console.log('value:', value);
}}
/>
);
}
export default App;
import { EditorView } from '@codemirror/view';
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { tomorrowNightBlue } from '@uiw/codemirror-theme-tomorrow-night-blue';
const state = EditorState.create({
doc: 'my source code',
extensions: [tomorrowNightBlue, javascript({ jsx: true })],
});
const view = new EditorView({
parent: document.querySelector('#editor'),
state,
});
Contributors
As always, thanks to our amazing contributors!
Made with github-action-contributors.
License
Licensed under the MIT License.