Skip to content

Commit 263fd0c

Browse files
committed
Lighter colours on mod list web
1 parent 7942455 commit 263fd0c

File tree

1 file changed

+31
-30
lines changed

1 file changed

+31
-30
lines changed

.github/workflows/generar-lista-de-mods.yml

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@ jobs:
6161
<title>TorkenMon - Lista de Mods</title>
6262
<style>
6363
:root {
64-
--primary-color: #4caf50;
64+
--primary-color: #3c8527;
6565
--secondary-color: #8bc34a;
66-
--bg-color: #121212;
67-
--card-bg: #1e1e1e;
68-
--text-color: #e0e0e0;
69-
--text-secondary: #aaaaaa;
70-
--link-color: #81c784;
71-
--border-color: #333333;
72-
--header-gradient-1: #2e7d32;
73-
--header-gradient-2: #1b5e20;
74-
--search-bg: #272727;
75-
--btn-hover: #388e3c;
66+
--bg-color: #f5f5f5;
67+
--card-bg: #ffffff;
68+
--text-color: #333333;
69+
--text-secondary: #666666;
70+
--link-color: #2e7d32;
71+
--border-color: #dddddd;
72+
--header-gradient-1: #4CAF50;
73+
--header-gradient-2: #3c8527;
74+
--search-bg: #ffffff;
75+
--btn-hover: #66BB6A;
7676
}
7777
7878
* {
@@ -162,22 +162,22 @@ jobs:
162162
}
163163
164164
.search-box {
165-
padding: 12px 15px;
165+
padding: 12px;
166166
width: 100%;
167167
max-width: 500px;
168168
border: 1px solid var(--border-color);
169-
border-radius: 8px;
169+
border-radius: 6px;
170170
font-size: 16px;
171171
flex-grow: 1;
172172
background-color: var(--search-bg);
173173
color: var(--text-color);
174-
transition: all 0.3s ease;
174+
transition: all 0.2s ease;
175175
}
176176
177177
.search-box:focus {
178178
outline: none;
179179
border-color: var(--primary-color);
180-
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
180+
box-shadow: 0 0 0 2px rgba(60, 133, 39, 0.15);
181181
}
182182
183183
.filter-options {
@@ -187,9 +187,9 @@ jobs:
187187
}
188188
189189
.stats {
190-
background-color: rgba(255, 255, 255, 0.05);
190+
background-color: #f8f9fa;
191191
padding: 15px;
192-
border-radius: 8px;
192+
border-radius: 6px;
193193
margin-bottom: 20px;
194194
border: 1px solid var(--border-color);
195195
}
@@ -201,11 +201,11 @@ jobs:
201201
}
202202
203203
.mod-item {
204-
background-color: rgba(255, 255, 255, 0.03);
205-
padding: 18px;
206-
margin-bottom: 12px;
207-
border-radius: 8px;
208-
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
204+
background-color: var(--card-bg);
205+
padding: 15px;
206+
margin-bottom: 10px;
207+
border-radius: 6px;
208+
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
209209
display: flex;
210210
justify-content: space-between;
211211
align-items: center;
@@ -215,7 +215,7 @@ jobs:
215215
216216
.mod-item:hover {
217217
transform: translateY(-2px);
218-
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
218+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
219219
}
220220
221221
.mod-name {
@@ -283,9 +283,9 @@ jobs:
283283
}
284284
285285
.download-links {
286-
background-color: rgba(255, 255, 255, 0.05);
287-
padding: 20px;
288-
border-radius: 8px;
286+
background-color: #f8f9fa;
287+
padding: 15px;
288+
border-radius: 6px;
289289
margin: 20px 0;
290290
border: 1px solid var(--border-color);
291291
}
@@ -297,10 +297,11 @@ jobs:
297297
298298
.discord-section {
299299
text-align: center;
300-
margin-top: 40px;
301-
padding: 30px;
302-
background-color: rgba(88, 101, 242, 0.1);
303-
border-radius: 10px;
300+
margin-top: 30px;
301+
padding: 20px;
302+
background-color: #f0f7ff;
303+
border-radius: 8px;
304+
border: 1px solid #e0e7ff;
304305
}
305306
306307
.discord-btn {

0 commit comments

Comments
 (0)