Skip to content

Commit 7c60211

Browse files
committed
change theme to cyan
1 parent 5a81ee2 commit 7c60211

File tree

2 files changed

+33
-20
lines changed

2 files changed

+33
-20
lines changed

docusaurus.config.ts

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ const config: Config = {
88
favicon: 'img/favicon.ico',
99

1010
// Set the production url of your site here
11-
url: 'https://your-docusaurus-site.example.com',
11+
url: 'https://docs.papercloud.tech',
1212
// Set the /<baseUrl>/ pathname under which your site is served
1313
// For GitHub pages deployment, it is often '/<projectName>/'
1414
baseUrl: '/',
1515

1616
// GitHub pages deployment config.
1717
// If you aren't using GitHub pages, you don't need these.
1818
organizationName: 'papercloudtech', // Usually your GitHub org/user name.
19-
projectName: 'docusaurus', // Usually your repo name.
19+
projectName: 'docs', // Usually your repo name.
2020

2121
onBrokenLinks: 'warn',
2222
onBrokenMarkdownLinks: 'warn',
@@ -38,7 +38,7 @@ const config: Config = {
3838
// Please change this to your repo.
3939
// Remove this to remove the "edit this page" links.
4040
editUrl:
41-
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
41+
'https://github.com/papercloudtech/docs/edit/main/',
4242
},
4343
theme: {
4444
customCss: './src/css/custom.css',
@@ -117,8 +117,21 @@ const config: Config = {
117117
},
118118
],
119119
},
120+
{
121+
title: 'More',
122+
items: [
123+
{
124+
label: 'Contributors',
125+
href: 'https://github.com/papercloudtech/',
126+
},
127+
{
128+
label: 'Sponsor',
129+
href: 'https://github.com/sponsors/papercloudtech',
130+
},
131+
],
132+
},
120133
],
121-
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`,
134+
copyright: `Copyright © ${new Date().getFullYear()} PaperCloud Inc.`,
122135
},
123136
prism: {
124137
theme: prismThemes.github,

src/css/custom.css

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66

77
/* You can override the default Infima variables here. */
88
:root {
9-
--ifm-color-primary: #2e8555;
10-
--ifm-color-primary-dark: #29784c;
11-
--ifm-color-primary-darker: #277148;
12-
--ifm-color-primary-darkest: #205d3b;
13-
--ifm-color-primary-light: #33925d;
14-
--ifm-color-primary-lighter: #359962;
15-
--ifm-color-primary-lightest: #3cad6e;
9+
--ifm-color-primary: #00bcd4; /* Cyan */
10+
--ifm-color-primary-dark: #00acc1;
11+
--ifm-color-primary-darker: #0097a7;
12+
--ifm-color-primary-darkest: #00838f;
13+
--ifm-color-primary-light: #26c6da;
14+
--ifm-color-primary-lighter: #4dd0e1;
15+
--ifm-color-primary-lightest: #80deea;
1616
--ifm-code-font-size: 95%;
17-
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
17+
--docusaurus-highlighted-code-line-bg: rgba(0, 188, 212, 0.1); /* Cyan tint */
1818
}
1919

2020
/* For readability concerns, you should choose a lighter palette in dark mode. */
2121
[data-theme='dark'] {
22-
--ifm-color-primary: #25c2a0;
23-
--ifm-color-primary-dark: #21af90;
24-
--ifm-color-primary-darker: #1fa588;
25-
--ifm-color-primary-darkest: #1a8870;
26-
--ifm-color-primary-light: #29d5b0;
27-
--ifm-color-primary-lighter: #32d8b4;
28-
--ifm-color-primary-lightest: #4fddbf;
29-
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
22+
--ifm-color-primary: #00e5ff; /* Brighter cyan for dark mode */
23+
--ifm-color-primary-dark: #00d4ff;
24+
--ifm-color-primary-darker: #00c4e4;
25+
--ifm-color-primary-darkest: #00b4d9;
26+
--ifm-color-primary-light: #00f7ff;
27+
--ifm-color-primary-lighter: #66fcff;
28+
--ifm-color-primary-lightest: #99feff;
29+
--docusaurus-highlighted-code-line-bg: rgba(0, 229, 255, 0.3); /* Cyan tint */
3030
}

0 commit comments

Comments
 (0)