Skip to content

Commit 7528fde

Browse files
James Shakespeareactions-user
andauthored
Add alt dark background color (#33)
* add new color value to be used as dark mode bg2 * Add built client styles Co-authored-by: GitHub Actions <actions@github.com>
1 parent 283bd97 commit 7528fde

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

dictionaries/colors.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"dark-blue": {
1010
"value": "#171a23"
1111
},
12+
"mid-dark-blue": {
13+
"value": "#232634"
14+
},
1215
"light-blue": {
1316
"value": "#bcdef3"
1417
},

scss/tokens.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

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

55
$size-breakpoint-tablet-portrait: 768px;
66
$size-breakpoint-tablet-landscape: 1024px;
@@ -16,6 +16,7 @@ $size-gutter-desktop-work: 40px;
1616
$color-accent-blue: #168dd9;
1717
$color-accent-blue-dark: #76cbff;
1818
$color-dark-blue: #171a23;
19+
$color-mid-dark-blue: #232634;
1920
$color-light-blue: #bcdef3;
2021
$color-black: #000000;
2122
$color-gold: #f1a33f;

swift/QuartzStyles/QuartzStyles.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// QuartzStyles.swift
44
//
55
// Do not edit directly
6-
// Generated on Mon, 02 Nov 2020 18:02:01 GMT
6+
// Generated on Fri, 20 Nov 2020 16:38:47 GMT
77
//
88

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

0 commit comments

Comments
 (0)