4.23.10 • Published 4 months ago
@uiw/codemirror-theme-quietlight v4.23.10
Quietlight Theme
Quietlight theme for cm6, generated from vscode themes.
Install
npm install @uiw/codemirror-theme-quietlight --save
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { quietlight } from '@uiw/codemirror-theme-quietlight';
const state = EditorState.create({
doc: 'my source code',
extensions: [quietlight, javascript({ jsx: true })],
});
Using in React:
import { quietlight, quietlightInit } from '@uiw/codemirror-theme-quietlight';
<CodeMirror theme={quietlight} />
<CodeMirror
theme={quietlightInit({
settings: {
caret: '#c6c6c6',
fontFamily: 'monospace',
}
})}
/>
API
import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const defaultSettingsQuietlight: CreateThemeOptions['settings'];
export declare const quietlightInit: (options?: Partial<CreateThemeOptions>) => import('@codemirror/state').Extension;
export declare const quietlight: import('@codemirror/state').Extension;
Usage
import CodeMirror from '@uiw/react-codemirror';
import { quietlight } from '@uiw/codemirror-theme-quietlight';
import { javascript } from '@codemirror/lang-javascript';
function App() {
return (
<CodeMirror
value="console.log('hello world!');"
height="200px"
theme={quietlight}
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 { quietlight } from '@uiw/codemirror-theme-quietlight';
const state = EditorState.create({
doc: 'my source code',
extensions: [quietlight, 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.
4.23.10
4 months ago
4.23.8
5 months ago
4.23.9
5 months ago
4.23.7
7 months ago
4.23.6
9 months ago
4.23.4
9 months ago
4.23.5
9 months ago
4.23.1
10 months ago
4.23.2
10 months ago
4.23.3
10 months ago
4.23.0
1 year ago
4.22.2
1 year ago
4.22.1
1 year ago
4.22.0
1 year ago
4.21.25
1 year ago
4.21.24
1 year ago
4.21.23
1 year ago
4.21.22
1 year ago
4.21.21
2 years ago
4.21.20
2 years ago
4.21.19
2 years ago
4.21.18
2 years ago
4.21.17
2 years ago
4.21.16
2 years ago
4.21.15
2 years ago
4.21.14
2 years ago
4.21.13
2 years ago
4.21.12
2 years ago
4.21.11
2 years ago
4.21.10
2 years ago