Skip to content

Instantly share code, notes, and snippets.

@badpenguin
Last active May 29, 2025 08:55
Show Gist options
  • Save badpenguin/53830833349572442752919afd5ace35 to your computer and use it in GitHub Desktop.
Save badpenguin/53830833349572442752919afd5ace35 to your computer and use it in GitHub Desktop.
cloud.ai white theme + allow printing (require "stylus" chrome extension)
@-moz-document domain("claude.ai") {
body {
background: white !important;
--font-system: Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--font-tiempos: Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--font-styrene-b: Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
/* box above the answer */
.group.bg-gradient-to-b {
background: #f0f0f0;
}
.group.bg-gradient-to-b p {
color: #333;
}
/* small buttons */
button.text-xs {
color: #333;
}
/* sidebar */
.bg-gradient-to-b {
background: rgb(249, 249, 249);
}
@media print {
.fixed.z-sidebar, header, .sticky.bottom-0 {
display: none !important;
}
html, body, .h-screen {
height: initial !important;
max-height: initial !important;
}
.overflow-hidden {
overflow-y: auto !important;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment