From 478c31defae4de8cc3c5c66d992278feb9e74462 Mon Sep 17 00:00:00 2001 From: lethdat Date: Tue, 27 Jan 2026 23:55:10 +0700 Subject: [PATCH] update styles and colors for improved UI consistency --- .../profile/components/ProfileInfoCard.vue | 8 ++-- src/routes/upload/components/UploadQueue.vue | 19 +++------ uno.config.ts | 40 ++++++++++++++++++- 3 files changed, 47 insertions(+), 20 deletions(-) diff --git a/src/routes/profile/components/ProfileInfoCard.vue b/src/routes/profile/components/ProfileInfoCard.vue index 81137c3..396cc46 100644 --- a/src/routes/profile/components/ProfileInfoCard.vue +++ b/src/routes/profile/components/ProfileInfoCard.vue @@ -59,14 +59,14 @@ const emit = defineEmits<{
-
+ +
diff --git a/src/routes/upload/components/UploadQueue.vue b/src/routes/upload/components/UploadQueue.vue index 23544bd..3c1bd4b 100644 --- a/src/routes/upload/components/UploadQueue.vue +++ b/src/routes/upload/components/UploadQueue.vue @@ -17,7 +17,8 @@ const emit = defineEmits<{ diff --git a/uno.config.ts b/uno.config.ts index a1c7b7d..fcf213c 100644 --- a/uno.config.ts +++ b/uno.config.ts @@ -152,7 +152,7 @@ export default defineConfig({ 950: "#030712", }, white: { - DEFAULT: "#ffffff", + DEFAULT: "#faf8f8", light: "#f8f9fa", }, light: { @@ -169,7 +169,7 @@ export default defineConfig({ DEFAULT: "#f3f4f6", light: "#fafafa", dark: "#e5e7eb", - } + }, }, boxShadow: { "primary-box": "2px 2px 10px #aff6b8", @@ -209,6 +209,11 @@ export default defineConfig({ --glow-stop-3: #f8682f; --glow-stop-4: #e62c6d; --glow-stop-5: #b25aff; + --capra-ramp-1: #ffc400; + --capra-ramp-2: #ff9100; + --capra-ramp-3: #ff530f; + --capra-ramp-4: #e62c6d; + --capra-ramp-5: #b25aff; } :focus { outline-color: ${context.theme.colors?.primary?.active}; @@ -258,6 +263,37 @@ export default defineConfig({ background-position-y: 100%; } } +@keyframes gradientShift { + 0% { + background-position: 0% 0%; + } + 12.5% { + background-position: 75% 25%; + } + 25% { + background-position: 100% 50%; + } + 37.5% { + background-position: 75% 75%; + } + 50% { + background-position: 50% 100%; + } + 62.5% { + background-position: 25% 75%; + } + 75% { + background-position: 25% 50%; + } + 87.5% { + background-position: 25% 25%; + } + 100% { + background-position: 100% 100%; + } +} + + `; }, },