diff --git a/docs/src/config/darkCodeTheme.ts b/docs/src/config/darkCodeTheme.ts index 185fb64980..3ee9f4a950 100644 --- a/docs/src/config/darkCodeTheme.ts +++ b/docs/src/config/darkCodeTheme.ts @@ -128,6 +128,13 @@ export default { style: { color: '#E3E3E3' } + }, + { + types: ['boolean'], + languages: ['json'], + style: { + color: '#569CD6' + } } ] } satisfies PrismTheme; \ No newline at end of file diff --git a/docs/src/config/lightCodeTheme.ts b/docs/src/config/lightCodeTheme.ts index 0e6878ccd8..1623f6bbc5 100644 --- a/docs/src/config/lightCodeTheme.ts +++ b/docs/src/config/lightCodeTheme.ts @@ -116,6 +116,13 @@ export default { style: { color: '#A0A0A0' } + }, + { + types: ['boolean'], + languages: ['json'], + style: { + color: '#0000FF' + } } ] } satisfies PrismTheme; \ No newline at end of file