An open API service indexing awesome lists of open source software.

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.

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)
```