Skip to content

Commit 121c2e9

Browse files
committed
fix: update new project dialog colors to match darker theme
Align all background colors in the new project dialog with the new darker sidebar theme. Update gamepad SVG colors for visibility on dark backgrounds.
1 parent a573a75 commit 121c2e9

2 files changed

Lines changed: 23 additions & 23 deletions

File tree

src/assets/new-project/assets/css/style.css

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ body {
3030
}
3131

3232
#download-phcode-banner {
33-
background-color: #2e3031;
33+
background-color: #1e1e1e;
3434
color: white;
3535
border-radius: 10px;
3636
margin-top: 26px;
@@ -40,7 +40,7 @@ body {
4040
}
4141

4242
#download-phcode-banner:hover {
43-
background-color: #505357;
43+
background-color: #333333;
4444
}
4545

4646
p {
@@ -87,7 +87,7 @@ img {
8787
}
8888

8989
.side-nav {
90-
background: #5D5F60;
90+
background: #252525;
9191
height: 100vh;
9292
position: fixed;
9393
right: 0;
@@ -134,7 +134,7 @@ img {
134134
outline: 0;
135135
height: 100%;
136136
overflow-y: auto;
137-
background: #3C3F41;
137+
background: #252525;
138138
box-shadow: -61px 0px 93px 8px rgb(0 0 0 / 51%);
139139
border-radius: 20px 0px 0px 20px;
140140
padding: 30px 50px;
@@ -173,14 +173,14 @@ img {
173173

174174
.modal-nav-tabs .nav-item.show .nav-link, .modal-nav-tabs .nav-link.active {
175175
color: #fff;
176-
background-color: #2E3031;
176+
background-color: #1e1e1e;
177177
border-color: #dee2e6 #dee2e6 #fff;
178178
border-bottom: 2px solid #016DC4 !important;
179179

180180
}
181181

182182
.ex-input input {
183-
background: #555555;
183+
background: #333333;
184184
border-radius: 4px;
185185
height: 46px;
186186
width: calc(100% - 20px);
@@ -287,7 +287,7 @@ img {
287287

288288
.ex-tabs .nav-item.show .nav-link, .ex-tabs .nav-link.active {
289289
color: #fff;
290-
background-color: #2E3031;
290+
background-color: #1e1e1e;
291291
border-color: #016DC4;
292292
}
293293

@@ -304,7 +304,7 @@ img {
304304
}
305305

306306
.project-card {
307-
background: #333535;
307+
background: #2a2a2a;
308308
border-radius: 5px;
309309
padding: 20px 15px;
310310
height: 220px;
@@ -314,11 +314,11 @@ img {
314314
}
315315

316316
.project-card:hover {
317-
background: #292b2b;
317+
background: #1e1e1e;
318318
}
319319

320320
.project-card-active {
321-
background: #292b2b;
321+
background: #1e1e1e;
322322
}
323323

324324
.project-list {
@@ -401,7 +401,7 @@ img {
401401
.btn-remove {
402402
width: 74px;
403403
height: 26px;
404-
background: #3F3F3F;
404+
background: #2a2a2a;
405405
border-radius: 3px;
406406
font-weight: 600;
407407
font-size: 12px;
@@ -646,7 +646,7 @@ img {
646646
}
647647

648648
.code-editor-card {
649-
background: #3C3F41;
649+
background: #252525;
650650
box-shadow: 0px 0px 93px rgba(0, 0, 0, 0.51);
651651
padding: 35px 50px;
652652
height: 100%;
@@ -679,7 +679,7 @@ img {
679679
.close-btn {
680680
width: 35px;
681681
height: 35px;
682-
background: #3F3F3F;
682+
background: #2a2a2a;
683683
border: 1px solid #202020;
684684
border-radius: 4px;
685685
padding: 5px;
@@ -754,7 +754,7 @@ img {
754754

755755
.project-type-list li a.active {
756756
color: #fff;
757-
background-color: #2E3031;
757+
background-color: #1e1e1e;
758758
border-color: #016DC4;
759759
}
760760

@@ -769,14 +769,14 @@ img {
769769
}
770770

771771
.recent-project-card {
772-
background: #2E3031;
772+
background: #1e1e1e;
773773
border-radius: 10px;
774774
max-height: 370px;
775775
padding: 20px 30px;
776776
}
777777

778778
.no-project-card {
779-
background: #2E3031;
779+
background: #1e1e1e;
780780
border-radius: 10px;
781781
max-height: 370px;
782782
padding: 20px 30px;
@@ -854,7 +854,7 @@ img {
854854
}
855855

856856
.recent-project-list li:hover {
857-
background: #3F3F3F;
857+
background: #2a2a2a;
858858
cursor: pointer;
859859
}
860860

@@ -949,7 +949,7 @@ img {
949949
}
950950

951951
.website-detail input {
952-
background: #555555;
952+
background: #333333;
953953
border: 1px solid transparent;
954954
border-radius: 2px;
955955
height: 48px;
@@ -991,7 +991,7 @@ img {
991991
}
992992

993993
.create-btn:disabled {
994-
background: #555555;
994+
background: #333333;
995995
cursor: unset;
996996
}
997997

@@ -1010,7 +1010,7 @@ img {
10101010
}
10111011

10121012
.preview-box {
1013-
background: #2E3031;
1013+
background: #1e1e1e;
10141014
border-radius: 5px;
10151015
width: 100%;
10161016
height: 95%;

src/assets/new-project/images/video-game-gamepad.svg

Lines changed: 3 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)