Package Exports
- @uiw/codemirror-theme-solarized
- @uiw/codemirror-theme-solarized/cjs/index.js
- @uiw/codemirror-theme-solarized/esm/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@uiw/codemirror-theme-solarized) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Solarized Theme
This package implements the Solarized theme for the CodeMirror code editor.


Install
npm install @uiw/codemirror-theme-solarized --save
import { solarizedLight, solarizedLightInit, solarizedDark, solarizedDarkInit } from '@uiw/codemirror-theme-solarized';
<CodeMirror theme={solarizedLight} />
<CodeMirror
theme={solarizedLightInit({
settings: {
caret: '#c6c6c6',
fontFamily: 'monospace',
}
})}
/>
API
import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const solarizedLightInit: (options?: CreateThemeOptions) => import('@codemirror/state').Extension;
export declare const solarizedLight: import('@codemirror/state').Extension;
export declare const solarizedDarkInit: (options?: CreateThemeOptions) => import('@codemirror/state').Extension;
export declare const solarizedDark: import('@codemirror/state').Extension;
Usage
import CodeMirror from '@uiw/react-codemirror';
import { solarizedLight, solarizedDark } from '@uiw/codemirror-theme-solarized';
import { javascript } from '@codemirror/lang-javascript';
function App() {
return (
<CodeMirror
value="console.log('hello world!');"
height="200px"
theme={solarizedLight}
extensions={[javascript({ jsx: true })]}
/>
);
}
export default App;
import { EditorView } from '@codemirror/view';
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { solarizedLight, solarizedDark } from '@uiw/codemirror-theme-solarized';
const state = EditorState.create({
doc: 'my source code',
extensions: [solarizedLight, 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.