Skip to content

Commit 351f588

Browse files
author
KDallas
committed
Replay of changes from 19th Nov (prior to move)
1 parent 1cc9a80 commit 351f588

8 files changed

Lines changed: 108 additions & 22 deletions

File tree

Deimos/Deimos.css

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Deimos/Deimos.less

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* "Fear" followed "Dread", although the latter is quite pathetic by comparison!
44
*
55
* Created by KDallas | V1.0 | 14/11/2024 | AMP 2.6.0.x
6+
* | V1.1 | 19/11/2025 | AMP 2.6.x
67
*
78
* https://wlab.au/
89
*
@@ -14,14 +15,16 @@
1415
@thBg2nd: #464037;
1516
@thBg3rd: #312d26;
1617

17-
@thLite: #c48c50;
18+
@thLite: #c48c50; // hsl(31, 49.6%, 54.1%)
1819
@thLite80: #c48c50cc;
1920
@thLite60: #c48e5099;
2021
@noticeTrans: #ff88001a;
2122

2223
@actionDark: #654522;
2324
@actionMed: #795f49;
2425
@actionLite: #a78e6d;
26+
@actionRed: hsl(31, 15%, 38%);
27+
@actionRedLite: hsl(31, 15%, 54%);
2528

2629
@greyLight: #888;
2730
@colorActive: #222;
@@ -48,6 +51,8 @@
4851
@bgGreenV2: rgba(0, 185, 0, 0.8);
4952
@bgGreenV2Hov: rgba(0, 135, 0, 0.7);
5053

54+
@ServerEntryImageHue: -15deg;
55+
5156

