Skip to content

Commit

Permalink
update grass color in a few places
Browse files Browse the repository at this point in the history
  • Loading branch information
hsanger committed Nov 12, 2024
1 parent af08b42 commit aab2c29
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/editor/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
main {
display: flex;
background-color: #49993e;
background-color: #5b8939;
color: white;
}
Expand Down
2 changes: 1 addition & 1 deletion client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<link rel="manifest" href="./manifest.json" />
<style>
body {
background-color: #49993e;
background-color: #5b8939;
}
body > :not(.loading-logo) {
opacity: 0;
Expand Down
2 changes: 1 addition & 1 deletion client/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Suroi - 2D Battle Royale",
"short_name": "Suroi",
"description": "Open-source 2D battle royale game inspired by surviv.io.",
"background_color": "#49993e",
"background_color": "#5b8939",
"start_url": ".",
"display": "fullscreen",
"orientation": "landscape",
Expand Down
8 changes: 4 additions & 4 deletions client/src/scss/pages/dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}

#customize-menu {
background-color: #3e8235;
background-color: #4c722f;
max-width: 850px;
}

Expand Down Expand Up @@ -288,7 +288,7 @@
padding-bottom: 10px;
padding-top: 10px;
z-index: 1000;
background-color: #49993e;
background-color: #5b8939;
width: 100%;
font-size: 35px;
font-weight: bold;
Expand Down Expand Up @@ -745,15 +745,15 @@
}

#customize-tabs {
background: #49993e;
background: #5b8939;
}

#customize-tab-bar .tab {
@include variables.text-shadow;
padding-top: 7px;

&.active {
background: #49993e;
background: #5b8939;
}

&>img {
Expand Down
2 changes: 1 addition & 1 deletion client/src/scss/palette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $grey_bg: #444444;
$bg: #3d3e48;
$transparent_bg: #16161675;
$light_transparent_bg: #c5c5c52a;
$grass_bg: #49993e;
$grass_bg: #5b8939;

// Buttons
$primary: #0d6efd;
Expand Down

0 comments on commit aab2c29

Please sign in to comment.