// Токены приложения TROTTY10 (light, dark).
enum TrottyPalette {
    static let background = (light: 0xF5F5F3, dark: 0x0E100F)
    static let surface = (light: 0xFFFFFF, dark: 0x191C1A)
    static let surfaceMuted = (light: 0xEFF0EC, dark: 0x22261F)
    static let photo = (light: 0xF2F2EF, dark: 0x2A2E28)
    static let ink = (light: 0x161917, dark: 0xF2F5EF)
    static let inkMuted = (light: 0x7A7F86, dark: 0xA3AA9F)
    static let accent = (light: 0x7FB314, dark: 0x9FD820)
    static let accentSoft = (light: 0xEFF6DF, dark: 0x29301A)
    static let onAccent = (light: 0x101312, dark: 0x101312)
    static let accentInk = (light: 0x4E7008, dark: 0x9FD820)
    static let danger = (light: 0xB3261E, dark: 0xE0685F)
    static let sale = (light: 0xE8452E, dark: 0xFF6B57)
    static let hairline = (light: 0xE6E9E3, dark: 0x2C312B)
}
