Skip to content

Commit 149d215

Browse files
committed
Fix improperly set default themes
1 parent 1709026 commit 149d215

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
### Bug Fixes
4+
5+
- Switched the default highlighting themes back to `light-plus` and `dark-plus`, they were accidentally set to `min-light` and `min-dark` in v0.22.0.
6+
37
### Features
48

59
- Added new `validation` option which can be used to disable checks for non-exported symbols.

src/lib/utils/options/sources/typedoc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ export function addTypeDocOptions(options: Pick<Options, "addDeclaration">) {
131131
defaultValue: "default",
132132
});
133133

134-
const defaultLightTheme: Theme = "min-light";
135-
const defaultDarkTheme: Theme = "min-dark";
134+
const defaultLightTheme: Theme = "light-plus";
135+
const defaultDarkTheme: Theme = "dark-plus";
136136

137137
options.addDeclaration({
138138
name: "lightHighlightTheme",

0 commit comments

Comments
 (0)