Skip to content

Commit 4cad381

Browse files
authored
Fix theme names to use 'GitHub' instead of 'Github'
1 parent 03ce091 commit 4cad381

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/generate.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ import { getTheme } from './theme.js'
33

44
const writeData = {
55
"$schema": "https://zed.dev/schema/themes/v0.1.0.json",
6-
"name": "Github Theme",
6+
"name": "GitHub Theme",
77
"author": "Pyae Sone Aung",
88
"themes": [
9-
getTheme({ themeKey: 'light', name: "Github Light", type: 'light' }),
10-
getTheme({ themeKey: 'light_colorblind', name: "Github Light Colorblind", type: 'light' }),
11-
getTheme({ themeKey: 'light_high_contrast', name: "Github Light High Contrast", type: 'light' }),
12-
getTheme({ themeKey: 'light_tritanopia', name: "Github Light Tritanopia", type: 'light' }),
13-
getTheme({ themeKey: 'dark', name: "Github Dark", type: 'dark' }),
14-
getTheme({ themeKey: 'dark_colorblind', name: "Github Dark Colorblind", type: 'dark' }),
15-
getTheme({ themeKey: 'dark_high_contrast', name: "Github Dark High Contrast", type: 'dark' }),
16-
getTheme({ themeKey: 'dark_tritanopia', name: "Github Dark Tritanopia", type: 'dark' }),
17-
getTheme({ themeKey: 'dark_dimmed', name: "Github Dark Dimmed", type: 'dark' }),
9+
getTheme({ themeKey: 'light', name: "GitHub Light", type: 'light' }),
10+
getTheme({ themeKey: 'light_colorblind', name: "GitHub Light Colorblind", type: 'light' }),
11+
getTheme({ themeKey: 'light_high_contrast', name: "GitHub Light High Contrast", type: 'light' }),
12+
getTheme({ themeKey: 'light_tritanopia', name: "GitHub Light Tritanopia", type: 'light' }),
13+
getTheme({ themeKey: 'dark', name: "GitHub Dark", type: 'dark' }),
14+
getTheme({ themeKey: 'dark_colorblind', name: "GitHub Dark Colorblind", type: 'dark' }),
15+
getTheme({ themeKey: 'dark_high_contrast', name: "GitHub Dark High Contrast", type: 'dark' }),
16+
getTheme({ themeKey: 'dark_tritanopia', name: "GitHub Dark Tritanopia", type: 'dark' }),
17+
getTheme({ themeKey: 'dark_dimmed', name: "GitHub Dark Dimmed", type: 'dark' }),
1818
]
1919
}
2020

0 commit comments

Comments
 (0)