diff --git a/web/src/components/repo/pipeline/PipelineItem.vue b/web/src/components/repo/pipeline/PipelineItem.vue
index cf4b4fd3c1..71783a46b2 100644
--- a/web/src/components/repo/pipeline/PipelineItem.vue
+++ b/web/src/components/repo/pipeline/PipelineItem.vue
@@ -7,7 +7,7 @@
'bg-yellow-400 dark:bg-dark-200': pipeline.status === 'pending',
'bg-red-400 dark:bg-red-800': pipelineStatusColors[pipeline.status] === 'red',
'bg-gray-600 dark:bg-gray-500': pipelineStatusColors[pipeline.status] === 'gray',
- 'bg-lime-400 dark:bg-lime-900': pipelineStatusColors[pipeline.status] === 'green',
+ 'bg-woodpecker-400 dark:bg-lime-900': pipelineStatusColors[pipeline.status] === 'green',
'bg-blue-400 dark:bg-blue-900': pipelineStatusColors[pipeline.status] === 'blue',
}"
/>
diff --git a/web/src/components/repo/pipeline/PipelineLog.vue b/web/src/components/repo/pipeline/PipelineLog.vue
index f18c69dc4b..25b9cbd775 100644
--- a/web/src/components/repo/pipeline/PipelineLog.vue
+++ b/web/src/components/repo/pipeline/PipelineLog.vue
@@ -83,7 +83,7 @@
{{ $t('repo.pipeline.exit_code', { exitCode: step.exit_code }) }}
diff --git a/web/src/components/repo/pipeline/PipelineStatusIcon.vue b/web/src/components/repo/pipeline/PipelineStatusIcon.vue
index 0b3cb294cc..612cf3e940 100644
--- a/web/src/components/repo/pipeline/PipelineStatusIcon.vue
+++ b/web/src/components/repo/pipeline/PipelineStatusIcon.vue
@@ -8,7 +8,7 @@
:class="{
'text-red-400': pipelineStatusColors[status] === 'red',
'text-gray-400': pipelineStatusColors[status] === 'gray',
- 'text-lime-400': pipelineStatusColors[status] === 'green',
+ 'text-woodpecker-400': pipelineStatusColors[status] === 'green',
'text-blue-400': pipelineStatusColors[status] === 'blue',
}"
/>
diff --git a/web/src/views/Login.vue b/web/src/views/Login.vue
index 1f96eb8f35..92cfdbeb2b 100644
--- a/web/src/views/Login.vue
+++ b/web/src/views/Login.vue
@@ -7,7 +7,7 @@
-
+
diff --git a/web/windi.config.ts b/web/windi.config.ts
index 80c1474f8a..56f3be1f63 100644
--- a/web/windi.config.ts
+++ b/web/windi.config.ts
@@ -9,6 +9,14 @@ export default defineConfig({
extend: {
colors: {
greenish: '#4caf50',
+ woodpecker: {
+ 100: '#BDFFAC',
+ 200: '#7FD777',
+ 300: '#4CAF50',
+ 400: '#2A8737',
+ 500: '#115F24',
+ 600: '#043818',
+ },
link: colors.blue[400],
'dark-gray': {
600: '#383c4a',