Files
woodpecker/server/badges/color.go
David Loewe e2270ae95c Per-Workflow and Per-Workflow-Step badge generation (#5977)
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
2026-02-01 16:44:09 +01:00

16 lines
306 B
Go

// Copyright 2023 The narqo/go-badge Authors. All rights reserved.
// SPDX-License-Identifier: MIT.
package badges
// Color represents color of the badge.
type Color string
// Standard colors.
const (
ColorGreen = "#44cc11"
ColorYellow = "#dfb317"
ColorRed = "#e05d44"
ColorGray = "#9f9f9f"
)