Project

stylegen

0.0
The project is in a healthy, maintained state
Tool for generating styling code for iOS apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.2.0
~> 0.7.0
 Project Readme

stylegen

A CLI utility for managing the colors used in an iOS/macOS app from a centralized YAML file in a type-safe way.

CI

Installing

You can install stylegen manually by running:

$ gem install stylegen

Or by adding the following entry to your Gemfile, then running $ bundle install.

gem "stylegen"

How to use

To use stylegen in your project, you will need to create a theme.yaml file at the root of the project by executing:

$ stylegen init

The generated YAML file will look similar to this:

# Name of the design system. Defaults to "Theme".
# Feel free to use your company name, name of product,
# or name of your design system.
# e.g.: Primer, Material, Polaris, etc.
# system_name: "Theme"

# Path of generated Swift file.
output_path: "Colors.swift"

# UI frameworks to support.
# frameworks:
#   - UIKit
#   - AppKit

# Enables SwiftUI support.
# swiftui: false

# Key-value pairs of theme colors.
colors:

  accent: # Keys will be used as color names.
    color: "#00BFC2" # Hex color

  # Shorthand syntax
  warning: "#ED4337"

  text_primary:
    light: # Value for light mode
      color: "#000000"
      # Optionally you can specify an alpha value.
      # Defaults to `1.0`.
      alpha: 0.95
    dark: # Value for dark mode
      color: "#FFFFFF"

  text_secondary:
    light:
      color: "#000000"
      alpha: 0.4
    dark:
      color: "#FFFFFF"
      alpha: 0.6

  primary_background:
    description: The color for the main background of your interface.
    light: "#FFFFFF"
    dark:
      # Value for base (non-elevated) level
      base: "#0D0D0D"
      # Value for elevated level
      elevated: "#191D1D"

You can use your favorite text editor to edit the YAML file, then use the build sub-command to generate the Swift code:

$ stylegen build

The generated file will contain all the colors and utility methods for referencing them. You must add this generated file to your Xcode target to use it.

In places where you normally do:

self.backgroundColor = UIColor(named: "AccentColor")

Now you can just do:

self.backgroundColor = .theme(.accent)

The .theme() static method serves as a namespace to easily distinguish between UIKit's built-in colors and our custom colors. The name of the namespacing function gets inferred from the system_name property in the YAML file.