feat: update colors for v4 (#10660)

Porting changes from https://github.com/chatwoot/chatwoot/pull/10552

---------

Co-authored-by: Pranav <pranav@chatwoot.com>
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com>
Co-authored-by: Sojan <sojan@pepalo.com>
Co-authored-by: iamsivin <iamsivin@gmail.com>
Co-authored-by: Pranav <pranavrajs@gmail.com>
This commit is contained in:
Shivam Mishra
2025-01-15 17:13:03 +05:30
committed by GitHub
parent a4c0c76fa5
commit 7fd8b4d03a
79 changed files with 660 additions and 795 deletions

View File

@@ -71,12 +71,9 @@ export default {
</script>
<template>
<blockquote
ref="messageContainer"
class="message border-l-2 border-slate-100 dark:border-slate-700"
>
<blockquote ref="messageContainer" class="message border-l-2 border-n-weak">
<p class="header">
<strong class="text-slate-700 dark:text-slate-100">
<strong class="text-n-slate-11">
{{ author }}
</strong>
{{ $t('SEARCH.WROTE') }}
@@ -93,18 +90,18 @@ export default {
}
.message-content::v-deep p,
.message-content::v-deep li::marker {
@apply text-slate-700 dark:text-slate-100 mb-1;
@apply text-n-slate-11 mb-1;
}
.header {
@apply text-slate-500 dark:text-slate-300 mb-1;
@apply text-n-slate-11 mb-1;
}
.message-content {
@apply break-words text-slate-600 dark:text-slate-200;
@apply break-words text-n-slate-11;
}
.message-content::v-deep .searchkey--highlight {
@apply text-woot-600 dark:text-woot-500 text-sm font-semibold;
@apply text-n-slate-12 text-sm font-semibold;
}
</style>