From 9248587b32a91cb6d6e466717cc963198e2c1cb0 Mon Sep 17 00:00:00 2001 From: itjhai-qz <97528742+itjhai-qz@users.noreply.github.com> Date: Fri, 15 Apr 2022 15:22:33 -0400 Subject: [PATCH] QZ-766 Navigation color schemes (#38) * QZ-766 Navigation color schemes * QZ-766 Bump Xcode version used during build * Add built client styles Co-authored-by: GitHub Actions --- .github/workflows/ci.yml | 2 +- scss/color-scheme.scss | 5 +++++ scss/tokens.scss | 2 +- swift/QuartzStyles/QuartzStyles.swift | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9924daa..90195c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v2 - name: Switch to Xcode 11 - run: ls /Applications; sudo xcode-select -s /Applications/Xcode_11.5.app + run: ls /Applications; sudo xcode-select -s /Applications/Xcode_11.7.app - run: swift package generate-xcodeproj diff --git a/scss/color-scheme.scss b/scss/color-scheme.scss index ac1a222..f67cc19 100644 --- a/scss/color-scheme.scss +++ b/scss/color-scheme.scss @@ -6,11 +6,14 @@ approximation of the default theme (Quartz Light). */ $accent: var(--color-accent, tokens.$color-accent-blue); +$accent-navigation: var(--color-accent-navigation, tokens.$color-accent-blue); $background-1: var(--color-background-1, tokens.$color-off-white); $background-1-transparent: var(--color-background-1-transparent, rgba(255, 255, 255, 0.000001)); $background-2: var(--color-background-2, tokens.$color-white); $background-3: var(--color-background-3, rgba(0, 0, 0, 0.15)); $background-4: var(--color-background-4, tokens.$color-white); +$background-navigation: var(--color-background-navigation, tokens.$color-off-white); +$background-navigation-faint: var(--color-background-navigation-faint, tokens.$color-white); $background-modal: var(--color-background-modal, rgba(0, 0, 0, 0.98)); $border-decorative: var(--color-border-decorative, rgba(0, 0, 0, 0.15)); $border-interactive: var(--color-border-interactive, rgba(0, 0, 0, 0.3)); @@ -18,3 +21,5 @@ $highlight: var(--color-highlight, rgba(22, 141, 217, 0.2)); $typography: var(--color-typography, tokens.$color-black); $typography-faint: var(--color-typography-faint, rgba(0, 0, 0, 0.7)); $typography-inverted: var(--color-typography-inverted, tokens.$color-white); +$typography-navigation: var(--color-typography-navigation, tokens.$color-black); +$typography-navigation-faint: var(--color-typography-navigation-faint, rgba(0, 0, 0, 0.7)); diff --git a/scss/tokens.scss b/scss/tokens.scss index e42638e..dd3bcea 100644 --- a/scss/tokens.scss +++ b/scss/tokens.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Wed, 23 Mar 2022 19:06:38 GMT +// Generated on Fri, 15 Apr 2022 17:39:36 GMT $size-breakpoint-tablet-portrait: 768px; $size-breakpoint-tablet-landscape: 1024px; diff --git a/swift/QuartzStyles/QuartzStyles.swift b/swift/QuartzStyles/QuartzStyles.swift index 2a869ac..68acf60 100644 --- a/swift/QuartzStyles/QuartzStyles.swift +++ b/swift/QuartzStyles/QuartzStyles.swift @@ -3,7 +3,7 @@ // QuartzStyles.swift // // Do not edit directly -// Generated on Wed, 23 Mar 2022 19:06:38 GMT +// Generated on Fri, 15 Apr 2022 17:39:36 GMT // import UIKit