1
0
mirror of https://github.com/itmeo/webgradients.git synced 2025-08-11 02:24:18 +02:00

add gradient guide

This commit is contained in:
KenanAivazov
2019-09-27 18:30:11 +03:00
parent b1a5ec48be
commit 79926f5d01

25
add_gradients.md Normal file
View File

@@ -0,0 +1,25 @@
# Guide for adding gradient in gradients.json file
### Color groups
```
['#259BE5', '#E5E9EC', '#7BCC9B', '#F9AFAD', '#FC96D3', '#8B56E9']
```
### JSON structure
```
"name": "Winter Neva", // gradient name
"favorite": false, // default value
"index": 1, // gradient index in array ( check last index in json file )
"deg": 120, // gradient degree ( top - zero degree )
"group": [ "#259BE5" ], // check color groups, may contains more than one value
"gradient": [ // color array, may contains more than one object
{
"color": "#a1c4fd", // HEX
"pos": 0 // color position in gradient
},
{
"color": "#c2e9fb",
"pos": 100
}
]
```