Co-authored-by: GitHub Action <action@github.com> Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com>
19 lines
342 B
CSS
19 lines
342 B
CSS
@import "@opencode-ai/ui/styles/tailwind";
|
|
|
|
:root {
|
|
--background-rgb: 214, 219, 220;
|
|
--foreground-rgb: 0, 0, 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background-rgb: 0, 0, 0;
|
|
--foreground-rgb: 255, 255, 255;
|
|
}
|
|
}
|
|
|
|
body {
|
|
/* background: rgb(var(--background-rgb)); */
|
|
/* color: rgb(var(--foreground-rgb)); */
|
|
}
|