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 @@