[IMPROVE] Set black as default dark theme (#3270)

* Update default darkLevel

* Minor tweak
This commit is contained in:
Gerzon Z 2021-07-12 14:05:09 -04:00 committed by GitHub
parent 16fee2aa64
commit c9d5bc37c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -75,7 +75,7 @@ export default class Root extends React.Component {
theme: defaultTheme(),
themePreferences: {
currentTheme: supportSystemTheme() ? 'automatic' : 'light',
darkLevel: 'dark'
darkLevel: 'black'
},
width,
height,

View File

@ -124,7 +124,7 @@ class Root extends React.Component {
theme: defaultTheme(),
themePreferences: {
currentTheme: supportSystemTheme() ? 'automatic' : 'light',
darkLevel: 'dark'
darkLevel: 'black'
},
root: '',
width,

View File

@ -30,14 +30,14 @@ const THEMES = [
label: 'Dark',
value: 'dark',
group: THEME_GROUP
}, {
label: 'Dark',
value: 'dark',
group: DARK_GROUP
}, {
label: 'Black',
value: 'black',
group: DARK_GROUP
}, {
label: 'Dark',
value: 'dark',
group: DARK_GROUP
}
];