Skip to content

Commit

Permalink
[Add] #252 - 컬러 에셋 추가 및 systemColor 중복 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yungu0010 committed Apr 22, 2024
1 parent fb90783 commit 1f513a6
Show file tree
Hide file tree
Showing 10 changed files with 80 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.application-groups</key>
<array>
<string>group.nottodo.iOS-NOTTODO</string>
</array>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import UIKit

extension UIColor {
static let bg = UIColor(named: "bg")
static let ntdBlack = UIColor(named: "black")
static let ntdBlue = UIColor(named: "blue")
static let ntdRed = UIColor(named: "red")
static let ntdBlack = UIColor(named: "ntdBlack")
static let ntdBlue = UIColor(named: "ntdBlue")
static let ntdRed = UIColor(named: "ntdRed")
static let gray1 = UIColor(named: "gray1")
static let gray2 = UIColor(named: "gray2")
static let gray3 = UIColor(named: "gray3")
Expand All @@ -23,7 +23,7 @@ extension UIColor {
static let green1 = UIColor(named: "green1")
static let green2 = UIColor(named: "green2")
static let systemBlack = UIColor(named: "systemBlack")
static let kakaoYellow = UIColor(named: "yellow")
static let kakaoYellow = UIColor(named: "ntdYellow")
static let notiBlack = UIColor(named: "notiBlack")
static let notiGreen = UIColor(named: "notiGreen")
static let notiBlue = UIColor(named: "notiBlue")
Expand Down
8 changes: 8 additions & 0 deletions iOS-NOTTODO/iOS-NOTTODO/Global/Extensions/UserDefaults+.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// UserDefaults+.swift
// iOS-NOTTODO
//
// Created by 강윤서 on 4/22/24.
//

import Foundation
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0.392",
"green" : "0.392",
"red" : "1.000"
}
},
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"color" : {
"color-space" : "display-p3",
"components" : {
"alpha" : "1.000",
"blue" : "0.412",
"green" : "0.435",
"red" : "0.925"
}
},
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0.392",
"green" : "0.392",
"blue" : "0.271",
"green" : "0.271",
"red" : "1.000"
}
},
Expand All @@ -23,8 +23,8 @@
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0.392",
"green" : "0.392",
"blue" : "0.271",
"green" : "0.271",
"red" : "1.000"
}
},
Expand Down
16 changes: 16 additions & 0 deletions iOS-NOTTODO/iOS-NOTTODO/iOS-NOTTODORelease.entitlements
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>aps-environment</key>
<string>development</string>
<key>com.apple.developer.applesignin</key>
<array>
<string>Default</string>
</array>
<key>com.apple.security.application-groups</key>
<array>
<string>group.nottodo.iOS-NOTTODO</string>
</array>
</dict>
</plist>

0 comments on commit 1f513a6

Please sign in to comment.