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

chore: update tokens #363

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
//
// Software Name: OUDS iOS
// SPDX-FileCopyrightText: Copyright (c) Orange SA
// SPDX-License-Identifier: MIT
//
// This software is distributed under the MIT license,
// the text of which is available at https://opensource.org/license/MIT/
// or see the "LICENSE" file for more details.
//
// Authors: See CONTRIBUTORS.txt
// Software description: A SwiftUI components library with code examples for Orange Unified Design System
//

import OUDSTokensRaw

// swiftlint:disable missing_docs

extension OrangeBrandColorRawTokens {
public static let colorOrange50: ColorOrangeBrandRawToken = "#FFF2E6FF"
public static let colorOrange100: ColorOrangeBrandRawToken = "#FFD5B0FF"
public static let colorOrange200: ColorOrangeBrandRawToken = "#FFC18AFF"
public static let colorOrange300: ColorOrangeBrandRawToken = "#FFA554FF"
public static let colorOrange400: ColorOrangeBrandRawToken = "#FF9433FF"
public static let colorOrange500: ColorOrangeBrandRawToken = "#FF7900FF"
public static let colorOrange550: ColorOrangeBrandRawToken = "#F15E00FF"
public static let colorOrange600: ColorOrangeBrandRawToken = "#E86E00FF"
public static let colorOrange700: ColorOrangeBrandRawToken = "#B55600FF"
public static let colorOrange800: ColorOrangeBrandRawToken = "#8C4300FF"
public static let colorOrange900: ColorOrangeBrandRawToken = "#6B3300FF"
public static let colorWarmGray100: ColorOrangeBrandRawToken = "#F9F5F0FF"
public static let colorWarmGray200: ColorOrangeBrandRawToken = "#E9DDCEFF"
public static let colorWarmGray300: ColorOrangeBrandRawToken = "#D6C4AEFF"
public static let colorWarmGray400: ColorOrangeBrandRawToken = "#C1AB90FF"
public static let colorWarmGray500: ColorOrangeBrandRawToken = "#A99275FF"
public static let colorWarmGray600: ColorOrangeBrandRawToken = "#8A7860FF"
public static let colorWarmGray700: ColorOrangeBrandRawToken = "#685D50FF"
public static let colorWarmGray800: ColorOrangeBrandRawToken = "#48433DFF"
public static let colorWarmGray900: ColorOrangeBrandRawToken = "#353228FF"
}

// swiftlint:enable missing_docs
Loading