diff --git a/app/javascript/dashboard/assets/scss/_woot.scss b/app/javascript/dashboard/assets/scss/_woot.scss index d736d7b5a..29e3c7c60 100644 --- a/app/javascript/dashboard/assets/scss/_woot.scss +++ b/app/javascript/dashboard/assets/scss/_woot.scss @@ -146,17 +146,19 @@ --solid-2: 255 255 255; --solid-3: 255 255 255; --solid-active: 255 255 255; - --solid-amber: 252 232 193; - --solid-blue: 218 236 255; + --solid-amber: 255 228 181; + --solid-blue: 182 216 255; --solid-iris: 230 231 255; + --solid-purple: 202 202 255; + --solid-red: 255 212 219; --alpha-1: 67, 67, 67, 0.06; - --alpha-2: 201, 202, 207, 0.15; + --alpha-2: 196, 197, 198, 0.22; --alpha-3: 255, 255, 255, 0.96; - --black-alpha-1: 0, 0, 0, 0.12; + --black-alpha-1: 0, 0, 0, 0.08; --black-alpha-2: 0, 0, 0, 0.04; --border-blue: 39, 129, 246, 0.5; - --white-alpha: 255, 255, 255, 0.8; + --white-alpha: 255, 255, 255, 0.84; } .dark { @@ -240,16 +242,18 @@ --gray-12: 238 238 238; --background-color: 18 18 19; + --text-blue: 126 182 255; --border-strong: 52 52 52; --border-weak: 38 38 42; --solid-1: 23 23 26; --solid-2: 29 30 36; --solid-3: 44 45 54; --solid-active: 53 57 66; - --solid-amber: 42 37 30; - --solid-blue: 16 49 91; + --solid-amber: 56 50 41; + --solid-blue: 4 51 101; --solid-iris: 38 42 101; - --text-blue: 126 182 255; + --solid-purple: 51 51 107; + --solid-red: 78 46 55; --alpha-1: 36, 36, 36, 0.8; --alpha-2: 139, 147, 182, 0.15; diff --git a/app/javascript/dashboard/components-next/message/bubbles/Base.vue b/app/javascript/dashboard/components-next/message/bubbles/Base.vue index aaf0cb1ba..20c5bbb9f 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Base.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Base.vue @@ -20,9 +20,9 @@ const varaintBaseMap = { 'bg-n-solid-amber text-n-amber-12 [&_.prosemirror-mention-node]:font-semibold', [MESSAGE_VARIANTS.USER]: 'bg-n-slate-4 text-n-slate-12', [MESSAGE_VARIANTS.ACTIVITY]: 'bg-n-alpha-1 text-n-slate-11 text-sm', - [MESSAGE_VARIANTS.BOT]: 'bg-n-solid-iris text-n-slate-12', - [MESSAGE_VARIANTS.TEMPLATE]: 'bg-n-solid-iris text-n-slate-12', - [MESSAGE_VARIANTS.ERROR]: 'bg-n-ruby-4 text-n-ruby-12', + [MESSAGE_VARIANTS.BOT]: 'bg-n-solid-purple text-n-slate-12', + [MESSAGE_VARIANTS.TEMPLATE]: 'bg-n-solid-purple text-n-slate-12', + [MESSAGE_VARIANTS.ERROR]: 'bg-n-solid-red text-n-ruby-12', [MESSAGE_VARIANTS.EMAIL]: 'w-full', [MESSAGE_VARIANTS.UNSUPPORTED]: 'bg-n-solid-amber/70 border border-dashed border-n-amber-12 text-n-amber-12', diff --git a/theme/colors.js b/theme/colors.js index 919a9ecf3..4fc29db2a 100644 --- a/theme/colors.js +++ b/theme/colors.js @@ -386,6 +386,8 @@ export const colors = { amber: 'rgb(var(--solid-amber) / )', blue: 'rgb(var(--solid-blue) / )', iris: 'rgb(var(--solid-iris) / )', + purple: 'rgb(var(--solid-purple) / )', + red: 'rgb(var(--solid-red) / )', }, alpha: { 1: 'rgba(var(--alpha-1))',