Skip to content

Commit

Permalink
Add alt dark background color (#33)
Browse files Browse the repository at this point in the history
* add new color value to be used as dark mode bg2

* Add built client styles

Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
James Shakespeare and actions-user committed Nov 20, 2020
1 parent 283bd97 commit 7528fde
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions dictionaries/colors.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"dark-blue": {
"value": "#171a23"
},
"mid-dark-blue": {
"value": "#232634"
},
"light-blue": {
"value": "#bcdef3"
},
Expand Down
3 changes: 2 additions & 1 deletion scss/tokens.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// Do not edit directly
// Generated on Mon, 02 Nov 2020 18:02:01 GMT
// Generated on Fri, 20 Nov 2020 16:38:47 GMT

$size-breakpoint-tablet-portrait: 768px;
$size-breakpoint-tablet-landscape: 1024px;
Expand All @@ -16,6 +16,7 @@ $size-gutter-desktop-work: 40px;
$color-accent-blue: #168dd9;
$color-accent-blue-dark: #76cbff;
$color-dark-blue: #171a23;
$color-mid-dark-blue: #232634;
$color-light-blue: #bcdef3;
$color-black: #000000;
$color-gold: #f1a33f;
Expand Down
3 changes: 2 additions & 1 deletion swift/QuartzStyles/QuartzStyles.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// QuartzStyles.swift
//
// Do not edit directly
// Generated on Mon, 02 Nov 2020 18:02:01 GMT
// Generated on Fri, 20 Nov 2020 16:38:47 GMT
//

import UIKit
Expand All @@ -22,6 +22,7 @@ public enum QuartzStyles {
public static let colorLightBlue = UIColor(red: 0.737, green: 0.871, blue: 0.953, alpha:1)
public static let colorLightGray = UIColor(red: 0.886, green: 0.886, blue: 0.886, alpha:1)
public static let colorLightTeal = UIColor(red: 0.761, green: 0.898, blue: 0.933, alpha:1)
public static let colorMidDarkBlue = UIColor(red: 0.137, green: 0.149, blue: 0.204, alpha:1)
public static let colorOffWhite = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha:1)
public static let colorPink = UIColor(red: 1.000, green: 0.608, blue: 0.871, alpha:1)
public static let colorRed = UIColor(red: 0.761, green: 0.322, blue: 0.314, alpha:1)
Expand Down

0 comments on commit 7528fde

Please sign in to comment.