Skip to content

Commit

Permalink
refactor: keep a-z sorting in themesettings
Browse files Browse the repository at this point in the history
This keeps the a-z sorting in the ThemeSettings.vue file
  • Loading branch information
DontBlameMe committed Dec 29, 2024
1 parent ae65d0c commit 2c8f264
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/renderer/components/ThemeSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,16 @@ const BASE_THEME_VALUES = [
'catppuccinFrappe',
'catppuccinMocha',
'dracula',
'gruvboxDark',
'gruvboxLight',
'solarizedDark',
'solarizedLight',
'everforestDarkHard',
'everforestDarkMedium',
'everforestDarkLow',
'everforestLightHard',
'everforestLightMedium',
'everforestLightLow'
'everforestLightLow',
'gruvboxDark',
'gruvboxLight',
'solarizedDark',
'solarizedLight'
]
const baseThemeNames = computed(() => [
Expand All @@ -155,16 +155,16 @@ const baseThemeNames = computed(() => [
t('Settings.Theme Settings.Base Theme.Catppuccin Frappe'),
t('Settings.Theme Settings.Base Theme.Catppuccin Mocha'),
t('Settings.Theme Settings.Base Theme.Dracula'),
t('Settings.Theme Settings.Base Theme.Gruvbox Dark'),
t('Settings.Theme Settings.Base Theme.Gruvbox Light'),
t('Settings.Theme Settings.Base Theme.Solarized Dark'),
t('Settings.Theme Settings.Base Theme.Solarized Light'),
t('Settings.Theme Settings.Base Theme.Everforest Dark Hard'),
t('Settings.Theme Settings.Base Theme.Everforest Dark Medium'),
t('Settings.Theme Settings.Base Theme.Everforest Dark Low'),
t('Settings.Theme Settings.Base Theme.Everforest Light Hard'),
t('Settings.Theme Settings.Base Theme.Everforest Light Medium'),
t('Settings.Theme Settings.Base Theme.Everforest Light Low')
t('Settings.Theme Settings.Base Theme.Everforest Light Low'),
t('Settings.Theme Settings.Base Theme.Gruvbox Dark'),
t('Settings.Theme Settings.Base Theme.Gruvbox Light'),
t('Settings.Theme Settings.Base Theme.Solarized Dark'),
t('Settings.Theme Settings.Base Theme.Solarized Light')
])
const COLOR_VALUES = colors.map(color => color.name)
Expand Down

0 comments on commit 2c8f264

Please sign in to comment.