Merge pull request #279 from rivet-dev/NicholasKissel/docs-dark-theme

fix(docs): restore dark theme styling
This commit is contained in:
Nathan Flurry 2026-03-24 23:26:28 -07:00 committed by GitHub
commit 4fa28061e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 5 deletions

View file

@ -8,8 +8,8 @@
},
"colors": {
"primary": "#ff4f00",
"light": "#ff4f00",
"dark": "#ff4f00"
"light": "#ff6a2a",
"dark": "#cc3f00"
},
"favicon": "/favicon.svg",
"logo": {
@ -36,6 +36,7 @@
"href": "https://discord.gg/auCecybynK"
},
{
"label": "GitHub",
"type": "github",
"href": "https://github.com/rivet-dev/sandbox-agent"
}
@ -127,5 +128,6 @@
]
}
]
}
},
"styles": ["/theme.css"]
}

View file

@ -20,7 +20,6 @@ body {
color: var(--sa-text);
}
/*
a {
color: var(--sa-primary);
}
@ -41,6 +40,13 @@ select {
color: var(--sa-text);
}
code,
pre {
background-color: var(--sa-card);
border: 1px solid var(--sa-border);
color: var(--sa-text);
}
.card,
.mintlify-card,
.docs-card {
@ -64,4 +70,3 @@ select {
.alert-danger {
border-color: var(--sa-danger);
}
*/