diff --git a/browser/main/lib/ConfigManager.js b/browser/main/lib/ConfigManager.js index 1f7ab33d..2a0b14c0 100644 --- a/browser/main/lib/ConfigManager.js +++ b/browser/main/lib/ConfigManager.js @@ -24,7 +24,7 @@ export const DEFAULT_CONFIG = { defaultNote: 'ALWAYS_ASK' // 'ALWAYS_ASK', 'SNIPPET_NOTE', 'MARKDOWN_NOTE' }, editor: { - theme: 'default', + theme: 'base16-light', keyMap: 'sublime', fontSize: '14', fontFamily: 'Monaco, Consolas', @@ -35,7 +35,7 @@ export const DEFAULT_CONFIG = { preview: { fontSize: '14', fontFamily: 'Lato', - codeBlockTheme: 'elegant', + codeBlockTheme: 'dracula', lineNumber: true } } diff --git a/browser/main/modals/InitModal.js b/browser/main/modals/InitModal.js index 01177d89..e5f4ac2c 100644 --- a/browser/main/modals/InitModal.js +++ b/browser/main/modals/InitModal.js @@ -103,7 +103,7 @@ class InitModal extends React.Component { } else { return dataApi .createFolder(data.storage.key, { - color: '#6AA5E9', + color: '#1278BD', name: 'Default' }) .then((_data) => { @@ -122,19 +122,6 @@ class InitModal extends React.Component { notes: data.notes }) - let defaultMarkdownNote = dataApi - .createNote(data.storage.key, { - type: 'MARKDOWN_NOTE', - folder: data.storage.folders[0].key, - title: 'Welcome to Boostnote :)', - content: '# Welcome to Boostnote :)\nThis is a markdown note.\n\nClick to edit this note.' - }) - .then((note) => { - store.dispatch({ - type: 'UPDATE_NOTE', - note: note - }) - }) let defaultSnippetNote = dataApi .createNote(data.storage.key, { type: 'SNIPPET_NOTE', @@ -145,12 +132,12 @@ class InitModal extends React.Component { { name: 'example.html', mode: 'html', - content: '\n
\n