4.22.0 • Published 4 days ago

@uiw/codemirror-theme-eclipse v4.22.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 days ago

Eclipse Theme

Buy me a coffee npm version

Install

npm install @uiw/codemirror-theme-eclipse --save
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { eclipse } from '@uiw/codemirror-theme-eclipse';

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

Using in React:

import { defaultSettingsEclipse } from '@uiw/codemirror-theme-eclipse';
import { eclipse, eclipseInit } from '@uiw/codemirror-theme-eclipse';

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

API

import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const defaultSettingsEclipse: CreateThemeOptions['settings'];
export declare const eclipseInit: (options?: Partial<CreateThemeOptions>) => import('@codemirror/state').Extension;
export declare const eclipse: import('@codemirror/state').Extension;

Usage

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

function App() {
  return (
    <CodeMirror
      value="console.log('hello world!');"
      height="200px"
      theme={eclipse}
      extensions={[javascript({ jsx: true })]}
    />
  );
}
export default App;
import { EditorView } from '@codemirror/view';
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { eclipse } from '@uiw/codemirror-theme-eclipse';

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

4 days ago

4.21.25

1 month ago

4.21.24

2 months ago

4.21.23

2 months ago

4.21.22

3 months ago

4.21.11

8 months ago

4.21.10

8 months ago

4.21.13

8 months ago

4.21.12

8 months ago

4.21.19

7 months ago

4.21.18

7 months ago

4.21.15

8 months ago

4.21.14

8 months ago

4.21.17

7 months ago

4.21.16

7 months ago

4.21.9

9 months ago

4.21.8

10 months ago

4.21.21

5 months ago

4.21.20

7 months ago

4.21.6

10 months ago

4.21.7

10 months ago

4.21.4

11 months ago

4.21.5

10 months ago

4.21.1

11 months ago

4.21.2

11 months ago

4.21.3

11 months ago

4.21.0

11 months ago

4.20.2

12 months ago

4.20.3

11 months ago

4.20.4

11 months ago

4.20.0

12 months ago

4.20.1

12 months ago

4.19.14

1 year ago

4.19.13

1 year ago

4.19.12

1 year ago

4.19.11

1 year ago

4.19.10

1 year ago

4.19.16

1 year ago

4.19.15

1 year ago

4.19.8

1 year ago

4.19.9

1 year ago

4.19.5

1 year ago

4.19.6

1 year ago

4.19.7

1 year ago

4.19.3

1 year ago

4.19.4

1 year ago

4.19.0

1 year ago

4.18.1

1 year ago

4.19.1

1 year ago

4.18.2

1 year ago

4.19.2

1 year ago

4.16.0

1 year ago

4.17.0

1 year ago

4.18.0

1 year ago

4.17.1

1 year ago

4.15.0

1 year ago

4.14.1

1 year ago

4.13.2

1 year ago

4.15.1

1 year ago

4.14.2

1 year ago

4.12.4

2 years ago

4.14.3

1 year ago

4.13.0

1 year ago

4.14.0

1 year ago

4.13.1

1 year ago

4.12.3

2 years ago

4.12.2

2 years ago

4.11.5

2 years ago

4.11.6

2 years ago

4.12.0

2 years ago

4.12.1

2 years ago

4.11.4

2 years ago

4.11.3

2 years ago

4.11.2

2 years ago

4.11.1

2 years ago

4.11.0

2 years ago

4.10.4

2 years ago

4.10.3

2 years ago

4.10.2

2 years ago

4.10.1

2 years ago

4.10.0

2 years ago

4.9.6

2 years ago

4.9.5

2 years ago

4.9.4

2 years ago

4.9.3

2 years ago