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: '#002b36',
|
|
|
|
backgroundColorTransparent: 'rgba(0, 43, 54, 0.9)',
|
|
|
|
oddBackgroundColor: '#073642',
|
2021-03-29 10:46:47 +02:00
|
|
|
color: '#839496', // For regular text
|
2020-04-07 10:19:53 +02:00
|
|
|
colorError: '#dc322f',
|
|
|
|
colorWarn: '#cb4b16',
|
|
|
|
colorFaded: '#657b83', // For less important text;
|
|
|
|
dividerColor: '#586e75',
|
|
|
|
selectedColor: '#073642',
|
|
|
|
urlColor: '#268bd2',
|
|
|
|
|
|
|
|
backgroundColor2: '#073642',
|
|
|
|
color2: '#eee8d5',
|
2021-03-29 10:46:47 +02:00
|
|
|
selectedColor2: '#586e75',
|
2020-04-07 10:19:53 +02:00
|
|
|
colorError2: '#cb4b16',
|
|
|
|
|
2021-03-29 10:46:47 +02:00
|
|
|
backgroundColor3: '#012732',
|
|
|
|
backgroundColorHover3: '#2aa19870',
|
|
|
|
color3: '#93a1a1',
|
|
|
|
|
|
|
|
backgroundColor4: '#073642',
|
|
|
|
color4: '#93a1a1',
|
|
|
|
|
2020-04-07 10:19:53 +02:00
|
|
|
raisedBackgroundColor: '#073642',
|
|
|
|
raisedColor: '#839496',
|
|
|
|
|
|
|
|
warningBackgroundColor: '#b5890055',
|
|
|
|
|
2020-06-10 23:08:59 +02:00
|
|
|
tableBackgroundColor: '#002b36',
|
|
|
|
codeBackgroundColor: '#002b36',
|
|
|
|
codeBorderColor: '#696969',
|
2021-03-29 10:46:47 +02:00
|
|
|
codeColor: '#839496',
|
2020-04-07 10:19:53 +02:00
|
|
|
|
2020-06-06 17:00:20 +02:00
|
|
|
codeMirrorTheme: 'solarized dark',
|
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;
|