Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/app/services/connections.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ export class ConnectionsService {
});
} else {
this.isCustomAccentedColor = false;
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#C177FC' } });
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
}
});
} else {
this.connection = { ...this.connectionInitialState };
this.isCustomAccentedColor = false;
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#C177FC' } });
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
}

console.log('this.defaultDisplayTable');
Expand Down Expand Up @@ -275,7 +275,7 @@ export class ConnectionsService {
});
} else {
this.defaultDisplayTable = null;
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#C177FC' } });
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
}
return { ...res, connection };
}),
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const saasExtraProviders = (environment as any).saas
: [];
const colorConfig: IColorConfig<Palettes, Colors> = {
palettes: {
primaryPalette: '#212121',
accentedPalette: '#C177FC',
primaryPalette: '#2563eb',
accentedPalette: '#2563eb',
Comment on lines +48 to +49

Copilot AI Feb 6, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The color update is incomplete. While the primary theme colors have been changed to #2563eb, there are numerous hardcoded instances of the old colors throughout the codebase that have not been updated:

  1. The old primary color #212121 appears in multiple CSS files (app.component.css, db-tables-list.component.css, and others) where it's used for backgrounds, borders, and text colors
  2. The old accent color #C177FC appears in several places including saved-filters-dialog.component.css, company.component.html, and page-not-found.component.html
  3. In db-tables-list.component.ts, #212121 is still used as the default folder icon color and in the folderIconColors array

For consistent branding as described in the PR, these additional occurrences should be evaluated and potentially updated as well. At minimum, the folder icon default color in db-tables-list.component.ts line 88 and the getFolderIconColor method (lines 366, 372, 376) should be reviewed since they specifically use the old primary color for UI elements.

Copilot uses AI. Check for mistakes.
warnPalette: '#B71C1C',
whitePalette: '#FFFFFF',
warnDarkPalette: '#E53935',
Expand Down
Loading