mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
2a8b27033f
* Working on an aritim-dark theme, very WIP still * Update aritim.js * Added new theme "Aritim-Dark" * removing aritim-dark "brace" theme for now * Updating style with some changes * Reset branch back to the original upstream state, to create a different pull-request for moving all themes outside * Reset branch back to the original upstream state * Moved all themes out into their own .js theme files * Updating master to use the seperated themes stuff * Moved themes into their own const * Removed switch case for themes and simplified it. Thanks Laurent for the help! * Adding Aritim-Dark to theme options
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
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)
|
|
colorBright: '#005b47', // For important text; (e.g. bold)
|
|
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;
|