💄 美化深渊页面

This commit is contained in:
BTMuli
2023-06-14 23:08:41 +08:00
parent 0b5fbf5953
commit f9297b8927
8 changed files with 38 additions and 21 deletions

View File

@@ -30,6 +30,6 @@ const props = defineProps<TuaDetailBattleProps>();
width: 100%;
text-align: left;
font-size: 12px;
color: #faf7e8;
color: var(--common-text-3);
}
</style>

View File

@@ -20,6 +20,6 @@ const props = defineProps<TuaDetailLevelProps>();
border-radius: 5px;
width: 100%;
height: 1px;
background: var(--common-color-white);
background: var(--common-text-2);
}
</style>

View File

@@ -46,8 +46,7 @@ const getFontSize: ComputedRef<string> = computed(() => {
.tud-t-title {
font-size: v-bind(getFontSize);
color: var(--common-color-white);
text-shadow: 0 0 10px rgb(0 0 0 / 20%);
color: var(--common-text-2);
}
.tud-t-val {
@@ -56,7 +55,12 @@ const getFontSize: ComputedRef<string> = computed(() => {
font-family: var(--font-text);
font-size: v-bind(getFontSize);
color: var(--common-color-white);
text-shadow: #fec90b 0 0 5px;
text-shadow: 0 0 10px var(--common-color-yellow);
}
.dark .tud-t-val {
color: var(--common-color-yellow);
text-shadow: none;
}
.tud-t-val img {

View File

@@ -51,15 +51,19 @@ const props = withDefaults(defineProps<TAOProps>(), {
.tuao-title {
font-family: var(--font-title);
font-size: 20px;
color: var(--common-color-white);
text-shadow: 0 0 10px rgb(0 0 0 / 20%);
color: var(--common-text-2);
}
.tuao-val-text {
font-family: var(--font-text);
font-size: 20px;
color: var(--common-color-white);
text-shadow: #fec90b 0 0 10px;
text-shadow: 0 0 10px var(--common-color-yellow);
}
.dark .tuao-val-text {
color: var(--common-color-yellow);
text-shadow: none;
}
.tuao-val-icons {