Skip to content

Latest commit

 

History

History
97 lines (75 loc) · 2.35 KB

README.md

File metadata and controls

97 lines (75 loc) · 2.35 KB

Atom One Theme

npm version

codemirror-theme-atomone

Install

npm install @uiw/codemirror-theme-atomone --save
import { tags as t } from '@lezer/highlight';
import { atomone, atomoneInit } from '@uiw/codemirror-theme-atomone';

<CodeMirror theme={atomone} />
<CodeMirror
  theme={atomoneInit({
    settings: {
      caret: '#c6c6c6',
      fontFamily: 'monospace',
    },
    styles: [
      { tag: t.comment, color: '#6272a4' },
    ]
  })}
/>

API

import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const atomoneInit: (options?: CreateThemeOptions) => import('@codemirror/state').Extension;
export declare const atomone: import('@codemirror/state').Extension;

Usage

import CodeMirror from '@uiw/react-codemirror';
import { atomone } from '@uiw/codemirror-theme-atomone';
import { javascript } from '@codemirror/lang-javascript';

function App() {
  return (
    <CodeMirror
      value="console.log('hello world!');"
      height="200px"
      theme={atomone}
      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 { atomone } from '@uiw/codemirror-theme-atomone';

const state = EditorState.create({
  doc: 'my source code',
  extensions: [atomone, 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.