Rounds corners back and returns old colors for Mistral AI Chat
Mistral AI Chat Wayback by zgoly

Details
Authorzgoly
LicenseMIT
Categorymistral
Created
Updated
Code size1.0 kB
Code checksum342a0391
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Mistral AI Chat Reborn
@namespace userstyles.world/user/zgoly
@version 1.0.2
@description Rounds corners back and returns old colors for Mistral AI Chat
@author zgoly
@license MIT
@preprocessor stylus
@var checkbox selectable_workspace_name 'Selectable workspace name' 1
==/UserStyle== */
@-moz-document domain("chat.mistral.ai") {
/* Color overrides */
.dark {
--us-primary: 20 15% 8%;
--us-secondary: 10 9% 14%;
--us-tertiary: 12 6.5% 19.1%;
--background: var(--us-primary);
--secondary-50: var(--us-secondary);
--secondary-100: var(--us-primary);
--secondary-200: var(--us-tertiary);
--sidebar-background: var(--us-secondary);
}
/* Borders */
pre,
.sm\\:rounded-lg {
border-radius: 16px !important;
}
.rounded,
.rounded-md,
.md\\:rounded {
border-radius: 12px;
}
.rounded-2,
.rounded-sm {
border-radius: 8px;
}
if selectable_workspace_name {
div[data-radix-menu-content] > div:first-of-type {
user-select: text;
}
}
}