diff --git a/web/src/components/repo/pipeline/PipelineLog.vue b/web/src/components/repo/pipeline/PipelineLog.vue index 1acd3ec006..55d36fb907 100644 --- a/web/src/components/repo/pipeline/PipelineLog.vue +++ b/web/src/components/repo/pipeline/PipelineLog.vue @@ -40,7 +40,7 @@ {{ $t('repo.pipeline.exit_code', { exitCode: step.exit_code }) }} diff --git a/web/src/style.css b/web/src/style.css index f79285552b..0855c2ef14 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -42,6 +42,7 @@ --wp-code-100: theme('colors.int-wp-secondary.300'); --wp-code-200: theme('colors.int-wp-secondary.600'); --wp-code-text-100: theme('colors.gray.200'); + --wp-code-text-alt-100: theme('colors.gray.300'); --wp-link-100: theme('colors.blue.600'); --wp-link-200: theme('colors.blue.700'); @@ -90,6 +91,7 @@ --wp-code-100: theme('colors.int-wp-secondary.700'); --wp-code-200: theme('colors.int-wp-secondary.800'); --wp-code-text-100: theme('colors.gray.300'); + --wp-code-text-alt-100: theme('colors.gray.400'); --wp-link-100: theme('colors.blue.400'); --wp-link-200: theme('colors.blue.500'); diff --git a/web/windi.config.ts b/web/windi.config.ts index ec6443954c..cdcfc551d3 100644 --- a/web/windi.config.ts +++ b/web/windi.config.ts @@ -195,6 +195,9 @@ export default defineConfig({ 'wp-code-text': { 100: 'var(--wp-code-text-100)', }, + 'wp-code-text-alt': { + 100: 'var(--wp-code-text-alt-100)', + }, 'wp-link': { 100: 'var(--wp-link-100)',