Add script to generate all ressources

This commit is contained in:
Thibaut Schmitt 2021-12-22 10:33:32 +01:00
parent 780efc8817
commit e14f5a7f48
3 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,21 @@
// Generated from ColorToolCore at 2021-12-22 09:32:10 +0000
import UIKit
extension UIColor {
/// Color red is #FF0000 (light) or #FF0000 (dark)"
static var red: UIColor {
UIColor(named: "red")!
}
/// Color green_alpha_50 is #A000FF00 (light) or #A000FF00 (dark)"
static var green_alpha_50: UIColor {
UIColor(named: "green_alpha_50")!
}
/// Color blue_light_dark is #0000FF (light) or #0000AA (dark)"
static var blue_light_dark: UIColor {
UIColor(named: "blue_light_dark")!
}
}

View File

@ -23,7 +23,7 @@
"color-space": "srgb",
"components": {
"alpha": "0xFF",
"blue": "0xFF",
"blue": "0xAA",
"green": "0x00",
"red": "0x00",
}

View File

@ -0,0 +1,7 @@
#/bin/bash
# Font
swift run -c release FontToolCore ./Fonts --extension-output-path ./Fonts/Generated --extension-name R2Font
# Color
swift run -c release ColorToolCore ./Colors/sampleColors1.txt --style all --xcassets-path "./Colors/colors.xcassets" --extension-output-path "./Colors/Generated/" --extension-name "UIColor" --extension-suffix "GenAllScript"