From 06f4d26184d29a927cbc0176703291e5b6764cc4 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Thu, 19 Oct 2023 13:38:17 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20=E8=A7=92=E8=89=B2=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E6=B7=B1=E8=89=B2=E6=A8=A1=E5=BC=8F=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../userCharacter/tuc-detail-desc-constellation.vue | 5 +++-- .../userCharacter/tuc-detail-desc-relic.vue | 4 ++-- .../userCharacter/tuc-detail-desc-weapon.vue | 2 +- src/components/userCharacter/tuc-detail-desc.vue | 11 +++++------ src/components/userCharacter/tuc-detail-overlay.vue | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/userCharacter/tuc-detail-desc-constellation.vue b/src/components/userCharacter/tuc-detail-desc-constellation.vue index 1b5339ec..a320ac50 100644 --- a/src/components/userCharacter/tuc-detail-desc-constellation.vue +++ b/src/components/userCharacter/tuc-detail-desc-constellation.vue @@ -40,7 +40,7 @@ function parseDesc(desc: string): string { while (match !== null) { const color = match[1]; const text = match[2]; - desc = desc.replace(match[0], `${text}`); + desc = desc.replace(match[0], `${text}`); match = reg.exec(desc); } desc = desc.replace(/\\n/g, "
"); @@ -60,11 +60,12 @@ function parseDesc(desc: string): string { .tuc-ddc-top { height: 20px; - color: var(--tgc-blue-1); + color: var(--box-text-3); } .tuc-ddc-bottom { height: 20px; + color: var(--box-text-1); } .tuc-ddc-bottom :nth-child(1) { diff --git a/src/components/userCharacter/tuc-detail-desc-relic.vue b/src/components/userCharacter/tuc-detail-desc-relic.vue index e516df3e..25139348 100644 --- a/src/components/userCharacter/tuc-detail-desc-relic.vue +++ b/src/components/userCharacter/tuc-detail-desc-relic.vue @@ -48,7 +48,7 @@ const props = defineProps(); .tuc-ddrc-top { height: 20px; - color: var(--tgc-dark-1); + color: var(--box-text-1); } .tuc-ddrc-top :nth-child(1) { @@ -70,7 +70,7 @@ const props = defineProps(); } .tuc-ddrd-title { - color: var(--tgc-dark-1); + color: var(--box-text-3); font-family: var(--font-title); font-size: 16px; } diff --git a/src/components/userCharacter/tuc-detail-desc-weapon.vue b/src/components/userCharacter/tuc-detail-desc-weapon.vue index 71e5cc78..8d20d7b3 100644 --- a/src/components/userCharacter/tuc-detail-desc-weapon.vue +++ b/src/components/userCharacter/tuc-detail-desc-weapon.vue @@ -49,7 +49,7 @@ const box = computed(() => { align-items: start; justify-content: space-around; margin-left: 5px; - color: var(--tgc-dark-1); + color: var(--box-text-1); } .tuc-ddwc-top { diff --git a/src/components/userCharacter/tuc-detail-desc.vue b/src/components/userCharacter/tuc-detail-desc.vue index 04af8fb2..77173169 100644 --- a/src/components/userCharacter/tuc-detail-desc.vue +++ b/src/components/userCharacter/tuc-detail-desc.vue @@ -15,14 +15,14 @@