D
D
Dmitry_Vladimirson2020-12-24 19:01:57
css
Dmitry_Vladimirson, 2020-12-24 19:01:57

How to convert css gradient to svg?

There is a css-gradient: You need to bring it to the svg-view:
linear-gradient(14deg, #163246 0%, #447ba1 100%);

<linearGradient  x1="0" y1="100%" x2="0" y2="0" gradientUnits="userSpaceOnUse">
                    <stop offset="0" stop-color="#163246"/>
                    <stop offset="1" stop-color="#447ba1"/>
 </linearGradient>


I figured out the colors, but I can’t figure out how to implement a 14 degree slope. Maybe there is some kind of converter, or how to understand where to enter what?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Kovalsky, 2020-12-24
@lazalu68

CSS2 SVG ?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question