├── WhatColourIsIt
├── www
│ ├── fonts
│ │ ├── OpenSans-Light-webfont.eot
│ │ ├── OpenSans-Light-webfont.ttf
│ │ ├── OpenSans-Light-webfont.woff
│ │ └── OpenSans-Light-webfont.svg
│ └── index.html
├── WhatColourIsItView.h
├── Info.plist
└── WhatColourIsItView.m
├── WhatColourIsIt.xcodeproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ ├── xcuserdata
│ │ └── Jonic.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ └── xcshareddata
│ │ └── WhatColourIsIt.xccheckout
├── xcuserdata
│ └── Jonic.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── WhatColourIsIt.xcscheme
└── project.pbxproj
└── README.md
/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonic/WhatColourIsIt-ScreenSaver/HEAD/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.eot
--------------------------------------------------------------------------------
/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonic/WhatColourIsIt-ScreenSaver/HEAD/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.ttf
--------------------------------------------------------------------------------
/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonic/WhatColourIsIt-ScreenSaver/HEAD/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.woff
--------------------------------------------------------------------------------
/WhatColourIsIt.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/WhatColourIsIt.xcodeproj/project.xcworkspace/xcuserdata/Jonic.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jonic/WhatColourIsIt-ScreenSaver/HEAD/WhatColourIsIt.xcodeproj/project.xcworkspace/xcuserdata/Jonic.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/WhatColourIsIt/WhatColourIsItView.h:
--------------------------------------------------------------------------------
1 | //
2 | // WhatColourIsItView.h
3 | // WhatColourIsIt
4 | //
5 | // Created by Jonic Linley on 14/12/2014.
6 | // Copyright (c) 2014 Jonic Linley. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface WhatColourIsItView : ScreenSaverView
13 | {
14 | WebView *webView;
15 | }
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/WhatColourIsIt.xcodeproj/xcuserdata/Jonic.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | WhatColourIsIt.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | D87E3F751A3DED8300B6BFF9
16 |
17 | primary
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # What Colour Is It? OS X Screensaver
2 |
3 | A Mac screensaver of this website: http://whatcolourisit.scn9a.org/
4 |
5 | [Download the latest release here!](https://github.com/Jonic/WhatColourIsIt-ScreenSaver/releases)
6 |
7 | 
8 |
9 | ## Who's this by?
10 |
11 | Original idea and website by [J.E.Murphy](http://jemurphy.org/)
12 |
13 | Screensaver by [Jonic Linley](http://100yen.co.uk/)
14 |
15 | ## Anything else?
16 |
17 | This was built on Yosemite and has been confirmed as working on El Capitan - no guarantees it will work on your Mac! If it doesn't, then there's the source code so you can fix it!
18 |
19 | [Also available as a Chrome Extension that shows this in new tabs](https://github.com/Jonic/WhatColourIsIt-NewTab)
20 |
--------------------------------------------------------------------------------
/WhatColourIsIt/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | NSHumanReadableCopyright
24 | Copyright © 2014 Jonic Linley. All rights reserved.
25 | NSPrincipalClass
26 | WhatColourIsItView
27 |
28 |
29 |
--------------------------------------------------------------------------------
/WhatColourIsIt/WhatColourIsItView.m:
--------------------------------------------------------------------------------
1 | //
2 | // WhatColourIsItView.m
3 | // WhatColourIsIt
4 | //
5 | // Created by Jonic Linley on 14/12/2014.
6 | // Copyright (c) 2014 Jonic Linley. All rights reserved.
7 | //
8 |
9 | #import "WhatColourIsItView.h"
10 | #import
11 |
12 | @implementation WhatColourIsItView
13 |
14 | - (instancetype)initWithFrame:(NSRect)frame isPreview:(BOOL)isPreview
15 | {
16 | self = [super initWithFrame:frame isPreview:isPreview];
17 |
18 | if (self) {
19 | webView = [[WebView alloc] initWithFrame:[self bounds] frameName:nil groupName:nil];
20 |
21 | [webView setMainFrameURL:[NSString stringWithFormat:@"file://%@/www/index.html", [[NSBundle bundleForClass:[self class]] resourcePath]]];
22 |
23 | [self addSubview:webView];
24 | }
25 |
26 | return self;
27 | }
28 |
29 | - (void)startAnimation
30 | {
31 | [super startAnimation];
32 | }
33 |
34 | - (void)stopAnimation
35 | {
36 | [super stopAnimation];
37 | }
38 |
39 | - (void)drawRect:(NSRect)rect
40 | {
41 | [super drawRect:rect];
42 | }
43 |
44 | - (void)animateOneFrame
45 | {
46 | return;
47 | }
48 |
49 | - (BOOL)hasConfigureSheet
50 | {
51 | return NO;
52 | }
53 |
54 | - (NSWindow*)configureSheet
55 | {
56 | return nil;
57 | }
58 |
59 | @end
60 |
--------------------------------------------------------------------------------
/WhatColourIsIt.xcodeproj/project.xcworkspace/xcshareddata/WhatColourIsIt.xccheckout:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDESourceControlProjectFavoriteDictionaryKey
6 |
7 | IDESourceControlProjectIdentifier
8 | 72B961F7-A9BE-409C-9CF3-37D0BE8937A9
9 | IDESourceControlProjectName
10 | WhatColourIsIt
11 | IDESourceControlProjectOriginsDictionary
12 |
13 | 2D80E7A0A41BA95675BEE2726FFB4914A22AE443
14 | github.com:Jonic/WhatColourIsIt-ScreenSaver.git
15 |
16 | IDESourceControlProjectPath
17 | WhatColourIsIt.xcodeproj
18 | IDESourceControlProjectRelativeInstallPathDictionary
19 |
20 | 2D80E7A0A41BA95675BEE2726FFB4914A22AE443
21 | ../..
22 |
23 | IDESourceControlProjectURL
24 | github.com:Jonic/WhatColourIsIt-ScreenSaver.git
25 | IDESourceControlProjectVersion
26 | 111
27 | IDESourceControlProjectWCCIdentifier
28 | 2D80E7A0A41BA95675BEE2726FFB4914A22AE443
29 | IDESourceControlProjectWCConfigurations
30 |
31 |
32 | IDESourceControlRepositoryExtensionIdentifierKey
33 | public.vcs.git
34 | IDESourceControlWCCIdentifierKey
35 | 2D80E7A0A41BA95675BEE2726FFB4914A22AE443
36 | IDESourceControlWCCName
37 | WhatColourIsIt
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/WhatColourIsIt/www/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
81 |
82 |
--------------------------------------------------------------------------------
/WhatColourIsIt.xcodeproj/xcuserdata/Jonic.xcuserdatad/xcschemes/WhatColourIsIt.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
34 |
35 |
45 |
46 |
52 |
53 |
54 |
55 |
56 |
57 |
63 |
64 |
70 |
71 |
72 |
73 |
75 |
76 |
79 |
80 |
81 |
--------------------------------------------------------------------------------
/WhatColourIsIt.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | D87E3F7C1A3DED8300B6BFF9 /* WhatColourIsItView.h in Headers */ = {isa = PBXBuildFile; fileRef = D87E3F7B1A3DED8300B6BFF9 /* WhatColourIsItView.h */; };
11 | D87E3F7E1A3DED8300B6BFF9 /* WhatColourIsItView.m in Sources */ = {isa = PBXBuildFile; fileRef = D87E3F7D1A3DED8300B6BFF9 /* WhatColourIsItView.m */; };
12 | D87E3F851A3DEE3C00B6BFF9 /* www in Resources */ = {isa = PBXBuildFile; fileRef = D87E3F841A3DEE3C00B6BFF9 /* www */; };
13 | /* End PBXBuildFile section */
14 |
15 | /* Begin PBXFileReference section */
16 | D87E3F761A3DED8300B6BFF9 /* WhatColourIsIt.saver */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = WhatColourIsIt.saver; sourceTree = BUILT_PRODUCTS_DIR; };
17 | D87E3F7A1A3DED8300B6BFF9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
18 | D87E3F7B1A3DED8300B6BFF9 /* WhatColourIsItView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WhatColourIsItView.h; sourceTree = ""; };
19 | D87E3F7D1A3DED8300B6BFF9 /* WhatColourIsItView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WhatColourIsItView.m; sourceTree = ""; };
20 | D87E3F841A3DEE3C00B6BFF9 /* www */ = {isa = PBXFileReference; lastKnownFileType = folder; name = www; path = WhatColourIsIt/www; sourceTree = ""; };
21 | /* End PBXFileReference section */
22 |
23 | /* Begin PBXFrameworksBuildPhase section */
24 | D87E3F721A3DED8300B6BFF9 /* Frameworks */ = {
25 | isa = PBXFrameworksBuildPhase;
26 | buildActionMask = 2147483647;
27 | files = (
28 | );
29 | runOnlyForDeploymentPostprocessing = 0;
30 | };
31 | /* End PBXFrameworksBuildPhase section */
32 |
33 | /* Begin PBXGroup section */
34 | D87E3F6C1A3DED8300B6BFF9 = {
35 | isa = PBXGroup;
36 | children = (
37 | D87E3F841A3DEE3C00B6BFF9 /* www */,
38 | D87E3F781A3DED8300B6BFF9 /* WhatColourIsIt */,
39 | D87E3F771A3DED8300B6BFF9 /* Products */,
40 | );
41 | sourceTree = "";
42 | };
43 | D87E3F771A3DED8300B6BFF9 /* Products */ = {
44 | isa = PBXGroup;
45 | children = (
46 | D87E3F761A3DED8300B6BFF9 /* WhatColourIsIt.saver */,
47 | );
48 | name = Products;
49 | sourceTree = "";
50 | };
51 | D87E3F781A3DED8300B6BFF9 /* WhatColourIsIt */ = {
52 | isa = PBXGroup;
53 | children = (
54 | D87E3F7B1A3DED8300B6BFF9 /* WhatColourIsItView.h */,
55 | D87E3F7D1A3DED8300B6BFF9 /* WhatColourIsItView.m */,
56 | D87E3F791A3DED8300B6BFF9 /* Supporting Files */,
57 | );
58 | path = WhatColourIsIt;
59 | sourceTree = "";
60 | };
61 | D87E3F791A3DED8300B6BFF9 /* Supporting Files */ = {
62 | isa = PBXGroup;
63 | children = (
64 | D87E3F7A1A3DED8300B6BFF9 /* Info.plist */,
65 | );
66 | name = "Supporting Files";
67 | sourceTree = "";
68 | };
69 | /* End PBXGroup section */
70 |
71 | /* Begin PBXHeadersBuildPhase section */
72 | D87E3F731A3DED8300B6BFF9 /* Headers */ = {
73 | isa = PBXHeadersBuildPhase;
74 | buildActionMask = 2147483647;
75 | files = (
76 | D87E3F7C1A3DED8300B6BFF9 /* WhatColourIsItView.h in Headers */,
77 | );
78 | runOnlyForDeploymentPostprocessing = 0;
79 | };
80 | /* End PBXHeadersBuildPhase section */
81 |
82 | /* Begin PBXNativeTarget section */
83 | D87E3F751A3DED8300B6BFF9 /* WhatColourIsIt */ = {
84 | isa = PBXNativeTarget;
85 | buildConfigurationList = D87E3F811A3DED8300B6BFF9 /* Build configuration list for PBXNativeTarget "WhatColourIsIt" */;
86 | buildPhases = (
87 | D87E3F711A3DED8300B6BFF9 /* Sources */,
88 | D87E3F721A3DED8300B6BFF9 /* Frameworks */,
89 | D87E3F731A3DED8300B6BFF9 /* Headers */,
90 | D87E3F741A3DED8300B6BFF9 /* Resources */,
91 | );
92 | buildRules = (
93 | );
94 | dependencies = (
95 | );
96 | name = WhatColourIsIt;
97 | productName = WhatColourIsIt;
98 | productReference = D87E3F761A3DED8300B6BFF9 /* WhatColourIsIt.saver */;
99 | productType = "com.apple.product-type.bundle";
100 | };
101 | /* End PBXNativeTarget section */
102 |
103 | /* Begin PBXProject section */
104 | D87E3F6D1A3DED8300B6BFF9 /* Project object */ = {
105 | isa = PBXProject;
106 | attributes = {
107 | LastUpgradeCheck = 0720;
108 | ORGANIZATIONNAME = "Jonic Linley";
109 | TargetAttributes = {
110 | D87E3F751A3DED8300B6BFF9 = {
111 | CreatedOnToolsVersion = 6.1.1;
112 | };
113 | };
114 | };
115 | buildConfigurationList = D87E3F701A3DED8300B6BFF9 /* Build configuration list for PBXProject "WhatColourIsIt" */;
116 | compatibilityVersion = "Xcode 3.2";
117 | developmentRegion = English;
118 | hasScannedForEncodings = 0;
119 | knownRegions = (
120 | en,
121 | );
122 | mainGroup = D87E3F6C1A3DED8300B6BFF9;
123 | productRefGroup = D87E3F771A3DED8300B6BFF9 /* Products */;
124 | projectDirPath = "";
125 | projectRoot = "";
126 | targets = (
127 | D87E3F751A3DED8300B6BFF9 /* WhatColourIsIt */,
128 | );
129 | };
130 | /* End PBXProject section */
131 |
132 | /* Begin PBXResourcesBuildPhase section */
133 | D87E3F741A3DED8300B6BFF9 /* Resources */ = {
134 | isa = PBXResourcesBuildPhase;
135 | buildActionMask = 2147483647;
136 | files = (
137 | D87E3F851A3DEE3C00B6BFF9 /* www in Resources */,
138 | );
139 | runOnlyForDeploymentPostprocessing = 0;
140 | };
141 | /* End PBXResourcesBuildPhase section */
142 |
143 | /* Begin PBXSourcesBuildPhase section */
144 | D87E3F711A3DED8300B6BFF9 /* Sources */ = {
145 | isa = PBXSourcesBuildPhase;
146 | buildActionMask = 2147483647;
147 | files = (
148 | D87E3F7E1A3DED8300B6BFF9 /* WhatColourIsItView.m in Sources */,
149 | );
150 | runOnlyForDeploymentPostprocessing = 0;
151 | };
152 | /* End PBXSourcesBuildPhase section */
153 |
154 | /* Begin XCBuildConfiguration section */
155 | D87E3F7F1A3DED8300B6BFF9 /* Debug */ = {
156 | isa = XCBuildConfiguration;
157 | buildSettings = {
158 | ALWAYS_SEARCH_USER_PATHS = NO;
159 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
160 | CLANG_CXX_LIBRARY = "libc++";
161 | CLANG_ENABLE_MODULES = YES;
162 | CLANG_ENABLE_OBJC_ARC = YES;
163 | CLANG_WARN_BOOL_CONVERSION = YES;
164 | CLANG_WARN_CONSTANT_CONVERSION = YES;
165 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
166 | CLANG_WARN_EMPTY_BODY = YES;
167 | CLANG_WARN_ENUM_CONVERSION = YES;
168 | CLANG_WARN_INT_CONVERSION = YES;
169 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
170 | CLANG_WARN_UNREACHABLE_CODE = YES;
171 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
172 | COPY_PHASE_STRIP = NO;
173 | ENABLE_STRICT_OBJC_MSGSEND = YES;
174 | ENABLE_TESTABILITY = YES;
175 | GCC_C_LANGUAGE_STANDARD = gnu99;
176 | GCC_DYNAMIC_NO_PIC = NO;
177 | GCC_OPTIMIZATION_LEVEL = 0;
178 | GCC_PREPROCESSOR_DEFINITIONS = (
179 | "DEBUG=1",
180 | "$(inherited)",
181 | );
182 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
183 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
184 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
185 | GCC_WARN_UNDECLARED_SELECTOR = YES;
186 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
187 | GCC_WARN_UNUSED_FUNCTION = YES;
188 | GCC_WARN_UNUSED_VARIABLE = YES;
189 | MACOSX_DEPLOYMENT_TARGET = 10.10;
190 | MTL_ENABLE_DEBUG_INFO = YES;
191 | ONLY_ACTIVE_ARCH = YES;
192 | SDKROOT = macosx;
193 | };
194 | name = Debug;
195 | };
196 | D87E3F801A3DED8300B6BFF9 /* Release */ = {
197 | isa = XCBuildConfiguration;
198 | buildSettings = {
199 | ALWAYS_SEARCH_USER_PATHS = NO;
200 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
201 | CLANG_CXX_LIBRARY = "libc++";
202 | CLANG_ENABLE_MODULES = YES;
203 | CLANG_ENABLE_OBJC_ARC = YES;
204 | CLANG_WARN_BOOL_CONVERSION = YES;
205 | CLANG_WARN_CONSTANT_CONVERSION = YES;
206 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
207 | CLANG_WARN_EMPTY_BODY = YES;
208 | CLANG_WARN_ENUM_CONVERSION = YES;
209 | CLANG_WARN_INT_CONVERSION = YES;
210 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
211 | CLANG_WARN_UNREACHABLE_CODE = YES;
212 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
213 | COPY_PHASE_STRIP = YES;
214 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
215 | ENABLE_NS_ASSERTIONS = NO;
216 | ENABLE_STRICT_OBJC_MSGSEND = YES;
217 | GCC_C_LANGUAGE_STANDARD = gnu99;
218 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
219 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
220 | GCC_WARN_UNDECLARED_SELECTOR = YES;
221 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
222 | GCC_WARN_UNUSED_FUNCTION = YES;
223 | GCC_WARN_UNUSED_VARIABLE = YES;
224 | MACOSX_DEPLOYMENT_TARGET = 10.10;
225 | MTL_ENABLE_DEBUG_INFO = NO;
226 | SDKROOT = macosx;
227 | };
228 | name = Release;
229 | };
230 | D87E3F821A3DED8300B6BFF9 /* Debug */ = {
231 | isa = XCBuildConfiguration;
232 | buildSettings = {
233 | COMBINE_HIDPI_IMAGES = YES;
234 | INFOPLIST_FILE = WhatColourIsIt/Info.plist;
235 | INSTALL_PATH = "$(HOME)/Library/Screen Savers";
236 | PRODUCT_BUNDLE_IDENTIFIER = "co.uk.100yen.$(PRODUCT_NAME:rfc1034identifier)";
237 | PRODUCT_NAME = "$(TARGET_NAME)";
238 | WRAPPER_EXTENSION = saver;
239 | };
240 | name = Debug;
241 | };
242 | D87E3F831A3DED8300B6BFF9 /* Release */ = {
243 | isa = XCBuildConfiguration;
244 | buildSettings = {
245 | COMBINE_HIDPI_IMAGES = YES;
246 | INFOPLIST_FILE = WhatColourIsIt/Info.plist;
247 | INSTALL_PATH = "$(HOME)/Library/Screen Savers";
248 | PRODUCT_BUNDLE_IDENTIFIER = "co.uk.100yen.$(PRODUCT_NAME:rfc1034identifier)";
249 | PRODUCT_NAME = "$(TARGET_NAME)";
250 | WRAPPER_EXTENSION = saver;
251 | };
252 | name = Release;
253 | };
254 | /* End XCBuildConfiguration section */
255 |
256 | /* Begin XCConfigurationList section */
257 | D87E3F701A3DED8300B6BFF9 /* Build configuration list for PBXProject "WhatColourIsIt" */ = {
258 | isa = XCConfigurationList;
259 | buildConfigurations = (
260 | D87E3F7F1A3DED8300B6BFF9 /* Debug */,
261 | D87E3F801A3DED8300B6BFF9 /* Release */,
262 | );
263 | defaultConfigurationIsVisible = 0;
264 | defaultConfigurationName = Release;
265 | };
266 | D87E3F811A3DED8300B6BFF9 /* Build configuration list for PBXNativeTarget "WhatColourIsIt" */ = {
267 | isa = XCConfigurationList;
268 | buildConfigurations = (
269 | D87E3F821A3DED8300B6BFF9 /* Debug */,
270 | D87E3F831A3DED8300B6BFF9 /* Release */,
271 | );
272 | defaultConfigurationIsVisible = 0;
273 | defaultConfigurationName = Release;
274 | };
275 | /* End XCConfigurationList section */
276 | };
277 | rootObject = D87E3F6D1A3DED8300B6BFF9 /* Project object */;
278 | }
279 |
--------------------------------------------------------------------------------
/WhatColourIsIt/www/fonts/OpenSans-Light-webfont.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------