Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f31ae62

Browse files
committedNov 7, 2024·
remaining changes
1 parent 5e765b6 commit f31ae62

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed
 

‎src/css/custom.css

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,29 @@
2222
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
2323
--ifm-navbar-height: 5rem;
2424
--ifm-font-family-base: "Poppins", "Work Sans", sans-serif;
25+
--ifm-background-color-primary: #f6f6f1;
2526
}
2627

2728
[data-theme="dark"] {
28-
--ifm-color-primary: #ff865b80;
29+
--ifm-color-primary: #ff865be5;
2930
--ifm-color-primary-dark: #ff865bcc;
30-
--ifm-color-primary-darker: #ff865be5;
31-
--ifm-color-primary-darkest: #ff865b;
32-
--ifm-color-primary-light: #ff865b33;
31+
--ifm-color-primary-darker: #ff865b80;
32+
--ifm-color-primary-darkest: #ff865b80;
33+
--ifm-color-primary-light: #ff865b;
3334
--ifm-color-primary-lighter: #ff865b1a;
3435
--ifm-color-primary-lightest: #171717;
3536
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
37+
--ifm-background-color-primary: #171717;
3638
}
3739

3840
body {
3941
font-family: var(--ifm-font-family-base);
4042
}
4143

44+
#__docusaurus {
45+
background-color: var(--ifm-background-color-primary);
46+
}
47+
4248
.navbar .navbar__item {
4349
align-items: center;
4450
display: flex;

‎src/theme/Footer/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ function CustomFooter(props) {
1414
<div className="flex gap-1 pr-2 py-px items-start">
1515
<img
1616
loading="lazy"
17-
src="https://cdn.builder.io/api/v1/image/assets/TEMP/c2b003ad3b20290b59f3b08f614c5151ce5af2538be8ff145c1aae4ecfa170f8?"
18-
className="aspect-[1.17] object-contain object-center w-7 fill-white overflow-hidden shrink-0 max-w-full"
17+
src="img/logo/white_coderabbit.svg"
18+
style={{
19+
maxWidth: "200px",
20+
height: "auto",
21+
}}
1922
/>
20-
<div className="text-center text-xl font-extrabold leading-7 tracking-tighter self-stretch grow whitespace-nowrap text-customWhite">
21-
CodeRabbit
22-
</div>
2323
</div>
2424
<div className="flex items-stretch max-w-md text-xs font-medium mt-10 max-md:mt-10 font-satoshi leading-5 text-customGray">
2525
CodeRabbit is an innovative, AI-driven platform that transforms

‎static/img/preview.png

347 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.