Skip to content

Commit 751a686

Browse files
committed
feat: adjust colors
1 parent 3cf8855 commit 751a686

File tree

2 files changed

+20
-32
lines changed

2 files changed

+20
-32
lines changed

src/App.vue

Lines changed: 18 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ export default {
138138
/* Liquid Glass Effect for AppBar */
139139
.liquid-glass-app-bar {
140140
position: relative;
141-
background: rgba(255, 255, 255, 0.1) !important;
141+
background: rgba(0, 0, 0, 0.25) !important;
142142
backdrop-filter: blur(20px) saturate(180%);
143143
-webkit-backdrop-filter: blur(20px) saturate(180%);
144-
border: 1px solid rgba(255, 255, 255, 0.125);
145-
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
144+
border: 1px solid rgba(255, 255, 255, 0.08);
145+
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
146146
box-shadow:
147-
0 8px 32px 0 rgba(31, 38, 135, 0.37),
148-
inset 0 1px 0 rgba(255, 255, 255, 0.1);
147+
0 8px 32px 0 rgba(0, 0, 0, 0.4),
148+
inset 0 1px 0 rgba(255, 255, 255, 0.05);
149149
overflow: hidden;
150150
}
151151
@@ -159,10 +159,9 @@ export default {
159159
background: linear-gradient(
160160
90deg,
161161
transparent,
162-
rgba(255, 255, 255, 0.1),
162+
rgba(255, 255, 255, 0.08),
163163
transparent
164164
);
165-
animation: shimmer 3s infinite;
166165
z-index: 1;
167166
}
168167
@@ -175,24 +174,24 @@ export default {
175174
bottom: 0;
176175
background: linear-gradient(
177176
135deg,
178-
rgba(255, 255, 255, 0.1) 0%,
179-
rgba(255, 255, 255, 0.05) 50%,
180-
rgba(255, 255, 255, 0.1) 100%
177+
rgba(255, 255, 255, 0.08) 0%,
178+
rgba(255, 255, 255, 0.03) 50%,
179+
rgba(255, 255, 255, 0.08) 100%
181180
);
182181
z-index: 0;
183182
}
184183
185184
/* Liquid Glass Effect for Footer */
186185
.liquid-glass-footer {
187186
position: relative;
188-
background: rgba(255, 255, 255, 0.1) !important;
187+
background: rgba(0, 0, 0, 0.25) !important;
189188
backdrop-filter: blur(20px) saturate(180%);
190189
-webkit-backdrop-filter: blur(20px) saturate(180%);
191-
border: 1px solid rgba(255, 255, 255, 0.125);
192-
border-top: 1px solid rgba(255, 255, 255, 0.2);
190+
border: 1px solid rgba(255, 255, 255, 0.08);
191+
border-top: 1px solid rgba(255, 255, 255, 0.12);
193192
box-shadow:
194-
0 -8px 32px 0 rgba(31, 38, 135, 0.37),
195-
inset 0 -1px 0 rgba(255, 255, 255, 0.1);
193+
0 -8px 32px 0 rgba(0, 0, 0, 0.4),
194+
inset 0 -1px 0 rgba(255, 255, 255, 0.05);
196195
overflow: hidden;
197196
}
198197
@@ -206,10 +205,9 @@ export default {
206205
background: linear-gradient(
207206
90deg,
208207
transparent,
209-
rgba(255, 255, 255, 0.1),
208+
rgba(255, 255, 255, 0.08),
210209
transparent
211210
);
212-
animation: shimmer 3s infinite;
213211
z-index: 1;
214212
}
215213
@@ -222,23 +220,13 @@ export default {
222220
bottom: 0;
223221
background: linear-gradient(
224222
135deg,
225-
rgba(255, 255, 255, 0.1) 0%,
226-
rgba(255, 255, 255, 0.05) 50%,
227-
rgba(255, 255, 255, 0.1) 100%
223+
rgba(255, 255, 255, 0.08) 0%,
224+
rgba(255, 255, 255, 0.03) 50%,
225+
rgba(255, 255, 255, 0.08) 100%
228226
);
229227
z-index: 0;
230228
}
231229
232-
/* Shimmer Animation */
233-
@keyframes shimmer {
234-
0% {
235-
left: -100%;
236-
}
237-
100% {
238-
left: 100%;
239-
}
240-
}
241-
242230
/* Ensure content stays above the effects */
243231
.liquid-glass-app-bar > *,
244232
.liquid-glass-footer > * {

src/plugins/vuetify.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import { createVuetify, ThemeDefinition } from 'vuetify'
1414
const myCustomLightTheme: ThemeDefinition = {
1515
dark: false,
1616
colors: {
17-
background: '#121212',
18-
surface: '#121212',
17+
background: '#000000',
18+
surface: '#000000',
1919
primary: '#ffd738',
2020
secondary: '#03DAC6',
2121
error: '#B00020',

0 commit comments

Comments
 (0)