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: '#2563eb', accentedPalette: '#2563eb' } });
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#2563eb' } });
}
});
} else {
this.connection = { ...this.connectionInitialState };
this.isCustomAccentedColor = false;
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', 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: '#2563eb', accentedPalette: '#2563eb' } });
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#2563eb' } });
}
return { ...res, connection };
}),
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const saasExtraProviders = (environment as any).saas
: [];
const colorConfig: IColorConfig<Palettes, Colors> = {
palettes: {
primaryPalette: '#2563eb',
primaryPalette: '#212121',
accentedPalette: '#2563eb',

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 PR title states "update primary color to blue", but this change updates the accentedPalette from '#C177FC' (purple) to '#2563eb' (blue), not the primaryPalette which remains '#212121' (dark gray/black). This creates a discrepancy between the PR description and the actual implementation. Consider updating the PR title to "Update accent color to blue" or similar to accurately reflect the change.

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