4.23.10 • Published 3 months ago

@uiw/codemirror-theme-basic v4.23.10

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Basic Theme (dark/light)

Buy me a coffee npm version

Install

npm install @uiw/codemirror-theme-basic --save
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { basicLight, basicDark } from '@uiw/codemirror-theme-basic';

const state = EditorState.create({
  doc: 'my source code',
  extensions: [basicDark, javascript({ jsx: true })],
});

Using in React:

import { basicLight, basicLightInit, basicDark, basicDarkInit } from '@uiw/codemirror-theme-basic';
// Or
import { basicDark, basicDarkInit } from '@uiw/codemirror-theme-basic/dark';
import { basicLight, basicLightInit } from '@uiw/codemirror-theme-basic/light';

<CodeMirror theme={basicLight} />
<CodeMirror
  theme={basicLightInit({
    settings: {
      caret: '#c6c6c6',
      fontFamily: 'monospace',
    }
  })}
/>

API

import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const defaultSettingsBasicLight: CreateThemeOptions['settings'];
export declare const basicLightInit: (options?: Partial<CreateThemeOptions>) => import('@codemirror/state').Extension;
export declare const basicLight: import('@codemirror/state').Extension;
export declare const defaultSettingsBasicDark: CreateThemeOptions['settings'];
export declare const basicDarkInit: (options?: Partial<CreateThemeOptions>) => import('@codemirror/state').Extension;
export declare const basicDark: import('@codemirror/state').Extension;

Usage

import CodeMirror from '@uiw/react-codemirror';
import { basicLight, basicDark } from '@uiw/codemirror-theme-basic';
import { javascript } from '@codemirror/lang-javascript';

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

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

by Bram de Haan, adapted from DuoTone themes by Simurai (http://simurai.com/projects/2016/01/01/duotone-themes)

4.23.10

3 months ago

4.23.8

4 months ago

4.23.9

4 months ago

4.23.7

6 months ago

4.23.6

8 months ago

4.23.4

9 months ago

4.23.5

8 months ago

4.23.1

9 months ago

4.23.2

9 months ago

4.23.3

9 months ago

4.23.0

12 months 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

4.21.9

2 years ago