Skip to content

Commit b9587f2

Browse files
committed
feat(theme): added darcula theme support
1 parent 694ca55 commit b9587f2

4 files changed

Lines changed: 165 additions & 161 deletions

File tree

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
},
2020
"html.format.extraLiners": "head, body, /html, fieldset",
2121
"html.format.wrapAttributes": "force-expand-multiline",
22-
"html.format.indentInnerHtml": true
22+
"html.format.indentInnerHtml": true,
23+
"i18n-ally.localesPaths": ["src/locale", "src/locale/languages"]
2324
}

src/ts/interfaces/themes.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export type SupportedThemes = [
1818
| 'Community Material Theme Ocean High Contrast'
1919
| 'Community Material Theme Palenight'
2020
| 'Community Material Theme Palenight High Contrast'
21+
| 'Darcula'
2122
| 'Darcula - Black Edition'
2223
| 'Darcula - WebStorm Edition'
2324
| 'Dark (Visual Studio - CC++)'
@@ -110,6 +111,7 @@ export const supportedThemes = [
110111
'Community Material Theme Ocean High Contrast',
111112
'Community Material Theme Palenight',
112113
'Community Material Theme Palenight High Contrast',
114+
'Darcula',
113115
'Darcula - Black Edition',
114116
'Darcula - WebStorm Edition',
115117
'Dark (Visual Studio - CC++)',

src/ts/themes/Darcula/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export = import('../Darcula - Black Edition');

0 commit comments

Comments
 (0)