https://github.com/tomosaaan/colorpalletgen
Swift CLI Tool for creating Color Pallet (.clr file)
https://github.com/tomosaaan/colorpalletgen
swift swift-cli
Last synced: 3 months ago
JSON representation
Swift CLI Tool for creating Color Pallet (.clr file)
- Host: GitHub
- URL: https://github.com/tomosaaan/colorpalletgen
- Owner: tomosaaan
- License: mit
- Created: 2018-10-30T08:36:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T05:39:12.000Z (over 6 years ago)
- Last Synced: 2025-01-10T08:07:20.910Z (5 months ago)
- Topics: swift, swift-cli
- Language: Swift
- Homepage:
- Size: 6.84 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ColorPalletGen
Generate Color Pallet file(.clr) CLI Tool.
## How to install
### cocoapods
```
pod "ColorPalletGen"
```## Usage
```
./ColorPalletGen --file-read ./Color.json
```- Configuration file of color
```json
{
"color1": "#ffffff", // RGB using prefix '#'
"color2": "0xffffff", // RGB using prefix '0x'
"color3": "#ffffff66" // RGBA
}
```| File extension | |
| :------------: | :------: |
| json | released |
| txt | feature |## Inspired
- [SwiftGen](https://github.com/SwiftGen/SwiftGen)
## LICENSE
Under the MIT license. See [LICENSE](https://github.com/tomokitalahashi/ColorPalletGen/blob/master/LICENSE) file for details.