https://github.com/eneko/fruits-eneko
This is my personal Xcode theme, based in Fruits and improved over the time using it
https://github.com/eneko/fruits-eneko
theme xcode
Last synced: 12 months ago
JSON representation
This is my personal Xcode theme, based in Fruits and improved over the time using it
- Host: GitHub
- URL: https://github.com/eneko/fruits-eneko
- Owner: eneko
- Created: 2018-08-23T17:49:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-28T01:29:08.000Z (almost 8 years ago)
- Last Synced: 2025-04-05T02:22:35.620Z (about 1 year ago)
- Topics: theme, xcode
- Language: CSS
- Homepage:
- Size: 616 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fruits-eneko
This is my personal Xcode theme, based in [Fruits](https://github.com/muukii/xcode-fruits) and improved over the years using it.

## Features
- ✅ Differentiate between classes and other type definitions.
- ✅ Differentiate between types defined in current vs. other modules.
- ✅ Differentiate between plain comments and documentation markup.
## Installation
### From the Terminal
1. Run the following command:
```
curl -o ~/Library/Developer/Xcode/UserData/FontAndColorThemes/fruits-eneko.xccolortheme https://raw.githubusercontent.com/eneko/fruits-eneko/master/fruits-eneko.xccolortheme
```
2. Restart Xcode
### Manually
1. [Download the theme](https://raw.githubusercontent.com/eneko/fruits-eneko/master/fruits-eneko.xccolortheme) and save it to `~/Library/Developer/Xcode/UserData/FontAndColorThemes/`
2. Restart Xcode
## Xcode Theme Configuration
- SF Mono Regular 13
- Normal spacing
- Background #1C1F26
- Current Line #53555A alpha 0.79
- Block Cursor #66CCFF
- Invisibles #6BECFE
## Theme In Use

## BONUS: Jekyll Syntax Highlighter Theme for GitHub Pages
Back in January I ported my Xcode theme so I could use it on my personal
website for syntax highlighting.
Requirements:
- Jekyll (with our without GitHub Pages)
- Rouge / Pigment (default syntaxhighlighter for Jekyll)

You can [see the theme in action here](https://www.enekoalonso.com/articles/handling-commands-with-swift-package-manager).
### Installation on Jekyll / GitHub Pages
1. [Download the SCSS file](https://raw.githubusercontent.com/eneko/fruits-eneko/master/_fruits-eneko.scss) and save it to your project `/_sass` folder
2. In your `main.scss` file, import the theme:
```
// Import partials from `sass_dir` (defaults to `_sass`)
@import
"base",
"layout",
"fruits-eneko"
;
```