Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

The project uses Go and Protocol Buffers. Make sure the following tools are installed:

- [Go](https://go.dev/doc/install) 1.20 or later
- [Go](https://go.dev/doc/install) 1.25 or later
- [Protocol Buffers](https://grpc.io/docs/languages/go/quickstart/)
- [GNU Make](https://www.gnu.org/software/make/)
- [QEMU-KVM](https://www.qemu.org/) for running local VMs
Expand All @@ -37,7 +37,7 @@ The HAL is a minimal Linux distribution used inside the confidential VM. To buil
```shell
git clone https://github.com/buildroot/buildroot.git
cd buildroot
git checkout 2024.11-rc2
git checkout 2025.08-rc3
make BR2_EXTERNAL=../cocos/hal/linux cocos_defconfig
make menuconfig # optional, for additional configuration
make
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Before proceeding, make sure you have the following installed:

- [Golang](https://go.dev/doc/install) (version 1.24 or later)
- [Golang](https://go.dev/doc/install) (version 1.25 or later)

## Getting COCOS AI

Expand Down
8 changes: 4 additions & 4 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* work well for content-centric websites.
*/

/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
Expand All @@ -17,7 +16,6 @@
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
Expand All @@ -34,9 +32,11 @@
filter: invert(1) hue-rotate(180deg);
}

/* This is a crucial addition to prevent issues with other images */
/* The filter should not be applied to logos, favicons, or other assets */
[data-theme='dark'] .navbar__logo img,
[data-theme='dark'] .footer img {
filter: none;
}

[data-theme='light'] .navbar__logo img {
filter: invert(1) hue-rotate(180deg);
}