https://github.com/alexwanderman/gradient-generator
A simple script that creates a gradient between two colors with a specified number of steps.
https://github.com/alexwanderman/gradient-generator
Last synced: about 1 year ago
JSON representation
A simple script that creates a gradient between two colors with a specified number of steps.
- Host: GitHub
- URL: https://github.com/alexwanderman/gradient-generator
- Owner: AlexWanderman
- Created: 2019-12-01T14:30:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-22T18:30:31.000Z (over 5 years ago)
- Last Synced: 2025-02-03T13:13:35.749Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# color_gradient
A simple script that creates a gradient between two colors with a specified number of steps.
For example:
```
Введите hex значение начала градиента: dc6f6f
Введите hex значение конца градиента: fac3c3
Введите число промежуточных шагов: 5
220 111 111 -> 250 195 195
5.000 14.000 14.000
1) dc6f6f (220 : 111 : 111)
2) e17d7d (225 : 125 : 125)
3) e68b8b (230 : 139 : 139)
4) eb9999 (235 : 153 : 153)
5) f0a7a7 (240 : 167 : 167)
6) f5b5b5 (245 : 181 : 181)
7) fac3c3 (250 : 195 : 195)
```