serif + monochrome emojis
chatgpt by devidw
Imported and mirrored from https://github.com/devidw/user-styles/raw/refs/heads/master/sites/chatgpt.com/index.user.css

Details
Authordevidw
LicenseUnlicense
Categoryunset
Created
Updated
Code size1.1 kB
Code checksumf1ae6d2
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name chat gpt
@version 2.0.0
@namespace d.wolf.gdn
@description chat gpt
@author David Wolf <d@wolf.gdn> (https://d.wolf.gdn)
@homepageURL https://github.com/devidw/user-styles/tree/master/sites/chatgpt.com/
@supportURL https://github.com/devidw/user-styles/issues
@license Unlicense
==/UserStyle== */
@-moz-document domain("chatgpt.com") {
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Emoji:wght@300..700&display=swap");
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smooth: always;
text-rendering: optimizeLegibility;
}
article,
#prompt-textarea {
font-family: "Noto Serif", "Noto Emoji", serif;
}
@media screen and (prefers-color-scheme: dark) {
.prose,
.prose h3,
.prose strong {
color: #ccc !important;
}
*::selection {
background-color: #81afff;
color: black;
}
}
}