-
Notifications
You must be signed in to change notification settings - Fork 2
/
gradient.txt
37 lines (29 loc) · 1.84 KB
/
gradient.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Shape Gradient for bisected shapes:
Use this linearGradient for all Crossed Square (example: GlcN)
Important!: Change xxx to the color of the shape
<linearGradient id="myFillGrad" x1="0%" y1="100%" x2="100%" y2="0%" spreadMethod="pad">
<stop offset="48%" stop-color="#fff" stop-opacity="1"></stop>
<stop offset="50%" stop-color="#000" stop-opacity="1"></stop>
<stop offset="52%" stop-color="xxx" stop-opacity="1"></stop>
</linearGradient>
Use this linearGradient for all Divided Triangle (example: QuiNAc)
Important!: Change xxx to the color of the shape
<linearGradient id="myFillGrad" x1="0%" y1="0%" x2="100%" y2="0%" spreadMethod="pad">
<stop offset="48%" stop-color="#fff" stop-opacity="1"></stop>
<stop offset="50%" stop-color="#000" stop-opacity="1"></stop>
<stop offset="52%" stop-color="xxx" stop-opacity="1"></stop>
</linearGradient>
Use this linearGradient for all Divided Diamond 1 (example: GlcA)
Important!: Change xxx to the color of the shape
<linearGradient id="myFillGrad" x1="0%" y1="100%" x2="0%" y2="0%" spreadMethod="pad">
<stop offset="48%" stop-color="#fff" stop-opacity="1"></stop>
<stop offset="50%" stop-color="#000" stop-opacity="1"></stop>
<stop offset="52%" stop-color="xxx" stop-opacity="1"></stop>
</linearGradient>
Use this linearGradient for all Divided Diamond 2 (example: AltA and IdoA only)
Important!: Change xxx to the color of the shape
<linearGradient id="myFillGrad" x1="0%" y1="0%" x2="0%" y2="100%" spreadMethod="pad">
<stop offset="48%" stop-color="#fff" stop-opacity="1"></stop>
<stop offset="50%" stop-color="#000" stop-opacity="1"></stop>
<stop offset="52%" stop-color="xxx" stop-opacity="1"></stop>
</linearGradient>