diff --git a/docs/getting-started/configuration.md b/docs/getting-started/configuration.md index abadeb6ca..d4d336170 100644 --- a/docs/getting-started/configuration.md +++ b/docs/getting-started/configuration.md @@ -100,7 +100,7 @@ You can change the header background color by specifying the color code for the ```json { ..., - "headerColor": "#2196F3" + "headerColor": "#1565c0" } ``` diff --git a/docs/ja/getting-started/configuration.md b/docs/ja/getting-started/configuration.md index 548431557..96bcdac3d 100644 --- a/docs/ja/getting-started/configuration.md +++ b/docs/ja/getting-started/configuration.md @@ -100,7 +100,7 @@ Alfresco コンテンツアプリケーションの左上隅に表示される ```json { ..., - "headerColor": "#2196F3" + "headerColor": "#1565c0" } ``` diff --git a/src/app.config.json b/src/app.config.json index fb77dca77..f6e6e7ccc 100644 --- a/src/app.config.json +++ b/src/app.config.json @@ -25,7 +25,7 @@ }, "viewer.maxRetries": 1, "sharedLinkDateTimePickerType": "date", - "headerColor": "#2196F3", + "headerColor": "#1565c0", "languagePicker": true, "pagination": { "size": 25, diff --git a/src/app/components/current-user/current-user.component.theme.scss b/src/app/components/current-user/current-user.component.theme.scss index 34601f49c..a07979960 100644 --- a/src/app/components/current-user/current-user.component.theme.scss +++ b/src/app/components/current-user/current-user.component.theme.scss @@ -18,7 +18,7 @@ text-align: center; color: inherit; border-radius: 100%; - background-color: mat-color($background, card, 0.15); + background-color: mat-color($background, card, 0.12); } .current-user__full-name { diff --git a/src/app/store/initial-state.ts b/src/app/store/initial-state.ts index 4db70e686..ec1bc2678 100644 --- a/src/app/store/initial-state.ts +++ b/src/app/store/initial-state.ts @@ -27,7 +27,7 @@ import { AppState, AppStore } from '@alfresco/aca-shared/store'; export const INITIAL_APP_STATE: AppState = { appName: 'Alfresco Content Application', - headerColor: '#2196F3', + headerColor: '#1565c0', logoPath: 'assets/images/alfresco-logo-white.svg', languagePicker: false, sharedUrl: '',