Skip to content

Commit

Permalink
feat: Add color enums values based from shade number
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Oct 18, 2024
1 parent 6771b1a commit b02b9b4
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions mdsanima_cli/core/enums/color.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright (c) 2023 MDSANIMA

"""Color styles definition in HEX values that share between a group of enumerations."""


from __future__ import annotations

from enum import Enum
from enum import unique


@unique
class Color(Enum):
"""The default color names whose base color is 500 from the shade number and the value is HEX code with the hash."""

LIGHT = "#cad1d9"
DARK = "#171b22"
NIGHT = "#2b3558"
STORM = "#f45270"
SHINE = "#84a85c"
TOKYO = "#277a75"
TOWN = "#549daa"
CYAN = "#06b6d4"
SKY = "#0ea5e9"
BLUE = "#3b82f6"
INDIGO = "#6366f1"
VIOLET = "#8b5cf6"
PURPLE = "#a855f7"
FUCHSIA = "#d946ef"
PINK = "#ec4899"
ROSE = "#f43f5e"
RED = "#ef4444"
ORANGE = "#f97316"
AMBER = "#f59e0b"
YELLOW = "#eab308"
LIME = "#84cc16"
GREEN = "#22c55e"
EMERALD = "#10b981"
TEAL = "#14b8a6"
GRAPHE = "#2e83b4"
GITTER = "#476bb2"
SLATE = "#64748b"
GRAY = "#6b7280"
ZINC = "#71717a"
NEUTRAL = "#737373"
BASIC = "#777777"
STONE = "#78716c"

0 comments on commit b02b9b4

Please sign in to comment.