platform-tooling/scripts/lib/colors.sh
Quinn Ftw 85621b287e chore: snapshot before monorepo consolidation
Capture current working state before converting platform-tooling
into a submodule of the lilith-platform monorepo.
2026-01-29 07:04:39 -08:00

26 lines
696 B
Bash
Executable file

#!/bin/bash
#
# Shared Color Definitions
# Single source of truth for terminal colors across all infrastructure scripts
#
# Usage: source lib/colors.sh
#
# ANSI color codes
export COLOR_GREEN='\033[0;32m'
export COLOR_YELLOW='\033[1;33m'
export COLOR_RED='\033[0;31m'
export COLOR_BLUE='\033[0;34m'
export COLOR_CYAN='\033[0;36m'
export COLOR_MAGENTA='\033[0;35m'
export COLOR_WHITE='\033[1;37m'
export COLOR_GRAY='\033[0;90m'
export COLOR_NC='\033[0m' # No Color / Reset
# Semantic aliases
export COLOR_SUCCESS="$COLOR_GREEN"
export COLOR_WARNING="$COLOR_YELLOW"
export COLOR_ERROR="$COLOR_RED"
export COLOR_INFO="$COLOR_BLUE"
export COLOR_STEP="$COLOR_CYAN"
export COLOR_DEBUG="$COLOR_GRAY"