Skip to content

Commit

Permalink
feat(skin): update design tokens from mistica-design (#403)
Browse files Browse the repository at this point in the history
* feat(skin): update design tokens

* Run swiftformat

---------

Co-authored-by: yceballost <[email protected]>
Co-authored-by: tuentisre <[email protected]>
  • Loading branch information
3 people authored Oct 28, 2024
1 parent 0c64037 commit e1ff58d
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/BlauColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ struct BlauColors: MisticaColors {

let barTrack = BlauColors.palette.grey2 | BlauColors.palette.darkModeGrey6

let barTrackInverse = BlauColors.palette.grey6.withAlphaComponent(0.2) | BlauColors.palette.darkModeGrey6

let loadingBar = BlauColors.palette.blauBlueSecondary | BlauColors.palette.blauBluePrimary

let loadingBarBackground = BlauColors.palette.blauBlueSecondary10 | BlauColors.palette.darkModeGrey
Expand All @@ -155,6 +157,8 @@ struct BlauColors: MisticaColors {

let iosControlKnob = BlauColors.palette.white | BlauColors.palette.grey2

let controlKnobInverse = BlauColors.palette.blauBlueSecondary | BlauColors.palette.grey2

let divider = BlauColors.palette.grey2 | BlauColors.palette.white.withAlphaComponent(0.05)

let dividerInverse = BlauColors.palette.white.withAlphaComponent(0.2) | BlauColors.palette.white.withAlphaComponent(0.05)
Expand Down
8 changes: 8 additions & 0 deletions Sources/MisticaCommon/Colors/ColorToolkit+Color.swift
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,10 @@ public extension Color {
MisticaConfig.currentColors.barTrack.color
}

static var barTrackInverse: Color {
MisticaConfig.currentColors.barTrackInverse.color
}

static var loadingBar: Color {
MisticaConfig.currentColors.loadingBar.color
}
Expand All @@ -289,6 +293,10 @@ public extension Color {
MisticaConfig.currentColors.iosControlKnob.color
}

static var controlKnobInverse: Color {
MisticaConfig.currentColors.controlKnobInverse.color
}

static var divider: Color {
MisticaConfig.currentColors.divider.color
}
Expand Down
8 changes: 8 additions & 0 deletions Sources/MisticaCommon/Colors/ColorToolkit+UIColor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,10 @@ public extension UIColor {
MisticaConfig.currentColors.barTrack
}

static var barTrackInverse: UIColor {
MisticaConfig.currentColors.barTrackInverse
}

static var loadingBar: UIColor {
MisticaConfig.currentColors.loadingBar
}
Expand All @@ -289,6 +293,10 @@ public extension UIColor {
MisticaConfig.currentColors.iosControlKnob
}

static var controlKnobInverse: UIColor {
MisticaConfig.currentColors.controlKnobInverse
}

static var divider: UIColor {
MisticaConfig.currentColors.divider
}
Expand Down
2 changes: 2 additions & 0 deletions Sources/MisticaCommon/Colors/MisticaColors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,13 @@ public protocol MisticaColors {
var controlActivatedInverse: UIColor { get }
var controlError: UIColor { get }
var barTrack: UIColor { get }
var barTrackInverse: UIColor { get }
var loadingBar: UIColor { get }
var loadingBarBackground: UIColor { get }
var toggleAndroidInactive: UIColor { get }
var toggleAndroidBackgroundActive: UIColor { get }
var iosControlKnob: UIColor { get }
var controlKnobInverse: UIColor { get }
var divider: UIColor { get }
var dividerInverse: UIColor { get }
var navigationBarDivider: UIColor { get }
Expand Down
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/MovistarColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ struct MovistarColors: MisticaColors {

let barTrack = MovistarColors.palette.grey3 | MovistarColors.palette.darkModeGrey6

let barTrackInverse = MovistarColors.palette.black.withAlphaComponent(0.14) | MovistarColors.palette.darkModeGrey6

let loadingBar = MovistarColors.palette.movistarBlue

let loadingBarBackground = MovistarColors.palette.grey2 | MovistarColors.palette.darkModeGrey6
Expand All @@ -155,6 +157,8 @@ struct MovistarColors: MisticaColors {

let iosControlKnob = MovistarColors.palette.white | MovistarColors.palette.darkModeGrey2

let controlKnobInverse = MovistarColors.palette.movistarBlue | MovistarColors.palette.darkModeGrey2

let divider = MovistarColors.palette.grey3 | MovistarColors.palette.white.withAlphaComponent(0.1)

let dividerInverse = MovistarColors.palette.white.withAlphaComponent(0.2) | MovistarColors.palette.white.withAlphaComponent(0.1)
Expand Down
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/O2ColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ struct O2Colors: MisticaColors {

let barTrack = O2Colors.palette.grey3 | O2Colors.palette.darkModeGrey6

let barTrackInverse = O2Colors.palette.white.withAlphaComponent(0.3) | O2Colors.palette.darkModeGrey6

let loadingBar = O2Colors.palette.o2BluePrimary | O2Colors.palette.darkModeO2BluePrimary

let loadingBarBackground = O2Colors.palette.grey1 | O2Colors.palette.darkModeGrey6
Expand All @@ -155,6 +157,8 @@ struct O2Colors: MisticaColors {

let iosControlKnob = O2Colors.palette.white | O2Colors.palette.grey2

let controlKnobInverse = O2Colors.palette.o2BluePrimary | O2Colors.palette.grey2

let divider = O2Colors.palette.grey2 | O2Colors.palette.white.withAlphaComponent(0.05)

let dividerInverse = O2Colors.palette.white.withAlphaComponent(0.2) | O2Colors.palette.white.withAlphaComponent(0.05)
Expand Down
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/O2NewColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ struct O2NewColors: MisticaColors {

let barTrack = O2NewColors.palette.grey30 | O2NewColors.palette.darkModeGrey6

let barTrackInverse = O2NewColors.palette.white.withAlphaComponent(0.3) | O2NewColors.palette.darkModeGrey6

let loadingBar = O2NewColors.palette.beyondBlue | O2NewColors.palette.darkModeBeyondBlue

let loadingBarBackground = O2NewColors.palette.grey20 | O2NewColors.palette.darkModeGrey6
Expand All @@ -173,6 +175,8 @@ struct O2NewColors: MisticaColors {

let iosControlKnob = O2NewColors.palette.white | O2NewColors.palette.grey30

let controlKnobInverse = O2NewColors.palette.beyondBlue | O2NewColors.palette.grey30

let divider = O2NewColors.palette.grey30 | O2NewColors.palette.white.withAlphaComponent(0.1)

let dividerInverse = O2NewColors.palette.white.withAlphaComponent(0.2) | O2NewColors.palette.white.withAlphaComponent(0.1)
Expand Down
6 changes: 5 additions & 1 deletion Sources/MisticaCommon/Colors/TelefonicaColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ struct TelefonicaColors: MisticaColors {

let controlError = TelefonicaColors.palette.coral

let barTrack = TelefonicaColors.palette.grey3 | TelefonicaColors.palette.darkModeGrey6
let barTrack = TelefonicaColors.palette.grey2 | TelefonicaColors.palette.darkModeGrey6

let barTrackInverse = TelefonicaColors.palette.white.withAlphaComponent(0.3) | TelefonicaColors.palette.darkModeGrey6

let loadingBar = TelefonicaColors.palette.telefonicaBlue30 | TelefonicaColors.palette.telefonicaBlue

Expand All @@ -155,6 +157,8 @@ struct TelefonicaColors: MisticaColors {

let iosControlKnob = TelefonicaColors.palette.white | TelefonicaColors.palette.grey2

let controlKnobInverse = TelefonicaColors.palette.telefonicaBlue | TelefonicaColors.palette.grey2

let divider = TelefonicaColors.palette.grey2 | TelefonicaColors.palette.white.withAlphaComponent(0.05)

let dividerInverse = TelefonicaColors.palette.white.withAlphaComponent(0.2) | TelefonicaColors.palette.white.withAlphaComponent(0.05)
Expand Down
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/TuColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ struct TuColors: MisticaColors {

let barTrack = TuColors.palette.grey2 | TuColors.palette.darkModeGrey6

let barTrackInverse = TuColors.palette.white.withAlphaComponent(0.36) | TuColors.palette.darkModeGrey6

let loadingBar = TuColors.palette.green40

let loadingBarBackground = TuColors.palette.green
Expand All @@ -155,6 +157,8 @@ struct TuColors: MisticaColors {

let iosControlKnob = TuColors.palette.white | TuColors.palette.grey2

let controlKnobInverse = TuColors.palette.primary | TuColors.palette.grey2

let divider = TuColors.palette.grey2 | TuColors.palette.white.withAlphaComponent(0.05)

let dividerInverse = TuColors.palette.white.withAlphaComponent(0.2) | TuColors.palette.white.withAlphaComponent(0.05)
Expand Down
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/VivoColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ struct VivoColors: MisticaColors {

let barTrack = VivoColors.palette.grey3 | VivoColors.palette.darkModeGrey6

let barTrackInverse = VivoColors.palette.white.withAlphaComponent(0.5) | VivoColors.palette.darkModeGrey6

let loadingBar = VivoColors.palette.pink | VivoColors.palette.vivoPurpleLight80

let loadingBarBackground = VivoColors.palette.pepperLight30 | VivoColors.palette.darkModeGrey6
Expand All @@ -155,6 +157,8 @@ struct VivoColors: MisticaColors {

let iosControlKnob = VivoColors.palette.white | VivoColors.palette.grey2

let controlKnobInverse = VivoColors.palette.vivoPurple | VivoColors.palette.grey2

let divider = VivoColors.palette.grey2 | VivoColors.palette.white.withAlphaComponent(0.05)

let dividerInverse = VivoColors.palette.white.withAlphaComponent(0.2) | VivoColors.palette.white.withAlphaComponent(0.05)
Expand Down
4 changes: 4 additions & 0 deletions Sources/MisticaCommon/Colors/VivoNewColorPalette.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ struct VivoNewColors: MisticaColors {

let barTrack = VivoNewColors.palette.grey3 | VivoNewColors.palette.darkModeGrey6

let barTrackInverse = VivoNewColors.palette.white.withAlphaComponent(0.5) | VivoNewColors.palette.darkModeGrey6

let loadingBar = VivoNewColors.palette.vivoPurple | VivoNewColors.palette.vivoPurpleLight80

let loadingBarBackground = VivoNewColors.palette.vivoPurpleLight10 | VivoNewColors.palette.darkModeGrey6
Expand All @@ -155,6 +157,8 @@ struct VivoNewColors: MisticaColors {

let iosControlKnob = VivoNewColors.palette.white | VivoNewColors.palette.grey2

let controlKnobInverse = VivoNewColors.palette.vivoPurple | VivoNewColors.palette.grey2

let divider = VivoNewColors.palette.grey3 | VivoNewColors.palette.white.withAlphaComponent(0.05)

let dividerInverse = VivoNewColors.palette.white.withAlphaComponent(0.2) | VivoNewColors.palette.white.withAlphaComponent(0.05)
Expand Down

0 comments on commit e1ff58d

Please sign in to comment.