diff --git a/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.html b/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.html index 2f6eb10..5d3cf3a 100644 --- a/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.html +++ b/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.html @@ -89,7 +89,18 @@
@for (colorConfig of colorFields; track colorConfig.key) {
- {{ colorConfig.label }} +
+ {{ colorConfig.label }} + + info + +
= [ - { key: 'backgroundColor', label: 'Main Background' }, - { key: 'primaryColor', label: 'Button Colors' }, - { key: 'secondaryColor', label: 'Secondary Color' }, - { key: 'surfaceColor', label: 'Panels & Cards' } + colorFields: Array<{ key: ColorField; label: string, description: string }> = [ + { key: 'backgroundColor', label: 'Meeting Background', description: 'The background color of your meeting screen' }, + { key: 'primaryColor', label: 'Control buttons', description: 'The color of the main control buttons (e.g., microphone, camera)' }, + { key: 'secondaryColor', label: 'Highlights & accents', description: 'Colors for active states, borders, and participant names' }, + { key: 'surfaceColor', label: 'Side panels & boxes', description: 'Background color for side panels and dialog boxes' } ]; private initialFormValue: MeetRoomTheme | null = null;