Skip to content

Commit

Permalink
PRIME-2571 update editable colour (#2460)
Browse files Browse the repository at this point in the history
* initial commit

* initial commit

* Revert "initial commit"

This reverts commit 4a6d143.
  • Loading branch information
bergomi02 authored Mar 5, 2024
1 parent 3deec67 commit 0c929b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
21 changes: 7 additions & 14 deletions prime-angular-frontend/src/scss/_palette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,17 @@
//

$palettes: (
blue: (
lightest: #f8f9fb,
blue: (lightest: #f8f9fb,
lighter: #d6ddec,
light: #0f48ae,
bright: #3565BB,
base: #003366, // BC Gov. Primary
dark: #001b4a
dark: #001b4a),
yellow: (base: #ffb200 // BC Gov. Secondary
),
yellow: (
base: #ffb200 // BC Gov. Secondary
),
red: (
base: #ed202a
),
green: (
base: green
),
grey: (
lightest: #eeeeee,
red: (base: #ed202a),
green: (base: green),
grey: (lightest: #eeeeee,
lighter: #e1e1e1,
light: #bdbdbd, // divider colour
base: #575757, // secondary text colour
Expand Down
3 changes: 2 additions & 1 deletion prime-angular-frontend/src/scss/mixins/_statuses.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
/// status colours are not Enrolment or Site Registration specific
@mixin statuses() {
.status {

&.under-review,
&.locked {
color: theme-palette(yellow);
}

&.editable {
color: theme-palette(blue);
color: theme-palette(blue, bright);
}

&.approved {
Expand Down

0 comments on commit 0c929b8

Please sign in to comment.