diff --git a/web/components/chat/ChatModeratorNotification/ChatModeratorNotification.module.scss b/web/components/chat/ChatModeratorNotification/ChatModeratorNotification.module.scss index 22cc9d00e2..2adb2c46d1 100644 --- a/web/components/chat/ChatModeratorNotification/ChatModeratorNotification.module.scss +++ b/web/components/chat/ChatModeratorNotification/ChatModeratorNotification.module.scss @@ -2,9 +2,10 @@ .chatModerationNotification { background-color: var(--theme-background-primary); + color: var(--theme-color-components-chat-text); margin: 5px; border-radius: 15px; - border-color: rgba(0, 0, 0, 0.3); + border-color: var(--theme-color-components-text-on-dark); border-width: 1px; border-style: solid; padding: 10px 10px; diff --git a/web/style-definitions/tokens/color/default-theme.yaml b/web/style-definitions/tokens/color/default-theme.yaml index e8527b283b..6630daacb8 100644 --- a/web/style-definitions/tokens/color/default-theme.yaml +++ b/web/style-definitions/tokens/color/default-theme.yaml @@ -174,11 +174,11 @@ theme: chat: background: + value: 'var(--theme-color-palette-1)' + comment: '{theme.color.palette.0.comment}' + text: value: 'var(--theme-color-palette-15)' comment: '{theme.color.palette.15.comment}' - text: - value: 'var(--theme-color-palette-2)' - comment: '{theme.color.palette.2.comment}' content: background: diff --git a/web/styles/theme.less b/web/styles/theme.less index f57fe6e7e4..b1dd0640da 100644 --- a/web/styles/theme.less +++ b/web/styles/theme.less @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 19 Jan 2023 00:03:35 GMT +// Generated on Thu, 19 Jan 2023 03:14:14 GMT // // How to edit these values: // Edit the corresponding token file under the style-definitions directory @@ -83,8 +83,8 @@ @theme-color-components-secondary-button-text-disabled: var(--theme-color-action-disabled); // Disabled background @theme-color-components-secondary-button-border: var(--theme-color-action); // Text link/secondary light text @theme-color-components-secondary-button-border-disabled: var(--theme-color-action-disabled); // Disabled background -@theme-color-components-chat-background: var(--theme-color-palette-15); // Lighter background -@theme-color-components-chat-text: var(--theme-color-palette-2); // Dark alternate +@theme-color-components-chat-background: var(--theme-color-palette-1); // Dark primary +@theme-color-components-chat-text: var(--theme-color-palette-15); // Lighter background @theme-color-components-content-background: var(--theme-color-palette-15); // Lighter background @theme-color-components-modal-header-background: var(--theme-color-palette-1); // Dark secondary @theme-color-components-modal-header-text: var(--theme-color-palette-3); // Light primary diff --git a/web/styles/variables.css b/web/styles/variables.css index ea8a60e9eb..7604889af1 100644 --- a/web/styles/variables.css +++ b/web/styles/variables.css @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Thu, 19 Jan 2023 00:03:35 GMT + * Generated on Thu, 19 Jan 2023 03:14:14 GMT * * How to edit these values: * Edit the corresponding token file under the style-definitions directory @@ -85,8 +85,8 @@ --theme-color-components-secondary-button-text-disabled: var(--theme-color-action-disabled); /* Disabled background */ --theme-color-components-secondary-button-border: var(--theme-color-action); /* Text link/secondary light text */ --theme-color-components-secondary-button-border-disabled: var(--theme-color-action-disabled); /* Disabled background */ - --theme-color-components-chat-background: var(--theme-color-palette-15); /* Lighter background */ - --theme-color-components-chat-text: var(--theme-color-palette-2); /* Dark alternate */ + --theme-color-components-chat-background: var(--theme-color-palette-1); /* Dark primary */ + --theme-color-components-chat-text: var(--theme-color-palette-15); /* Lighter background */ --theme-color-components-content-background: var(--theme-color-palette-15); /* Lighter background */ --theme-color-components-modal-header-background: var(--theme-color-palette-1); /* Dark secondary */ --theme-color-components-modal-header-text: var(--theme-color-palette-3); /* Light primary */