change rgb color by var from DSFR

This commit is contained in:
Lisa Durand 2023-11-14 10:59:10 +01:00
parent 7c7f9113d2
commit cf31815890
4 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
[data-fr-theme="dark"] [data-fr-theme="dark"]
.card { .card {
background: none; background: none;
border: 1px solid rgb(74, 74, 125); border: 1px solid var(--background-action-low-blue-france);
} }
.card { .card {

View file

@ -6,7 +6,7 @@ $dossier-actions-bar-border-width: 1px;
[data-fr-theme="dark"] [data-fr-theme="dark"]
.dossier-edit .dossier-edit
.dossier-edit-sticky-footer { .dossier-edit-sticky-footer {
background-color: rgb(74, 74, 125); background-color: var(--background-action-low-blue-france);
border: none border: none
} }
.dossier-header { .dossier-header {

View file

@ -3,10 +3,10 @@
[data-fr-theme="dark"] [data-fr-theme="dark"]
.message { .message {
background: rgb(74, 74, 125); background: var(--background-action-low-blue-france);
&.inverted-background { &.inverted-background {
background: rgb(74, 74, 125); background: var(--background-action-low-blue-france);
} }
} }

View file

@ -61,7 +61,7 @@
.table { .table {
&.hoverable { &.hoverable {
tbody tr:hover { tbody tr:hover {
background-color: rgb(74, 74, 125); background-color: var(--background-action-low-blue-france);
} }
} }
} }