Added Theme

This commit is contained in:
luke-hagar-sp
2023-03-28 10:42:30 -05:00
parent 6adb023a3f
commit f1a5543be0
2 changed files with 18 additions and 13 deletions

View File

@@ -7,7 +7,7 @@ const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Plex Docs",
tagline: "Plex api documentation with a kick",
tagline: "Community Sourced Plex API Documentation with a kick",
favicon: "img/favicon.ico",
// Set the production url of your site here
@@ -60,6 +60,11 @@ const config = {
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
colorMode: {
defaultMode: "dark",
disableSwitch: true,
respectPrefersColorScheme: false,
},
// Replace with your project's social card
image: "img/docusaurus-social-card.jpg",
navbar: {
@@ -173,7 +178,7 @@ const config = {
announcementBar: {
id: "announcementBar_1",
content:
"If you have any feedback on the <a href='https://github.com/LukeHagar/plex-api-spec'>Website</a> or the <a href='https://github.com/LukeHagar/plex-api-spec'>API Specification</a> please let me know!",
"This is not an Official Plex.TV Resource. If you have any feedback on the <a href='https://github.com/LukeHagar/plex-api-spec'>Website</a> or the <a href='https://github.com/LukeHagar/plex-api-spec'>API Specification</a> please let me know!",
},
}),