2020-09-15 15:01:07 +02:00
|
|
|
import { Theme } from './type';
|
|
|
|
import theme_dark from './dark';
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
const theme: Theme = {
|
2020-09-15 15:01:07 +02:00
|
|
|
...theme_dark,
|
2020-05-17 16:34:42 +02:00
|
|
|
|
2020-04-07 10:19:53 +02:00
|
|
|
backgroundColor: '#282a36',
|
|
|
|
backgroundColorTransparent: 'rgba(40, 42, 54, 0.9)',
|
|
|
|
oddBackgroundColor: '#282a36',
|
|
|
|
color: '#f8f8f2', // For regular text
|
|
|
|
colorError: '#ff5555',
|
|
|
|
colorWarn: '#ffb86c',
|
|
|
|
colorFaded: '#6272a4', // For less important text;
|
|
|
|
colorBright: '#50fa7b', // For important text;
|
|
|
|
dividerColor: '#bd93f9',
|
|
|
|
selectedColor: '#44475a',
|
|
|
|
urlColor: '#8be9fd',
|
|
|
|
|
|
|
|
backgroundColor2: '#21222C',
|
|
|
|
color2: '#bd93f9',
|
|
|
|
selectedColor2: '#44475a',
|
|
|
|
colorError2: '#ff5555',
|
|
|
|
|
|
|
|
raisedBackgroundColor: '#44475a',
|
|
|
|
raisedColor: '#bd93f9',
|
|
|
|
|
|
|
|
warningBackgroundColor: '#ffb86c',
|
|
|
|
|
2020-06-10 23:08:59 +02:00
|
|
|
tableBackgroundColor: '#6272a4',
|
|
|
|
codeBackgroundColor: '#44475a',
|
|
|
|
codeBorderColor: '#f8f8f2',
|
|
|
|
codeColor: '#50fa7b',
|
2020-04-07 10:19:53 +02:00
|
|
|
|
2020-06-06 17:00:20 +02:00
|
|
|
codeMirrorTheme: 'dracula',
|
2020-04-07 10:19:53 +02:00
|
|
|
codeThemeCss: 'atom-one-dark-reasonable.css',
|
|
|
|
};
|
|
|
|
|
2020-09-15 15:01:07 +02:00
|
|
|
export default theme;
|