Skip to content

Commit 3886bc4

Browse files
committed
Removed any mentions
1 parent 7325955 commit 3886bc4

9 files changed

Lines changed: 13 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The frontend is an **Angular 22** single-page app (standalone components + Signa
7878
| Routing | Lazy-loaded, nested/parameterized routes (`/site/:siteId/...`) |
7979
| State | Angular Signals inside injectable services (one service per feature) |
8080
| HTTP | `HttpClient` + functional interceptors (auth + site, global error) |
81-
| Styling | CSS variables (AVEVA purple/white theme), functional-first layout |
81+
| Styling | CSS variables, functional-first layout |
8282

8383
### Prerequisites
8484

docanalytics-web/src/app/features/admin/admin.component.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
font-size: 11px;
7575
padding: 2px 8px;
7676
border-radius: 999px;
77-
background: color-mix(in srgb, var(--aveva-purple, #3d1152) 12%, transparent);
77+
background: color-mix(in srgb, var(--brand-purple, #3d1152) 12%, transparent);
7878
margin: 1px 3px 1px 0;
7979
}
8080

@@ -111,7 +111,7 @@
111111
}
112112

113113
.btn {
114-
background: var(--aveva-purple, #3d1152);
114+
background: var(--brand-purple, #3d1152);
115115
color: #fff;
116116
border: none;
117117
border-radius: 6px;
@@ -213,7 +213,7 @@
213213
}
214214

215215
.btn-confirm-primary {
216-
background: var(--aveva-purple, #3d1152);
216+
background: var(--brand-purple, #3d1152);
217217
border: none;
218218
color: #fff;
219219
border-radius: 4px;
@@ -236,7 +236,7 @@
236236

237237
code {
238238
font-size: 12px;
239-
background: color-mix(in srgb, var(--aveva-purple, #3d1152) 10%, transparent);
239+
background: color-mix(in srgb, var(--brand-purple, #3d1152) 10%, transparent);
240240
padding: 2px 6px;
241241
border-radius: 4px;
242242
}

docanalytics-web/src/app/features/dashboard/status-distribution-chart/status-distribution-chart.component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
color: var(--dark-gray-3);
3838
text-align: right;
3939
}
40-
/* status colors = fills only (AVEVA rule) */
40+
/* status colors = fills only (brand rule) */
4141
.st-completed {
4242
background: var(--status-confirmed);
4343
}

docanalytics-web/src/app/features/dashboard/status-distribution-chart/status-distribution-chart.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import { SeriesPoint } from '../../../core/models/dashboard.model';
6565
color: var(--dark-gray-3);
6666
text-align: right;
6767
}
68-
/* status colors = fills only (AVEVA rule) */
68+
/* status colors = fills only (brand rule) */
6969
.st-completed {
7070
background: var(--status-confirmed);
7171
}

docanalytics-web/src/app/features/provisioning/provisioning.component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@
249249
margin-bottom: 20px;
250250
padding: 20px 24px;
251251
border-radius: 12px;
252-
background: var(--aveva-purple);
252+
background: var(--brand-purple);
253253
color: #fff;
254254
}
255255

docanalytics-web/src/app/layout/shell/shell.component.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
height: 100vh;
55
}
66

7-
/* Sidebar = brand chrome → AVEVA purple is allowed here */
7+
/* Sidebar = brand chrome → brand purple is allowed here */
88
.sidebar {
9-
background: var(--aveva-purple);
9+
background: var(--brand-purple);
1010
color: #fff;
1111
padding: 16px 12px;
1212
}

docanalytics-web/src/app/layout/shell/shell.component.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
<div class="shell">
22
<aside class="sidebar">
33
<div class="brand">
4-
<img
5-
src="AVEVA_Logo_color_RGB.png"
6-
alt="AVEVA"
7-
style="width: 130px; height: auto; display: block; filter: brightness(0) invert(1)"
8-
/>
94
<div
105
style="
116
font-family: var(--font-body);

docanalytics-web/src/app/shared/components/site-selector/site-selector.component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
padding: 10px 12px;
6565
cursor: pointer;
6666
}
67-
/* AVEVA spec: hovered/active row = light gray */
67+
/* Design spec: hovered/active row = light gray */
6868
.dd-list li.active {
6969
background: var(--light-gray);
7070
}

docanalytics-web/src/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
2-
/* ===== AVEVA Digital UI Palette (exact hex from style guide) ===== */
3-
--aveva-purple: #3d1152; /* brand chrome ONLY: top bar, sidebar, active tab */
2+
/* ===== Brand UI Palette (exact hex from style guide) ===== */
3+
--brand-purple: #3d1152; /* brand chrome ONLY: top bar, sidebar, active tab */
44
--purple: #6b04a8; /* marketing background fills only */
55
--bright-purple: #c530ff;
66
/* Neutrals / "furniture" */

0 commit comments

Comments
 (0)