Moved code theme picker into custom theme subarea

This commit is contained in:
Reed Garmsen
2015-11-03 09:39:07 -08:00
parent aee6d9b608
commit 0054924cdb
3 changed files with 92 additions and 24 deletions

View File

@@ -304,11 +304,33 @@ module.exports = {
{
id: 'mentionHighlightLink',
uiName: 'Mention Highlight Link'
},
{
id: 'codeTheme',
uiName: 'Code Theme',
themes: [
{
id: 'solarized_dark',
uiName: 'Solarized Dark'
},
{
id: 'solarized_light',
uiName: 'Solarized light'
},
{
id: 'github',
uiName: 'GitHub'
},
{
id: 'monokai',
uiName: 'Monokai'
}
]
}
],
CODE_THEMES: {
github: 'GitHub',
solarized_light: 'Solarized light',
solarized_light: 'Solarized Light',
monokai: 'Monokai',
solarized_dark: 'Solarized Dark'
},