mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
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>
16 lines
306 B
Go
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"
|
|
)
|