mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
Fix incorrect ThemeAppearance (#2645)
[[PR Description]] When we updated the way themes were built it looks like we accidentally gave `Atelier Forest Light` the wrong `ThemeAppearance`. This PR fixes that. Release Notes: - Fixed the `Atelier Forest Light` theme, which was incorrectly set as a dark theme.
This commit is contained in:
commit
37814bc4fc
@ -30,7 +30,7 @@ const getTheme = (variant: Variant): ThemeConfig => {
|
||||
return {
|
||||
name: `${meta.name} Forest Light`,
|
||||
author: meta.author,
|
||||
appearance: ThemeAppearance.Dark,
|
||||
appearance: ThemeAppearance.Light,
|
||||
licenseType: meta.licenseType,
|
||||
licenseUrl: meta.licenseUrl,
|
||||
licenseFile: `${__dirname}/LICENSE`,
|
||||
|
Loading…
Reference in New Issue
Block a user