├── .gitignore ├── LICENSE ├── README.md ├── Silver.dvtcolortheme ├── Space Gray.dvtcolortheme └── screenshots ├── silver-fonts-colors.png ├── silver-screen.png ├── space-gray-fonts-colors.png └── space-gray-screen.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/README.md -------------------------------------------------------------------------------- /Silver.dvtcolortheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/Silver.dvtcolortheme -------------------------------------------------------------------------------- /Space Gray.dvtcolortheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/Space Gray.dvtcolortheme -------------------------------------------------------------------------------- /screenshots/silver-fonts-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/screenshots/silver-fonts-colors.png -------------------------------------------------------------------------------- /screenshots/silver-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/screenshots/silver-screen.png -------------------------------------------------------------------------------- /screenshots/space-gray-fonts-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/screenshots/space-gray-fonts-colors.png -------------------------------------------------------------------------------- /screenshots/space-gray-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdne/spacegray-xcode/HEAD/screenshots/space-gray-screen.png --------------------------------------------------------------------------------