diff --git a/packages/common/component/BlockDescription.vue b/packages/common/component/BlockDescription.vue index 1d6fe295c..c4eb6774a 100644 --- a/packages/common/component/BlockDescription.vue +++ b/packages/common/component/BlockDescription.vue @@ -46,7 +46,7 @@ export default { border-radius: 4px; display: flex; align-items: center; - background-color: var(--te-common-bg-container); + background-color: var(--te-component-block-bg-color); } .setting-block { @@ -54,6 +54,9 @@ export default { align-items: center; gap: 4px; cursor: pointer; + .svg-icon { + color: var(--te-component-common-block-add-text-color); + } } .svg-icon { diff --git a/packages/common/component/BlockHistoryList.vue b/packages/common/component/BlockHistoryList.vue index 8ca06d0e5..446fc2ce1 100644 --- a/packages/common/component/BlockHistoryList.vue +++ b/packages/common/component/BlockHistoryList.vue @@ -50,18 +50,18 @@ defineEmits(['preview', 'restore']) font-size: 12px; padding: 2px 8px; margin-left: 5px; - background-color: var(--te-common-bg-tag); - color: var(--te-common-color-success); + background-color: var(--te-component-block-history-list-tag-bg-color); + color: var(--te-component-block-history-list-tag-text-color); border-radius: var(--te-base-border-radius-1); } .operation-text { - color: var(--te-common-text-emphasize); + color: var(--te-component-common-text-color-emphasize); & + .operation-text { margin-left: 8px; } } .empty { - color: var(--te-common-text-weaken); + color: var(--te-component-common-text-color-weaken); } diff --git a/packages/common/component/BlockLinkEvent.vue b/packages/common/component/BlockLinkEvent.vue index f502c1de5..5adbd8a43 100644 --- a/packages/common/component/BlockLinkEvent.vue +++ b/packages/common/component/BlockLinkEvent.vue @@ -1,11 +1,13 @@