Skip to content

Commit 148825f

Browse files
guguclaude
andcommitted
Update primary and accent colors to blue (#2563eb) matching landing page
Replace the dark charcoal (#212121) primary and purple (#C177FC) accent with the landing page's blue (#2563eb) for consistent branding. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1f79f9f commit 148825f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

frontend/src/app/services/connections.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,13 @@ export class ConnectionsService {
163163
});
164164
} else {
165165
this.isCustomAccentedColor = false;
166-
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#C177FC' } });
166+
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
167167
}
168168
});
169169
} else {
170170
this.connection = { ...this.connectionInitialState };
171171
this.isCustomAccentedColor = false;
172-
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#C177FC' } });
172+
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
173173
}
174174

175175
console.log('this.defaultDisplayTable');
@@ -275,7 +275,7 @@ export class ConnectionsService {
275275
});
276276
} else {
277277
this.defaultDisplayTable = null;
278-
this._themeService.updateColors({ palettes: { primaryPalette: '#212121', accentedPalette: '#C177FC' } });
278+
this._themeService.updateColors({ palettes: { primaryPalette: '#2563eb', accentedPalette: '#2563eb' } });
279279
}
280280
return { ...res, connection };
281281
}),

frontend/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ const saasExtraProviders = (environment as any).saas
4545
: [];
4646
const colorConfig: IColorConfig<Palettes, Colors> = {
4747
palettes: {
48-
primaryPalette: '#212121',
49-
accentedPalette: '#C177FC',
48+
primaryPalette: '#2563eb',
49+
accentedPalette: '#2563eb',
5050
warnPalette: '#B71C1C',
5151
whitePalette: '#FFFFFF',
5252
warnDarkPalette: '#E53935',

0 commit comments

Comments
 (0)