frontend: update color picker labels and descriptions for clarity and consistency

This commit is contained in:
Carlos Santos 2025-10-01 12:47:11 +02:00
parent 60ae2adf55
commit defd87db44

View File

@ -67,28 +67,27 @@ export class ConfigComponent implements OnInit {
colorFields: Array<{ key: ColorField; label: string; description: string }> = [ colorFields: Array<{ key: ColorField; label: string; description: string }> = [
{ {
key: 'backgroundColor', key: 'backgroundColor',
label: 'Meeting Background', label: 'Meeting background',
description: 'The background color of your meeting screen' description: 'Sets the background color of your meeting screen'
}, },
{ {
key: 'primaryColor', key: 'primaryColor',
label: 'Control buttons', label: 'Main controls',
description: 'The color of the main control buttons (e.g., microphone, camera)' description: 'Colors for the main control buttons (mic, camera, etc.)'
}, },
{ {
key: 'secondaryColor', key: 'secondaryColor',
label: 'Secondary buttons', label: 'Secondary elements',
description: description: 'Colors for logos, icons, borders and subtle details'
'Colors for secondary elements such as logo and icons backgrounds, borders and other subtle details'
}, },
{ {
key: 'accentColor', key: 'accentColor',
label: 'Highlights & accents', label: 'Highlights & accents',
description: 'Colors for active states, highlights and interactive elements' description: 'Colors for active states and highlighted items'
}, },
{ {
key: 'surfaceColor', key: 'surfaceColor',
label: 'Side panels & boxes', label: 'Panels & dialogs',
description: 'Background color for side panels and dialog boxes' description: 'Background color for side panels and dialog boxes'
} }
]; ];