Adjust highlight color as requested by the company

This commit is contained in:
Aljaž Grilc
2025-05-28 19:46:49 +02:00
parent be08136a31
commit c67adcdc99

View File

@@ -5,34 +5,34 @@
}
.bes-highlight-spelling {
color: hsl(211, 100%, 60%);
background: hsla(211, 100%, 60%, 0.3);
color: rgb(242, 90, 90);
background: hsla(0, 100%, 67%, 0.18);
}
.bes-highlight-ai {
color: hsl(108, 100%, 35%);
background: hsla(108, 100%, 35%, 0.3);
color: rgb(139, 62, 223);
background: hsla(262, 70%, 56%, 0.18);
}
.bes-highlight-grammar {
color: hsl(27, 100%, 45%);
background: hsla(27, 100%, 45%, 0.3);
color: rgb(60, 120, 220);
background: hsla(220, 80%, 56%, 0.18);
}
@media (prefers-color-scheme: dark) {
.bes-highlight-spelling {
color: hsl(211, 100%, 55%);
background: hsla(211, 100%, 55%, 0.3);
color: rgb(255, 120, 120);
background: hsla(0, 100%, 67%, 0.32);
}
.bes-highlight-ai {
color: hsl(108, 100%, 40%);
background: hsla(108, 100%, 40%, 0.3);
color: rgb(180, 120, 255);
background: hsla(262, 70%, 56%, 0.32);
}
.bes-highlight-grammar {
color: hsl(27, 100%, 65%);
background: hsla(27, 100%, 65%, 0.3);
color: rgb(100, 164, 243);
background: hsla(220, 80%, 56%, 0.32);
}
}