import { Theme } from './type'; import theme_dark from './dark'; const theme: Theme = { ...theme_dark, backgroundColor: '#002b36', backgroundColorTransparent: 'rgba(0, 43, 54, 0.9)', oddBackgroundColor: '#073642', color: '#93a1a1', // For regular text colorError: '#dc322f', colorWarn: '#cb4b16', colorFaded: '#657b83', // For less important text; colorBright: '#eee8d5', // For important text; dividerColor: '#586e75', selectedColor: '#073642', urlColor: '#268bd2', backgroundColor2: '#073642', color2: '#eee8d5', selectedColor2: '#6c71c4', colorError2: '#cb4b16', raisedBackgroundColor: '#073642', raisedColor: '#839496', warningBackgroundColor: '#b5890055', tableBackgroundColor: '#002b36', codeBackgroundColor: '#002b36', codeBorderColor: '#696969', codeColor: '#fdf6e3', codeMirrorTheme: 'solarized dark', codeThemeCss: 'atom-one-dark-reasonable.css', }; export default theme;