Skip to content

Commit

Permalink
fix: Accessibility - change color for WCAG AA
Browse files Browse the repository at this point in the history
Signed-off-by: julieng <julien.gattelier@gmail.com>
  • Loading branch information
SphinxKnight authored and AllForNothing committed Oct 25, 2023
1 parent adb066c commit b20a079
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
}

.label-critical {
background:red;
color:#621501;
background:#a8242f;
color:#ffffff;
}


.label-danger {
background:#e64524!important;
color:#621501!important;
background:#d83818!important;
color:#ffffff!important;
}

.label-medium {
Expand All @@ -19,13 +18,13 @@
}

.label-low {
background: #007CBB;
color:#cab6b1;
background: #005c8a;
color:#ffffff;
}

.label-none {
background-color: grey;
color:#bad7ba;
background-color: #737373;
color:#ffffff;
}

.no-border {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,14 @@ $row-height: 48px;
align-items: center;
}


.label-critical {
background:red;
color:#621501;
background:#a8242f;
color:#ffffff;
}


.label-danger {
background:#e64524!important;
color:#621501!important;
background:#d83818!important;
color:#ffffff!important;
}

.label-medium {
Expand All @@ -82,13 +80,13 @@ $row-height: 48px;
}

.label-low {
background: #007CBB;
color:#cab6b1;
background: #005c8a;
color:#ffffff;
}

.label-none {
background-color: grey;
color:#bad7ba;
background-color: #737373;
color:#ffffff;
}

.no-border {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@
}

.label-critical {
background:red;
color:#621501;
background:#a8242f;
color:#ffffff;
}


.label-danger {
background:#e64524!important;
color:#621501!important;
background:#d83818!important;
color:#ffffff!important;
}

.label-medium {
Expand All @@ -35,13 +34,13 @@
}

.label-low {
background: #007CBB;
color:#cab6b1;
background: #005c8a;
color:#ffffff;
}

.label-none {
background-color: grey;
color:#bad7ba;
background-color: #737373;
color:#ffffff;
}

.no-border {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,19 @@ $twenty-two-pixel: 18px;
}

.bar-block-critical {
background-color: red;
background-color: #a8242f;
}

.bar-block-high {
background-color: #e64524;
background-color: #d83818;
}

.bar-block-medium {
background-color: orange;
}

.bar-block-low {
background-color: #007CBB;
background-color: #005c8a;
}

.bar-block-none {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,29 +157,28 @@ hr{
}

.label-critical {
background:red;
color:#621501;
background:#a8242f;
color:#ffffff;
}


.label-danger {
background:#e64524!important;
color:#621501!important;
background:#d83818!important;
color:#ffffff!important;
}

.label-medium {
background-color: orange;
color:#621501;
background-color: orange;
color:#621501;
}

.label-low {
background: #007CBB;
color:#cab6b1;
background: #005c8a;
color:#ffffff;
}

.label-none {
background-color: grey;
color:#bad7ba;
background-color: #737373;
color:#ffffff;
}

.no-border {
Expand Down

0 comments on commit b20a079

Please sign in to comment.