Interface ContributionDay

Represents a single day in a GitHub contribution calendar.

interface ContributionDay {
    color: string;
    contributionCount: number;
    date: string;
}

Properties

color: string

Hex color representing intensity, e.g., '#216e39'

contributionCount: number

Number of contributions on this day

date: string

ISO date string, e.g., '2024-01-15'