diff --git a/composables/useBackgrounds.js b/composables/useBackgrounds.js index 0262574..bf3f903 100644 --- a/composables/useBackgrounds.js +++ b/composables/useBackgrounds.js @@ -4,7 +4,7 @@ import { computed } from '@nuxtjs/composition-api'; import useSettingsStore from './useSettingsStore'; import defaultBackgrounds from '~/data/backgrounds'; -export const DEFAULT_BACKGROUND = 'candy'; +export const DEFAULT_BACKGROUND = 'midnight'; export default function () { const settings = useSettingsStore(); diff --git a/composables/usePreferencesStore.js b/composables/usePreferencesStore.js index d3a8f39..7e352ae 100644 --- a/composables/usePreferencesStore.js +++ b/composables/usePreferencesStore.js @@ -8,7 +8,7 @@ export const defaults = { editorFontSize: 14, editorLineHeight: 1.5, editorFontLigatures: false, - editorFontFamily: 'font-mono', + editorFontFamily: 'font-mono-lisa', editorLanguage: 'php', editorOrientation: 'left', editorLightTheme: 'vs-light', @@ -18,8 +18,8 @@ export const defaults = { previewFontSize: 16, previewLineHeight: 20, previewCodeBlurStrength: 1, - previewFontFamily: 'font-mono', - previewThemeName: 'github-light', + previewFontFamily: 'font-mono-lisa', + previewThemeName: 'github-dark', previewLockToWindow: false, previewLockToWindowPaddingX: 0, diff --git a/composables/useSettings.js b/composables/useSettings.js index 5ef7c25..a09f244 100644 --- a/composables/useSettings.js +++ b/composables/useSettings.js @@ -8,12 +8,12 @@ export default function (defaults = {}) { const settingsDefaults = { title: '', - width: 400, - height: 200, + width: 500, + height: 300, position: 'center', landscape: false, showHeader: true, - showHeaderAccent: true, + showHeaderAccent: false, showTitle: true, showMenu: true, showDividers: true, @@ -21,7 +21,7 @@ export default function (defaults = {}) { showLineNumbers: false, background: DEFAULT_BACKGROUND, - themeType: 'light', + themeType: 'dark', themeOpacity: 1.0, themeName: preferences.previewThemeName, themeBackground: '#fff', diff --git a/composables/useShiki.js b/composables/useShiki.js index de7f92f..06e60bf 100644 --- a/composables/useShiki.js +++ b/composables/useShiki.js @@ -17,7 +17,7 @@ export default function () { code: [], languages: [], opacity: 100, - theme: 'github-light', + theme: 'github-dark', }); $queue.push(async () => {