From defd87db4434bc082fb9b15cbeafa7e82588f288 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Wed, 1 Oct 2025 12:47:11 +0200 Subject: [PATCH] frontend: update color picker labels and descriptions for clarity and consistency --- .../pages/console/config/config.component.ts | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts b/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts index cdf746d..7716222 100644 --- a/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts +++ b/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts @@ -67,28 +67,27 @@ export class ConfigComponent implements OnInit { colorFields: Array<{ key: ColorField; label: string; description: string }> = [ { key: 'backgroundColor', - label: 'Meeting Background', - description: 'The background color of your meeting screen' + label: 'Meeting background', + description: 'Sets the background color of your meeting screen' }, { key: 'primaryColor', - label: 'Control buttons', - description: 'The color of the main control buttons (e.g., microphone, camera)' + label: 'Main controls', + description: 'Colors for the main control buttons (mic, camera, etc.)' }, { key: 'secondaryColor', - label: 'Secondary buttons', - description: - 'Colors for secondary elements such as logo and icons backgrounds, borders and other subtle details' + label: 'Secondary elements', + description: 'Colors for logos, icons, borders and subtle details' }, { key: 'accentColor', label: 'Highlights & accents', - description: 'Colors for active states, highlights and interactive elements' + description: 'Colors for active states and highlighted items' }, { key: 'surfaceColor', - label: 'Side panels & boxes', + label: 'Panels & dialogs', description: 'Background color for side panels and dialog boxes' } ];