diff --git a/src/components/ActivitiesList/ActivitiesList.vue b/src/components/ActivitiesList/ActivitiesList.vue index 23e6118..ac22ee7 100644 --- a/src/components/ActivitiesList/ActivitiesList.vue +++ b/src/components/ActivitiesList/ActivitiesList.vue @@ -208,7 +208,7 @@ const { config } = storeToRefs(store) font-size: 28px; line-height: 150%; padding: 48px 68px 40px 68px; - color: rgba(0, 0, 0, 0.8); + color: var(--activities-titleColor); } .desc { padding: 0 68px; @@ -216,7 +216,7 @@ const { config } = storeToRefs(store) font-weight: 400; font-size: 16px; line-height: 200%; - color: rgba(0, 0, 0, 0.6); + color: var(--activities-introColor); } } } diff --git a/src/themes/business/style.json b/src/themes/business/style.json index 63e9b80..e3d0e6e 100644 --- a/src/themes/business/style.json +++ b/src/themes/business/style.json @@ -106,6 +106,8 @@ "btnBg": "linear-gradient(113.71deg, #435ACD 0%, #749CF3 100%)", "btnColor": "#FFFFFF", "detailBg": "#FFFFFF", - "radius": "16px" + "radius": "16px", + "titleColor": "rgba(0, 0, 0, 0.8)", + "introColor": "rgba(0, 0, 0, 0.6)" } } diff --git a/src/themes/dark/style.json b/src/themes/dark/style.json index e2c1ce8..28f711b 100644 --- a/src/themes/dark/style.json +++ b/src/themes/dark/style.json @@ -106,6 +106,8 @@ "btnBg": "linear-gradient(113.71deg, #435ACD 0%, #749CF3 100%)", "btnColor": "#FFFFFF", "detailBg": "linear-gradient(180deg, #494B63 0%, #5A5D82 100%)", - "radius": "8px" + "radius": "8px", + "titleColor": "#FFFFFF", + "introColor": "rgba(255, 255, 255, 0.8)" } } diff --git a/src/themes/fashion/style.json b/src/themes/fashion/style.json index 33eba67..ef19df6 100644 --- a/src/themes/fashion/style.json +++ b/src/themes/fashion/style.json @@ -106,6 +106,8 @@ "btnBg": "linear-gradient(113.71deg, #435ACD 0%, #749CF3 100%)", "btnColor": "#FFFFFF", "detailBg": "#FFFFFF", - "radius": "16px" + "radius": "16px", + "titleColor": "rgba(0, 0, 0, 0.8)", + "introColor": "rgba(0, 0, 0, 0.6)" } } diff --git a/src/themes/highend/style.json b/src/themes/highend/style.json index 1ef8355..da6f25e 100644 --- a/src/themes/highend/style.json +++ b/src/themes/highend/style.json @@ -106,6 +106,8 @@ "btnBg": "linear-gradient(90deg, #BA9B7A 0%, #DBC2A1 100%)", "btnColor": "rgba(0, 0, 0, 0.8)", "detailBg": "linear-gradient(180deg, #BA9B7A 0%, #DBC2A1 100%)", - "radius": "12px" + "radius": "12px", + "titleColor": "rgba(0, 0, 0, 0.8)", + "introColor": "rgba(0, 0, 0, 0.6)" } } diff --git a/src/themes/luxury/style.json b/src/themes/luxury/style.json index 0920a77..9175830 100644 --- a/src/themes/luxury/style.json +++ b/src/themes/luxury/style.json @@ -106,6 +106,8 @@ "btnBg": "#D3AB80", "btnColor": "#FFFFFF", "detailBg": "#FFFFFF", - "radius": "16px" + "radius": "16px", + "titleColor": "rgba(0, 0, 0, 0.8)", + "introColor": "rgba(0, 0, 0, 0.6)" } } diff --git a/src/themes/main/style.json b/src/themes/main/style.json index 6a2ce7b..fec27de 100644 --- a/src/themes/main/style.json +++ b/src/themes/main/style.json @@ -106,6 +106,8 @@ "btnBg": "linear-gradient(113.71deg, #435ACD 0%, #749CF3 100%)", "btnColor": "#FFFFFF", "detailBg": "#FFFFFF", - "radius": "16px" + "radius": "16px", + "titleColor": "rgba(0, 0, 0, 0.8)", + "introColor": "rgba(0, 0, 0, 0.6)" } }