go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/nodes/static/_nextjs/src/components/editorTheme.ts (about) 1 /** 2 * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved. 3 * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 */ 5 import { editor } from 'monaco-editor'; 6 7 const editorTheme: editor.IStandaloneThemeData = { 8 base: 'vs-dark', 9 inherit: false, 10 rules: [], 11 colors: { 12 ['editor.background']: '#2f343c', 13 ['editor.foreground']: '#f6f7f9', 14 ['editorBracketHighlight.foreground1']: '#2D72D2', 15 } 16 } 17 18 export default editorTheme;