fix(chatgpt): lightmode improvments (#235)

This commit is contained in:
Isabel 2023-10-01 08:26:44 +01:00 committed by GitHub
parent d3107a2ccb
commit c496f3b4dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,13 +2,13 @@
@name ChatGPT Catppuccin
@namespace github.com/catppuccin/userstyles/styles/chatgpt
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/chatgpt
@version 0.0.4
@version 0.0.5
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/chatgpt/catppuccin.user.css
@description Soothing pastel theme for ChatGPT
@author Catppuccin
@license MIT
@preprocessor less
@preprocessor less
@var select lightFlavor "Light Flavor" ["latte:Latte*", "frappe:Frappe", "macchiato:Macchiato", "mocha:Mocha"]
@var select darkFlavor "Dark Flavor" ["latte:Latte", "frappe:Frappe", "macchiato:Macchiato", "mocha:Mocha*"]
==/UserStyle== */
@ -229,7 +229,11 @@
/* Search */
div[class*="bg-gray-700"] {
background-color: @surface0 !important;
background-color: if(
@lookup = latte,
@base,
@surface0
) !important;
}
[class*="text-gray-"],
@ -289,7 +293,11 @@
/* Buttons */
.btn-neutral {
background-color: @surface1 !important;
background-color: if(
@lookup = latte,
@base,
@surface1
) !important;
color: @text !important;
}
@ -334,6 +342,11 @@
.dark .dark\:bg-gray-800 {
background-color: @surface0;
}
.dark .dark\:hover\:bg-gray-800:hover {
background-color: @surface1;
}
.radix-state-active\:bg-gray-800[data-state="active"] {
background-color: @surface0;
}