Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Badge Colors #71

Merged
merged 3 commits into from
May 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Sources/Compound/Colors/CompoundColors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@ public struct CompoundColors {
/// This token is a placeholder and hasn't been finalised.
@available(iOS, deprecated: 17.0, message: "This token should be generated by now.")
public let _textOwnPill = compound.colorGreen1100
/// This token is a placeholder and hasn't been finalised.
@available(iOS, deprecated: 17.0, message: "This token should be generated by now.")
public let _bgBadgeHighlighted = compound.colorGreen300.opacity(0.11)
Velin92 marked this conversation as resolved.
Show resolved Hide resolved
/// This token is a placeholder and hasn't been finalised.
@available(iOS, deprecated: 17.0, message: "This token should be generated by now.")
public let _bgBadgeTextSubtle = compound.colorGray1100
/// This token is a placeholder and hasn't been finalised.
@available(iOS, deprecated: 17.0, message: "This token should be generated by now.")
public let _bgBadgeTextHighlighted = compound.colorGreen1100

// MARK: - Gradients
public let gradientSuperButton = Gradient(colors: [compound.colorBlue900, compound.colorGreen1100])
Expand Down
Loading