Skip to content

Instantly share code, notes, and snippets.

View mazefest's full-sized avatar

Colby Mehmen mazefest

  • Stryd
  • Dallas, Tx
View GitHub Profile
@mazefest
mazefest / FontSize.swift
Created June 17, 2025 15:35
Expose font size in Xcode when selecting fonts.
import Foundation
import SwiftUI
enum FontSize {
/**Size 28.0 */
case title
/**Size 22.0 */
case title2
@mazefest
mazefest / ActivityRingView.swift
Created January 21, 2024 04:49
Activity Rings
struct ActivityRingView: View {
@Binding var progress: CGFloat
var mainColor: Color = .red
var lineWidth: CGFloat = 20
var endColor: Color {
mainColor.darker(by: 15.0)
}