Skip to content

Commit

Permalink
Fixing colors (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeWarpy committed Jun 17, 2023
1 parent 5501a68 commit b5cc8af
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "launcher",
"preductname": "Almyria Launcher",
"version": "1.0.1",
"version": "1.0.2",
"description": "Launcher pour le serveur Almyria",
"main": "src/app.js",
"author": "Luuxis, LeWarpy <coucou@lewarpy.fr",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/css/panels/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
}

.progress-bar::-webkit-progress-value {
background-color: #00bd7a;
background-color: #EB4760;
border-radius: 10px;
}

Expand Down
14 changes: 7 additions & 7 deletions src/assets/css/panels/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
width: 20px;
height: 10px;
background: #F1F1F1;
border: 4px solid #00bd7a;
border: 4px solid var(--couleur-primaire);
transition: background-color .2s, border .2s;
border-radius: 18px;
cursor: pointer;
Expand All @@ -255,7 +255,7 @@
.slider-touch-left span:after,
.slider-touch-right span:after {
content: attr(value);
color: #00bd7a;
color: var(--couleur-primaire);
font: normal normal bold 12px/18px Roboto;
white-space: nowrap;
pointer-events: none;
Expand Down Expand Up @@ -283,7 +283,7 @@
display: block;
height: 100%;
width: 0%;
background: #00bd7a;
background: var(--couleur-primaire);
transition: background-color .2s;
}

Expand Down Expand Up @@ -313,7 +313,7 @@
font: normal normal bold 13px/20px Roboto;
border-radius: 18px;
padding: 8px 30px;
background-color: #00bd7a;
background-color: var(--couleur-primaire);
cursor: pointer;
margin-left: 20px;
transition: color .2s, background-color .2s;
Expand All @@ -329,7 +329,7 @@
font: normal normal bold 13px/20px Roboto;
border-radius: 18px;
padding: 8px 30px;
background-color: #00bd7a;
background-color: var(--couleur-primaire);
cursor: pointer;
margin-left: 20px;
transition: color .2s, background-color .2s;
Expand Down Expand Up @@ -429,7 +429,7 @@

.select {
border-radius: 40px;
background-color: #00bd7a;
background-color: var(--couleur-primaire);
font: normal normal normal 12px/18px Roboto;
transition: color .2s, box-shadow .2s;
border: none;
Expand Down Expand Up @@ -470,7 +470,7 @@
}

.checkbox-settings:checked+label {
background-color: #00bd7a;
background-color: var(--couleur-primaire);
}

.checkround {
Expand Down

0 comments on commit b5cc8af

Please sign in to comment.