5257
body, .bodyTab, .tabHeaderContainer {
5358
color: @white70pct;
@@ -182,11 +187,11 @@ body {
182187
.ServerEntryImage {
183188
&.Blur {
184189
&.Offline {
185-
filter: sepia(1) saturate(2) hue-rotate(-15deg) brightness(0.2) blur(16px);
190+
filter: sepia(1) saturate(2) hue-rotate(@ServerEntryImageHue) brightness(0.2) blur(16px);
186191
}
187192
}
188193
&.Offline {
189-
filter: sepia(1) saturate(2) hue-rotate(-15deg) brightness(0.2);
194+
filter: sepia(1) saturate(2) hue-rotate(@ServerEntryImageHue) brightness(0.2);
190195
}
191196
}
192197

@@ -411,13 +416,21 @@ input.searchBox {
411416
}
412417

413418
input[type=checkbox] + span,
414-
input[type=checkbox][indeterminate] + span {
419+
input[type=checkbox].redOff + span {
415420
background-color: @actionMed;
416421
&::after {
417422
background-color: @actionLite;
418423
}
419424
}
420425

426+
// indeterminate (neither on or off) needs to override "redOff" class -- which probably shouldn't be set
427+
input[type=checkbox][indeterminate] + span {
428+
background-color: @actionRed;
429+
&::after {
430+
background-color: @actionRedLite;
431+
}
432+
}
433+
421434
input[type=checkbox]:checked + span,
422435
input[type=checkbox][indeterminate]:checked + span {
423436
background-color: @actionDark;

Fantasy/Fantasy.css

Lines changed: 12 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Fantasy/Fantasy.less

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*
55
* Created by IceOfWraith | V1.4 | 02/02/2024 | AMP 2.5.x.x
66
* KDallas | V2.0 | 16/11/2024 | AMP 2.6.0.x
7+
* | V2.1 | 19/11/2025 | AMP 2.6.x
78
*
89
* https://wlab.au/
910
*
@@ -26,6 +27,8 @@
2627
@actionDark: #652241;
2728
@actionMed: #794961;
2829
@actionLite: #a76d8b;
30+
@actionRed: hsl(0, 15%, 38%);
31+
@actionRedLite: hsl(0, 15%, 54%);
2932

3033
@greyLight: #888;
3134
@colorActive: #222;
@@ -49,6 +52,8 @@
4952
@bgGreenV2: rgba(201, 0, 118, 0.95); // bgPink is the new bgGreen!
5053
@bgGradient: linear-gradient(165deg, @actionDark 0%, @bgRedV2 45%, @thLite80 100%);
5154

55+
@ServerEntryImageHue: 215deg;
56+
5257

5358
body, .bodyTab, .tabHeaderContainer {
5459
color: @white70pct;
@@ -97,7 +102,7 @@ body, .bodyTab, .tabHeaderContainer {
97102

98103
body {
99104
background-color: black;
100-
background-image: url('./background-body.webp');
105+
background-image: url(../Images/Fantasy_body.webp);
101106
backdrop-filter: saturate(1.2) brightness(0.7);
102107
}
103108

@@ -190,11 +195,11 @@ body {
190195
.ServerEntryImage {
191196
&.Blur {
192197
&.Offline {
193-
filter: sepia(1) saturate(1.5) hue-rotate(215deg) brightness(0.2) blur(16px);
198+
filter: sepia(1) saturate(1.5) hue-rotate(@ServerEntryImageHue) brightness(0.2) blur(16px);
194199
}
195200
}
196201
&.Offline {
197-
filter: sepia(1) saturate(1.5) hue-rotate(215deg) brightness(0.2);
202+
filter: sepia(1) saturate(1.5) hue-rotate(@ServerEntryImageHue) brightness(0.2);
198203
}
199204
}
200205

@@ -469,13 +474,21 @@ input.searchBox {
469474
}
470475

471476
input[type=checkbox] + span,
472-
input[type=checkbox][indeterminate] + span {
477+
input[type=checkbox].redOff + span {
473478
background-color: @actionMed;
474479
&::after {
475480
background-color: @actionLite;
476481
}
477482
}
478483

484+
// indeterminate (neither on or off) needs to override "redOff" class -- which probably shouldn't be set
485+
input[type=checkbox][indeterminate] + span {
486+
background-color: @actionRed;
487+
&::after {
488+
background-color: @actionRedLite;
489+
}
490+
}
491+
479492
input[type=checkbox]:checked + span,
480493
input[type=checkbox][indeterminate]:checked + span {
481494
background-color: @actionDark;

Southern-Blue/Southern-Blue.css

Lines changed: 14 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Southern-Blue/Southern-Blue.less

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* And bottled for you
77
*
88
* Created by KDallas | V1.2 | 23/11/2024 | AMP 2.6.0.x
9+
* | V1.3 | 19/11/2025 | AMP 2.6.x
910
*
1011
* https://wlab.au/
1112
*
@@ -30,6 +31,8 @@
3031
@actionDark: hsl(208, 79%, 28%); // Pantone / PMS 19-4052 TCX / Classic Blue / #0f4c81
3132
@actionMed: hsl(208, 40%, 38%);
3233
@actionLite: hsl(208, 40%, 54%);
34+
@actionRed: hsl(0, 40%, 38%);
35+
@actionRedLite: hsl(0, 40%, 54%);
3336

3437
@greyLight: #888;
3538
@colorActive: #222;
@@ -50,14 +53,16 @@
5053
@white80pct: rgba(255, 255, 255, 0.8);
5154
@white95pct: rgba(255, 255, 255, 0.95);
5255

53-
@bgRedV2: hsla(360, 65%, 55%, 0.8);
54-
@bgRedMuted: hsla(360, 55%, 55%, 0.65);
56+
@bgRedV2: hsla(0, 65%, 55%, 0.8);
57+
@bgRedMuted: hsla(0, 55%, 55%, 0.65);
5558
@bgGreenV2: hsla(120, 100%, 35%, 0.8);
5659
@bgGreenMuted: hsla(120, 80%, 35%, 0.65);
5760
@bgGradient: linear-gradient(165deg, @actionDark 0%, @actionMed 45%, @thLite80 100%);
5861
@btnRedGrad: linear-gradient(165deg, @actionDark 0%, @bgRedV2 45%, @thLite80 100%);
5962
@btnGreenGrad: linear-gradient(165deg, @actionDark 0%, @bgGreenV2 45%, @thLite80 100%);
6063

64+
@ServerEntryImageHue: 180deg;
65+
6166

6267
body, .bodyTab, .tabHeaderContainer {
6368
color: @white70pct;
@@ -106,7 +111,7 @@ body, .bodyTab, .tabHeaderContainer {
106111

107112
body {
108113
background-color: @thBgMain;
109-
background-image: url('./background-body.png');
114+
background-image: url(../Images/SouthernBlue_body.png);
110115
}
111116

112117
.tabHeaderContainer {
@@ -198,11 +203,11 @@ body {
198203
.ServerEntryImage {
199204
&.Blur {
200205
&.Offline {
201-
filter: sepia(1) saturate(1.5) hue-rotate(180deg) brightness(0.2) blur(16px);
206+
filter: sepia(1) saturate(1.5) hue-rotate(@ServerEntryImageHue) brightness(0.2) blur(16px);
202207
}
203208
}
204209
&.Offline {
205-
filter: sepia(1) saturate(1.5) hue-rotate(180deg) brightness(0.2);
210+
filter: sepia(1) saturate(1.5) hue-rotate(@ServerEntryImageHue) brightness(0.2);
206211
}
207212
}
208213

@@ -520,7 +525,21 @@ input.searchBox {
520525
}
521526
}
522527

523-
input[type=checkbox] + span,
528+
input[type=checkbox] + span {
529+
background-color: @actionMed;
530+
&::after {
531+
background-color: @actionLite;
532+
}
533+
}
534+
535+
input[type=checkbox].redOff + span {
536+
background-color: @actionRed;
537+
&::after {
538+
background-color: @actionRedLite;
539+
}
540+
}
541+
542+
// indeterminate (neither on or off) needs to override "redOff" class -- which probably shouldn't be set
524543
input[type=checkbox][indeterminate] + span {
525544
background-color: @actionMed;
526545
&::after {

Steam-Classic/Steam-Classic.css

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Steam-Classic/Steam-Classic.less

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* Created by KDallas | V1.0 | 09/10/2024 | AMP 2.5.x.x
66
* | V1.1 | 09/11/2024 | AMP 2.6.0.x
77
* | V1.2 | 14/11/2024 | AMP 2.6.0.x
8+
* | V1.3 | 19/11/2025 | AMP 2.6.x
9+
*
810
* https://wlab.au/
911
*
1012
*/
@@ -14,14 +16,16 @@
1416
@steamBg2nd: #3e4637;
1517
@steamBg3rd: #2b3126;
1618

17-
@steamLite: #c4b550;
19+
@steamLite: #c4b550; // hsl(52.2, 49.6%, 54.1%)
1820
@steamLite80: #c4b550cc;
1921
@steamLite60: #c4b55099;
2022
@noticeTrans: #ff88001a;
2123

2224
@actionDark: #655c22;
2325
@actionMed: #797349;
2426
@actionLite: #a7a06d;
27+
@actionRed: hsl(52.2, 15%, 38%);
28+
@actionRedLite: hsl(52.2, 15%, 54%);
2529

2630
@greyLight: #888;
2731
@colorActive: #222;
@@ -48,6 +52,8 @@
4852
@bgGreenV2: rgba(0, 185, 0, 0.8);
4953
@bgGreenV2Hov: rgba(0, 135, 0, 0.7);
5054

55+
@ServerEntryImageHue: 20deg;
56+
5157

5258
body, .bodyTab, .tabHeaderContainer {
5359
background-color: @steamBgMain;
@@ -164,11 +170,11 @@ body, .bodyTab, .tabHeaderContainer {
164170
.ServerEntryImage {
165171
&.Blur {
166172
&.Offline {
167-
filter: sepia(1) saturate(2) hue-rotate(20deg) brightness(0.2) blur(16px);
173+
filter: sepia(1) saturate(2) hue-rotate(@ServerEntryImageHue) brightness(0.2) blur(16px);
168174
}
169175
}
170176
&.Offline {
171-
filter: sepia(1) saturate(2) hue-rotate(20deg) brightness(0.2);
177+
filter: sepia(1) saturate(2) hue-rotate(@ServerEntryImageHue) brightness(0.2);
172178
}
173179
}
174180

@@ -393,13 +399,21 @@ input.searchBox {
393399
}
394400

395401
input[type=checkbox] + span,
396-
input[type=checkbox][indeterminate] + span {
402+
input[type=checkbox].redOff + span {
397403
background-color: @actionMed;
398404
&::after {
399405
background-color: @actionLite;
400406
}
401407
}
402408

409+
// indeterminate (neither on or off) needs to override "redOff" class -- which probably shouldn't be set
410+
input[type=checkbox][indeterminate] + span {
411+
background-color: @actionRed;
412+
&::after {
413+
background-color: @actionRedLite;
414+
}
415+
}
416+
403417
input[type=checkbox]:checked + span,
404418
input[type=checkbox][indeterminate]:checked + span {
405419
background-color: @actionDark;

0 commit comments

Comments
 (0)