2020-04-07 11:23:40 +02:00
|
|
|
const aritimStyle = {
|
|
|
|
backgroundColor: '#10151a', // Main background color
|
|
|
|
backgroundColorTransparent: 'rgba(16, 21, 26, 0.9)', //
|
|
|
|
oddBackgroundColor: '#141a21',
|
|
|
|
color: '#d3dae3', // For regular text (everything except notebooks)
|
|
|
|
colorError: '#9a2f2f',
|
|
|
|
colorWarn: '#d66500',
|
|
|
|
colorFaded: '#666a73', // For less important text (e.g. not selected menu in settings)
|
2020-04-10 09:52:35 +02:00
|
|
|
colorBright: '#ffffff', // For important text; (e.g. bold)
|
2020-04-07 11:23:40 +02:00
|
|
|
dividerColor: '#141a21', // Borders, I wish I could remove them
|
|
|
|
selectedColor: '#2b5278', // Selected note
|
|
|
|
urlColor: '#356693', // Links to external sites (e.g. in settings)
|
|
|
|
|
|
|
|
backgroundColor2: '#141a21', // Notebooks main background
|
|
|
|
depthColor: '#141a21', // Notebooks background color
|
|
|
|
color2: '#d3dae3', // Notebook sidebar text color
|
|
|
|
selectedColor2: '#10151a', // Selected notebook (or settings icon in settings)
|
|
|
|
colorError2: '#9a2f2f',
|
|
|
|
|
|
|
|
raisedBackgroundColor: '#2b5278', // Table, hover
|
|
|
|
raisedColor: '#141a21',
|
|
|
|
|
|
|
|
warningBackgroundColor: '#9a2f2f', // Info / Warning boxes bg color
|
|
|
|
|
|
|
|
// Markdown rendered
|
|
|
|
htmlColor: '#d3dae3', // Text color
|
|
|
|
htmlBackgroundColor: '#10151a', // BG Color
|
|
|
|
htmlDividerColor: '#d3dae3', // Lines e.g. ---
|
|
|
|
htmlLinkColor: '#356693', // Normal links
|
|
|
|
htmlTableBackgroundColor: '#141a21', // Table (even) background color
|
|
|
|
htmlCodeBackgroundColor: '#141a21', // Single line code bg
|
|
|
|
htmlCodeBorderColor: '#141a21', // Single line code border, and tables
|
|
|
|
htmlCodeColor: '#005b47', // Single line code text
|
|
|
|
|
|
|
|
editorTheme: 'chaos',
|
|
|
|
codeThemeCss: 'atom-one-dark-reasonable.css',
|
|
|
|
|
|
|
|
highlightedColor: '#d3dae3',
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = aritimStyle;
|