dark gpt
dark rgb gpt by minnieo
Details
Authorminnieo
LicenseMIT
Categorychat.openai.com
Created
Updated
Size4.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name darkgpt/rgb
@namespace github.com/openstyles/stylus
@version 1.0.1
@description chatgpt dark rgb custom
@author minnie
@preprocessor stylus
@license MIT
@var select fnt "font" {
"courier": "1",
"lato": "2",
"roboto": "3"
}
@var checkbox rgb "rgb text" 0
@var color fntCol "font color" "#fff"
@var color bgCol "bg color" "#000"
==/UserStyle== */
@-moz-document domain("chatgpt.com") {
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Indie+Flower&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
if (fnt)== 1{
* {
font-family: 'Courier New', monospace !important;
}
} else if (fnt)==2 {
* {
font-family: 'lato', sans-serif !important;
}
} else if (fnt)==3 {
* {
font-family: 'roboto', sans-serif !important;
}
}
if (rgb)==1 {
p, h1, h2, h3, h4, h5, h6, li,
code.hljs, code[class*="language-"], pre[class*="language-"] {
animation: changeColor 5s infinite;
}
}
:root {
--bg: bgCol;
}
* {
color: fntCol;
}
@keyframes changeColor {
0% { color: rgb(255, 58, 216); } /* Red */
25% { color: rgb(255, 255, 0); } /* Yellow */
50% { color: rgb(121, 216, 121); } /* Green */
75% { color: rgb(118, 118, 255); } /* Blue */
100% { color: rgb(255, 58, 216); } /* Magenta */
}
#prompt-textarea::placeholder {
color: transparent;
}
body {
background-color: var(--bg) !important;
background-image: none !important;
}
*[class*="bg-gray-50"] {
color: white !important;
background-color: var(--bg) !important;
background-image: none !important;
}
*[class*="bg-gray-100"] {
color: #eee !important;
background-color: var(--bg) !important;
background-image: none !important;
}
.text-gray-800 {
/* color: #eee !important; */
}
*[class*="bg-gray-700"] {
background-color: var(--bg) !important;
background-image: none !important;
}
*[class*="bg-gray-800"] {
background-color: var(--bg) !important;
background-image: none !important;
}
*[class*="bg-gray-850"] {
background-color: var(--bg) !important;
background-image: none !important;
}
*[class*="bg-gray-900"] {
color: #bbb;
background-color: var(--bg) !important;
background-image: none !important;
}
*[class*="border-gray"] {
border: none;
}
*[class*="bg-vert-dark-gradient"] {
background: rgba(0, 0, 0, .5) !important;
backdrop-filter: blur(20px);
}
*[class*="bg-gradient-to-l"] {
background-image: none;
}
.markdown *[class*="bg-"] {
background-color: var(--bg) !important;
background-image: none !important;
}
*:has(> #prompt-textarea) {
background-color: var(--bg) !important;
}
#prompt-textarea ~ button {
background-color: unset !important;
}
.dark .btn-neutral {
background-color: var(--bg) !important;
border: none;
}
.bg-token-main-surface-primary {
background-color: var(--bg) !important;
}
}