A Nord theme style for ChatGPT
ChatGPT Nord Theme by steven-na
Details
Authorsteven-na
LicenseNo License
Categorychatgpt
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
You can change the Cascadia Code import to a font you'd like
Source code
/* ==UserStyle==
@name ChatGPT Nord Theme
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A Nord theme style for ChatGPT
@author steven-na
==/UserStyle== */
@font-face {
font-family: 'Cascadia Code';
src: url('https://cdn.jsdelivr.net/gh/microsoft/cascadia-code@v2008.01/CascadiaCode.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/microsoft/cascadia-code@v2008.01/CascadiaCode.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@-moz-document domain("chatgpt.com") {
:root {
--gray-700: #4c566a;
--gray-750: #3b4252;
--gray-800: #434c5e;
--gray-900: #2e3440;
}
.dark {
--text-error: #bf616a;
--link: #78869c;
--link-hover: #5e83b3;
}
html,
body,
* {
font-family: 'Cascadia Code', monospace !important;
letter-spacing: -0.5px !important;
}
a {
font-style: italic;
text-decoration: none;
}
a:hover {
font-style: italic;
text-decoration: none;
}
}