forked from Silverfish/proton-bridge
feat(GODT-2762): setup wizard: onboarding left pane.
This commit is contained in:
@ -55,9 +55,6 @@
|
||||
<file>qml/icons/img-proton-logos.svg</file>
|
||||
<file>qml/icons/img-splash.png</file>
|
||||
<file>qml/icons/img-splash.svg</file>
|
||||
<file>qml/icons/img-welcome-dark.png</file>
|
||||
<file>qml/icons/img-welcome-dark.svg</file>
|
||||
<file>qml/icons/img-welcome.png</file>
|
||||
<file>qml/icons/img-welcome.svg</file>
|
||||
<file>qml/icons/Loader_16.svg</file>
|
||||
<file>qml/icons/Loader_48.svg</file>
|
||||
@ -110,6 +107,7 @@
|
||||
<file>qml/SettingsView.qml</file>
|
||||
<file>qml/SetupGuide.qml</file>
|
||||
<file>qml/SetupWizard/SetupWizard.qml</file>
|
||||
<file>qml/SetupWizard/OnboardingLeftPane.qml</file>
|
||||
<file>qml/SignIn.qml</file>
|
||||
<file>qml/ConnectionModeSettings.qml</file>
|
||||
<file>qml/SplashScreen.qml</file>
|
||||
|
||||
@ -83,7 +83,4 @@ QtObject {
|
||||
// Text
|
||||
property color text_norm
|
||||
property color text_weak
|
||||
|
||||
// Images
|
||||
property string welcome_img
|
||||
}
|
||||
|
||||
@ -106,9 +106,6 @@ QtObject {
|
||||
// Text
|
||||
text_norm: "#FFFFFF"
|
||||
text_weak: "#A7A4B5"
|
||||
|
||||
// Images
|
||||
welcome_img: "/qml/icons/img-welcome-dark.png"
|
||||
}
|
||||
property ColorScheme darkStyle: ColorScheme {
|
||||
id: _darkStyle
|
||||
@ -180,9 +177,6 @@ QtObject {
|
||||
// Text
|
||||
text_norm: "#FFFFFF"
|
||||
text_weak: "#A7A4B5"
|
||||
|
||||
// Images
|
||||
welcome_img: "/qml/icons/img-welcome-dark.png"
|
||||
}
|
||||
property real dialog_radius: 12 * root.px // px
|
||||
property int fontWeight_100: Font.Thin
|
||||
@ -281,9 +275,6 @@ QtObject {
|
||||
// Text
|
||||
text_norm: "#FFFFFF"
|
||||
text_weak: "#9282D4"
|
||||
|
||||
// Images
|
||||
welcome_img: "/qml/icons/img-welcome-dark.png"
|
||||
}
|
||||
// TODO: Once we will use Qt >=5.15 this should be refactored with inline components as follows:
|
||||
// https://doc.qt.io/qt-5/qtqml-documents-definetypes.html#inline-components
|
||||
@ -362,9 +353,6 @@ QtObject {
|
||||
// Text
|
||||
text_norm: "#0C0C14"
|
||||
text_weak: "#706D6B"
|
||||
|
||||
// Images
|
||||
welcome_img: "/qml/icons/img-welcome.png"
|
||||
}
|
||||
property real progress_bar_radius: 3 * root.px // px
|
||||
property real px: 1.00 // px
|
||||
|
||||
@ -0,0 +1,78 @@
|
||||
// Copyright (c) 2023 Proton AG
|
||||
// This file is part of Proton Mail Bridge.
|
||||
// Proton Mail Bridge is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// Proton Mail Bridge is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Proton Mail Bridge. If not, see <https://www.gnu.org/licenses/>.
|
||||
import QtQml
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Controls.impl
|
||||
import "." as Proton
|
||||
|
||||
Item {
|
||||
id: root
|
||||
|
||||
property ColorScheme colorScheme
|
||||
|
||||
ColumnLayout {
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
spacing: 0
|
||||
|
||||
Image {
|
||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
|
||||
Layout.preferredHeight: 148
|
||||
Layout.preferredWidth: 265
|
||||
antialiasing: true
|
||||
source: "/qml/icons/img-welcome.svg"
|
||||
sourceSize.height: 148
|
||||
sourceSize.width: 265
|
||||
}
|
||||
Label {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: 16
|
||||
colorScheme: root.colorScheme
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
text: qsTr("Welcome to\nProton Mail Bridge")
|
||||
type: Label.LabelType.Heading
|
||||
}
|
||||
Label {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: 96
|
||||
colorScheme: root.colorScheme
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
text: qsTr("Bridge is the gateway between your Proton account and your email client. It runs in the background and encrypts and decrypts your messages seamlessly. ")
|
||||
type: Label.LabelType.Body
|
||||
wrapMode: Text.WordWrap
|
||||
}
|
||||
Label {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: false
|
||||
Layout.topMargin: 48
|
||||
colorScheme: root.colorScheme
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
text: link("https://proton.me/support/bridge", qsTr("Why do I need Bridge?"))
|
||||
type: Label.LabelType.Body
|
||||
|
||||
onLinkActivated: function (link) {
|
||||
Qt.openUrlExternally(link);
|
||||
}
|
||||
|
||||
HoverHandler {
|
||||
acceptedDevices: PointerDevice.Mouse
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -36,15 +36,20 @@ Item {
|
||||
Layout.fillWidth: true
|
||||
color: root.colorScheme.background_norm
|
||||
|
||||
Rectangle {
|
||||
Item {
|
||||
id: leftContent
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: 96
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 96
|
||||
color: "#ff0000"
|
||||
width: 444
|
||||
|
||||
OnboardingLeftPane {
|
||||
colorScheme: root.colorScheme
|
||||
anchors.fill: parent
|
||||
}
|
||||
|
||||
}
|
||||
Image {
|
||||
id: mailLogoWithWordmark
|
||||
|
||||
@ -95,7 +95,7 @@ Item {
|
||||
Image {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
Layout.topMargin: 16
|
||||
source: colorScheme.welcome_img
|
||||
source: "/qml/icons/img-welcome.svg"
|
||||
sourceSize.height: 148
|
||||
sourceSize.width: 264
|
||||
}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 74 KiB |
@ -1,331 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="265"
|
||||
height="148"
|
||||
viewBox="0 0 265 148"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg110"
|
||||
sodipodi:docname="img-welcome-dark.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||
inkscape:export-filename="/home/dev/gopath/src/github.com/ProtonMail/proton-bridge/internal/frontend/qml/icons/img-welcome.png"
|
||||
inkscape:export-xdpi="400"
|
||||
inkscape:export-ydpi="400"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview112"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#ffffff"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="1"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:zoom="0.69351284"
|
||||
inkscape:cx="93.004767"
|
||||
inkscape:cy="115.35475"
|
||||
inkscape:window-width="1916"
|
||||
inkscape:window-height="1041"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="18"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg110" />
|
||||
<rect
|
||||
style="fill:#1c1b24;fill-opacity:1;stroke:none;stroke-width:27.9987;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect951"
|
||||
width="265"
|
||||
height="148"
|
||||
x="0"
|
||||
y="0"
|
||||
ry="0"
|
||||
inkscape:export-filename="/home/dev/gopath/src/github.com/ProtonMail/proton-bridge/internal/frontend/qml/icons/img-welcome.png"
|
||||
inkscape:export-xdpi="400"
|
||||
inkscape:export-ydpi="400" />
|
||||
<path
|
||||
d="M221.171 147.001H44.8555C43.1441 147.001 41.8047 145.661 41.8047 143.95V142.238C41.8047 140.527 43.1441 139.188 44.8555 139.188H221.171C222.882 139.188 224.221 140.527 224.221 142.238V143.95C224.221 145.661 222.808 147.001 221.171 147.001Z"
|
||||
fill="#B0D4E5"
|
||||
id="path2" />
|
||||
<path
|
||||
d="M141.83 143.503H123.376C120.995 143.503 119.135 141.568 119.135 139.262H146.071C146.071 141.568 144.211 143.503 141.83 143.503Z"
|
||||
fill="#DAF3FF"
|
||||
id="path4" />
|
||||
<path
|
||||
d="M206.034 139.187H58.501V53.9292C58.501 49.0182 62.5191 45 67.4302 45H197.104C202.016 45 206.034 49.0182 206.034 53.9292V139.187Z"
|
||||
fill="url(#paint0_radial_8674_44242)"
|
||||
id="path6" />
|
||||
<path
|
||||
d="M199.115 139.187H66.167V55.3434C66.167 54.1529 67.1343 53.1855 68.3249 53.1855H196.883C198.074 53.1855 199.041 54.1529 199.041 55.3434V139.187H199.115Z"
|
||||
fill="url(#paint1_linear_8674_44242)"
|
||||
id="path8" />
|
||||
<path
|
||||
d="M190.805 131.286H76.1797V62.5185C76.1797 61.5234 77.028 60.7148 78.0721 60.7148H188.847C189.891 60.7148 190.739 61.5234 190.739 62.5185V131.286H190.805Z"
|
||||
fill="url(#paint2_radial_8674_44242)"
|
||||
id="path10" />
|
||||
<path
|
||||
d="M84.1558 70.7744C85.3064 70.7744 86.2392 69.8416 86.2392 68.6909C86.2392 67.5402 85.3064 66.6074 84.1558 66.6074C83.0051 66.6074 82.0723 67.5402 82.0723 68.6909C82.0723 69.8416 83.0051 70.7744 84.1558 70.7744Z"
|
||||
fill="#B0D4E5"
|
||||
id="path12" />
|
||||
<path
|
||||
d="M90.6304 70.7744C91.781 70.7744 92.7139 69.8416 92.7139 68.6909C92.7139 67.5402 91.781 66.6074 90.6304 66.6074C89.4797 66.6074 88.5469 67.5402 88.5469 68.6909C88.5469 69.8416 89.4797 70.7744 90.6304 70.7744Z"
|
||||
fill="#B0D4E5"
|
||||
id="path14" />
|
||||
<path
|
||||
d="M97.105 70.7744C98.2557 70.7744 99.1885 69.8416 99.1885 68.6909C99.1885 67.5402 98.2557 66.6074 97.105 66.6074C95.9543 66.6074 95.0215 67.5402 95.0215 68.6909C95.0215 69.8416 95.9543 70.7744 97.105 70.7744Z"
|
||||
fill="#B0D4E5"
|
||||
id="path16" />
|
||||
<path
|
||||
d="M242.633 76.3538H180.924C178.747 76.3538 177 74.5616 177 72.3891V33.9646C177 31.7922 178.774 30 180.924 30H242.606C244.783 30 246.53 31.7922 246.53 33.9646V72.3891C246.557 74.5887 244.783 76.3538 242.633 76.3538Z"
|
||||
fill="url(#paint3_linear_8674_44242)"
|
||||
id="path18" />
|
||||
<path
|
||||
d="M209.232 56.6899C210.689 57.8921 212.822 57.8921 214.28 56.6899L245.431 31.0419C244.729 30.4007 243.784 30 242.758 30H180.78C179.754 30 178.809 30.4007 178.107 31.0419L209.232 56.6899Z"
|
||||
fill="url(#paint4_linear_8674_44242)"
|
||||
id="path20" />
|
||||
<path
|
||||
d="M134.4 75C123.858 75 115.312 83.5451 115.312 94.0874V113.301C115.312 115.344 116.968 117 119.011 117H150.184C152.008 117 153.487 115.52 153.487 113.696V94.0874C153.487 83.5465 144.942 75 134.4 75ZM145.387 93.9814L137.044 101.01C135.538 102.279 133.336 102.279 131.83 101.01L123.487 93.9814C123.487 88.0172 128.323 83.1817 134.287 83.1817H134.587C140.551 83.1817 145.387 88.0172 145.387 93.9814Z"
|
||||
fill="#6D4AFF"
|
||||
id="path22" />
|
||||
<path
|
||||
d="M134.4 75C123.858 75 115.312 83.5451 115.312 94.0874V113.301C115.312 115.344 116.968 117 119.011 117H150.184C152.008 117 153.487 115.52 153.487 113.696V94.0874C153.487 83.5465 144.942 75 134.4 75ZM145.387 93.9814L137.044 101.01C135.538 102.279 133.336 102.279 131.83 101.01L123.487 93.9814C123.487 88.0172 128.323 83.1817 134.287 83.1817H134.587C140.551 83.1817 145.387 88.0172 145.387 93.9814Z"
|
||||
fill="url(#paint5_linear_8674_44242)"
|
||||
id="path24" />
|
||||
<g
|
||||
filter="url(#filter0_i_8674_44242)"
|
||||
id="g28">
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M137.057 101.095C136.188 101.799 133.926 102.785 131.838 101.095C129.751 99.4048 125.418 95.6687 123.513 94.0119H123.524L123.487 93.9814C123.487 88.0172 128.323 83.1817 134.287 83.1817H134.587C140.551 83.1817 145.387 88.0172 145.387 93.9814L145.351 94.0119H145.383V117H150.184C152.008 117 153.487 115.52 153.487 113.696V94.0874C153.487 83.5465 144.942 75 134.4 75C123.858 75 115.312 83.5451 115.312 94.0874V95.2946L127.117 105.444C127.986 106.272 130.273 107.432 132.46 105.444C134.647 103.456 136.436 101.716 137.057 101.095Z"
|
||||
fill="url(#paint6_radial_8674_44242)"
|
||||
id="path26" />
|
||||
</g>
|
||||
<circle
|
||||
cx="239.278"
|
||||
cy="30.2778"
|
||||
r="15.2778"
|
||||
fill="url(#paint7_linear_8674_44242)"
|
||||
id="circle30" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M245.702 26.668C246.113 27.0766 246.116 27.7417 245.707 28.1534L238.128 35.7923C237.93 35.9911 237.662 36.1028 237.382 36.1028C237.102 36.1028 236.834 35.9911 236.636 35.7923L232.758 31.8835C232.349 31.4718 232.352 30.8067 232.764 30.3981C233.175 29.9895 233.84 29.9921 234.249 30.4039L237.382 33.5613L244.216 26.6738C244.625 26.262 245.29 26.2595 245.702 26.668Z"
|
||||
fill="white"
|
||||
id="path32" />
|
||||
<path
|
||||
d="M0.878906 69.6212C0.878906 56.0233 11.9022 45 25.5001 45V45C39.0981 45 50.1214 56.0233 50.1214 69.6212V94.2425H25.5002C11.9022 94.2425 0.878906 83.2192 0.878906 69.6212V69.6212Z"
|
||||
fill="url(#paint8_linear_8674_44242)"
|
||||
id="path34" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M31.4987 62.28V64.8004H33.9547C34.7948 64.8004 35.5056 65.4789 35.5056 66.3513V79.5019C35.5056 80.342 34.8271 81.0529 33.9547 81.0529H17.3791C16.539 81.0529 15.8281 80.3743 15.8281 79.5019V66.3513C15.8281 65.5112 16.5067 64.8004 17.3791 64.8004H19.802V62.28C19.802 59.0488 22.4192 56.4316 25.6504 56.4316C28.8815 56.4316 31.4987 59.0488 31.4987 62.28ZM29.0361 62.28V64.8004H22.3292V62.28C22.3292 59.9536 24.1059 58.9265 25.6827 58.9265C27.2594 58.9265 29.0361 59.9536 29.0361 62.28ZM25.9832 69.195C27.1141 69.195 28.0188 70.0997 28.0188 71.2306C28.0188 72.006 27.5988 72.6846 26.9526 73.0077L27.7927 76.6265H24.1738L25.0139 73.0077C24.3677 72.6523 23.9476 72.006 23.9476 71.2306C23.9476 70.0997 24.8523 69.195 25.9832 69.195Z"
|
||||
fill="white"
|
||||
id="path36" />
|
||||
<defs
|
||||
id="defs108">
|
||||
<filter
|
||||
id="filter0_i_8674_44242"
|
||||
x="114.72"
|
||||
y="75"
|
||||
width="38.7675"
|
||||
height="43.6537"
|
||||
filterUnits="userSpaceOnUse"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feFlood
|
||||
flood-opacity="0"
|
||||
result="BackgroundImageFix"
|
||||
id="feFlood38" />
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in="SourceGraphic"
|
||||
in2="BackgroundImageFix"
|
||||
result="shape"
|
||||
id="feBlend40" />
|
||||
<feColorMatrix
|
||||
in="SourceAlpha"
|
||||
type="matrix"
|
||||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||
result="hardAlpha"
|
||||
id="feColorMatrix42" />
|
||||
<feOffset
|
||||
dx="-0.592742"
|
||||
dy="1.65375"
|
||||
id="feOffset44" />
|
||||
<feGaussianBlur
|
||||
stdDeviation="4.44556"
|
||||
id="feGaussianBlur46" />
|
||||
<feComposite
|
||||
in2="hardAlpha"
|
||||
operator="arithmetic"
|
||||
k2="-1"
|
||||
k3="1"
|
||||
id="feComposite48" />
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values="0 0 0 0 0.462745 0 0 0 0 0.337255 0 0 0 0 1 0 0 0 0.24 0"
|
||||
id="feColorMatrix50" />
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in2="shape"
|
||||
result="effect1_innerShadow_8674_44242"
|
||||
id="feBlend52" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
id="paint0_radial_8674_44242"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(202 51.5) rotate(145.641) scale(59.357 92.9759)">
|
||||
<stop
|
||||
stop-color="#292842"
|
||||
id="stop55" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#38385F"
|
||||
id="stop57" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_8674_44242"
|
||||
x1="63.7079"
|
||||
y1="144.988"
|
||||
x2="207.623"
|
||||
y2="58.7515"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#35168C"
|
||||
id="stop60" />
|
||||
<stop
|
||||
offset="0.317708"
|
||||
stop-color="#FF5454"
|
||||
id="stop62" />
|
||||
<stop
|
||||
offset="0.46875"
|
||||
stop-color="#FFDD64"
|
||||
id="stop64" />
|
||||
<stop
|
||||
offset="0.677083"
|
||||
stop-color="#BCE6FF"
|
||||
id="stop66" />
|
||||
<stop
|
||||
offset="0.911458"
|
||||
stop-color="#6983EF"
|
||||
id="stop68" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#2395FF"
|
||||
id="stop70" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="paint2_radial_8674_44242"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(188.5 63.5) rotate(135) scale(33.9411 55.1286)">
|
||||
<stop
|
||||
stop-color="#DDDBE3"
|
||||
id="stop73" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="white"
|
||||
id="stop75" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="paint3_linear_8674_44242"
|
||||
x1="211.765"
|
||||
y1="30"
|
||||
x2="211.765"
|
||||
y2="66.4208"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#C1DEF8"
|
||||
id="stop78" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#ECFAFF"
|
||||
id="stop80" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint4_linear_8674_44242"
|
||||
x1="211.769"
|
||||
y1="18.4116"
|
||||
x2="211.769"
|
||||
y2="50.4177"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#DEEBF7"
|
||||
id="stop83" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="white"
|
||||
id="stop85" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint5_linear_8674_44242"
|
||||
x1="116.679"
|
||||
y1="121.846"
|
||||
x2="122.395"
|
||||
y2="105.692"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#28B0E8"
|
||||
id="stop88" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#C5B7FF"
|
||||
stop-opacity="0"
|
||||
id="stop90" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="paint6_radial_8674_44242"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(151.237 120.479) rotate(-138.034) scale(48.3148 39.5031)">
|
||||
<stop
|
||||
stop-color="#E2DBFF"
|
||||
id="stop93" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#6D4AFF"
|
||||
id="stop95" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="paint7_linear_8674_44242"
|
||||
x1="240.861"
|
||||
y1="12.772"
|
||||
x2="241.004"
|
||||
y2="45.5557"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#2AF091"
|
||||
id="stop98" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#00C5A1"
|
||||
id="stop100" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint8_linear_8674_44242"
|
||||
x1="41.1252"
|
||||
y1="56.3637"
|
||||
x2="5.14027"
|
||||
y2="101.345"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#FFD66C"
|
||||
id="stop103" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#FF8E4F"
|
||||
id="stop105" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 12 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 73 KiB |
@ -1,331 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="265"
|
||||
height="148"
|
||||
viewBox="0 0 265 148"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg110"
|
||||
sodipodi:docname="img-welcome.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||
inkscape:export-filename="/home/dev/gopath/src/github.com/ProtonMail/proton-bridge/internal/frontend/qml/icons/img-welcome.png"
|
||||
inkscape:export-xdpi="400"
|
||||
inkscape:export-ydpi="400"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview112"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#ffffff"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="1"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:zoom="0.69351284"
|
||||
inkscape:cx="93.004767"
|
||||
inkscape:cy="115.35475"
|
||||
inkscape:window-width="1916"
|
||||
inkscape:window-height="1041"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="18"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg110" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:27.9987;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect951"
|
||||
width="265"
|
||||
height="148"
|
||||
x="0"
|
||||
y="0"
|
||||
ry="0"
|
||||
inkscape:export-filename="/home/dev/gopath/src/github.com/ProtonMail/proton-bridge/internal/frontend/qml/icons/img-welcome.png"
|
||||
inkscape:export-xdpi="400"
|
||||
inkscape:export-ydpi="400" />
|
||||
<path
|
||||
d="M221.171 147.001H44.8555C43.1441 147.001 41.8047 145.661 41.8047 143.95V142.238C41.8047 140.527 43.1441 139.188 44.8555 139.188H221.171C222.882 139.188 224.221 140.527 224.221 142.238V143.95C224.221 145.661 222.808 147.001 221.171 147.001Z"
|
||||
fill="#B0D4E5"
|
||||
id="path2" />
|
||||
<path
|
||||
d="M141.83 143.503H123.376C120.995 143.503 119.135 141.568 119.135 139.262H146.071C146.071 141.568 144.211 143.503 141.83 143.503Z"
|
||||
fill="#DAF3FF"
|
||||
id="path4" />
|
||||
<path
|
||||
d="M206.034 139.187H58.501V53.9292C58.501 49.0182 62.5191 45 67.4302 45H197.104C202.016 45 206.034 49.0182 206.034 53.9292V139.187Z"
|
||||
fill="url(#paint0_radial_8674_44242)"
|
||||
id="path6" />
|
||||
<path
|
||||
d="M199.115 139.187H66.167V55.3434C66.167 54.1529 67.1343 53.1855 68.3249 53.1855H196.883C198.074 53.1855 199.041 54.1529 199.041 55.3434V139.187H199.115Z"
|
||||
fill="url(#paint1_linear_8674_44242)"
|
||||
id="path8" />
|
||||
<path
|
||||
d="M190.805 131.286H76.1797V62.5185C76.1797 61.5234 77.028 60.7148 78.0721 60.7148H188.847C189.891 60.7148 190.739 61.5234 190.739 62.5185V131.286H190.805Z"
|
||||
fill="url(#paint2_radial_8674_44242)"
|
||||
id="path10" />
|
||||
<path
|
||||
d="M84.1558 70.7744C85.3064 70.7744 86.2392 69.8416 86.2392 68.6909C86.2392 67.5402 85.3064 66.6074 84.1558 66.6074C83.0051 66.6074 82.0723 67.5402 82.0723 68.6909C82.0723 69.8416 83.0051 70.7744 84.1558 70.7744Z"
|
||||
fill="#B0D4E5"
|
||||
id="path12" />
|
||||
<path
|
||||
d="M90.6304 70.7744C91.781 70.7744 92.7139 69.8416 92.7139 68.6909C92.7139 67.5402 91.781 66.6074 90.6304 66.6074C89.4797 66.6074 88.5469 67.5402 88.5469 68.6909C88.5469 69.8416 89.4797 70.7744 90.6304 70.7744Z"
|
||||
fill="#B0D4E5"
|
||||
id="path14" />
|
||||
<path
|
||||
d="M97.105 70.7744C98.2557 70.7744 99.1885 69.8416 99.1885 68.6909C99.1885 67.5402 98.2557 66.6074 97.105 66.6074C95.9543 66.6074 95.0215 67.5402 95.0215 68.6909C95.0215 69.8416 95.9543 70.7744 97.105 70.7744Z"
|
||||
fill="#B0D4E5"
|
||||
id="path16" />
|
||||
<path
|
||||
d="M242.633 76.3538H180.924C178.747 76.3538 177 74.5616 177 72.3891V33.9646C177 31.7922 178.774 30 180.924 30H242.606C244.783 30 246.53 31.7922 246.53 33.9646V72.3891C246.557 74.5887 244.783 76.3538 242.633 76.3538Z"
|
||||
fill="url(#paint3_linear_8674_44242)"
|
||||
id="path18" />
|
||||
<path
|
||||
d="M209.232 56.6899C210.689 57.8921 212.822 57.8921 214.28 56.6899L245.431 31.0419C244.729 30.4007 243.784 30 242.758 30H180.78C179.754 30 178.809 30.4007 178.107 31.0419L209.232 56.6899Z"
|
||||
fill="url(#paint4_linear_8674_44242)"
|
||||
id="path20" />
|
||||
<path
|
||||
d="M134.4 75C123.858 75 115.312 83.5451 115.312 94.0874V113.301C115.312 115.344 116.968 117 119.011 117H150.184C152.008 117 153.487 115.52 153.487 113.696V94.0874C153.487 83.5465 144.942 75 134.4 75ZM145.387 93.9814L137.044 101.01C135.538 102.279 133.336 102.279 131.83 101.01L123.487 93.9814C123.487 88.0172 128.323 83.1817 134.287 83.1817H134.587C140.551 83.1817 145.387 88.0172 145.387 93.9814Z"
|
||||
fill="#6D4AFF"
|
||||
id="path22" />
|
||||
<path
|
||||
d="M134.4 75C123.858 75 115.312 83.5451 115.312 94.0874V113.301C115.312 115.344 116.968 117 119.011 117H150.184C152.008 117 153.487 115.52 153.487 113.696V94.0874C153.487 83.5465 144.942 75 134.4 75ZM145.387 93.9814L137.044 101.01C135.538 102.279 133.336 102.279 131.83 101.01L123.487 93.9814C123.487 88.0172 128.323 83.1817 134.287 83.1817H134.587C140.551 83.1817 145.387 88.0172 145.387 93.9814Z"
|
||||
fill="url(#paint5_linear_8674_44242)"
|
||||
id="path24" />
|
||||
<g
|
||||
filter="url(#filter0_i_8674_44242)"
|
||||
id="g28">
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M137.057 101.095C136.188 101.799 133.926 102.785 131.838 101.095C129.751 99.4048 125.418 95.6687 123.513 94.0119H123.524L123.487 93.9814C123.487 88.0172 128.323 83.1817 134.287 83.1817H134.587C140.551 83.1817 145.387 88.0172 145.387 93.9814L145.351 94.0119H145.383V117H150.184C152.008 117 153.487 115.52 153.487 113.696V94.0874C153.487 83.5465 144.942 75 134.4 75C123.858 75 115.312 83.5451 115.312 94.0874V95.2946L127.117 105.444C127.986 106.272 130.273 107.432 132.46 105.444C134.647 103.456 136.436 101.716 137.057 101.095Z"
|
||||
fill="url(#paint6_radial_8674_44242)"
|
||||
id="path26" />
|
||||
</g>
|
||||
<circle
|
||||
cx="239.278"
|
||||
cy="30.2778"
|
||||
r="15.2778"
|
||||
fill="url(#paint7_linear_8674_44242)"
|
||||
id="circle30" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M245.702 26.668C246.113 27.0766 246.116 27.7417 245.707 28.1534L238.128 35.7923C237.93 35.9911 237.662 36.1028 237.382 36.1028C237.102 36.1028 236.834 35.9911 236.636 35.7923L232.758 31.8835C232.349 31.4718 232.352 30.8067 232.764 30.3981C233.175 29.9895 233.84 29.9921 234.249 30.4039L237.382 33.5613L244.216 26.6738C244.625 26.262 245.29 26.2595 245.702 26.668Z"
|
||||
fill="white"
|
||||
id="path32" />
|
||||
<path
|
||||
d="M0.878906 69.6212C0.878906 56.0233 11.9022 45 25.5001 45V45C39.0981 45 50.1214 56.0233 50.1214 69.6212V94.2425H25.5002C11.9022 94.2425 0.878906 83.2192 0.878906 69.6212V69.6212Z"
|
||||
fill="url(#paint8_linear_8674_44242)"
|
||||
id="path34" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M31.4987 62.28V64.8004H33.9547C34.7948 64.8004 35.5056 65.4789 35.5056 66.3513V79.5019C35.5056 80.342 34.8271 81.0529 33.9547 81.0529H17.3791C16.539 81.0529 15.8281 80.3743 15.8281 79.5019V66.3513C15.8281 65.5112 16.5067 64.8004 17.3791 64.8004H19.802V62.28C19.802 59.0488 22.4192 56.4316 25.6504 56.4316C28.8815 56.4316 31.4987 59.0488 31.4987 62.28ZM29.0361 62.28V64.8004H22.3292V62.28C22.3292 59.9536 24.1059 58.9265 25.6827 58.9265C27.2594 58.9265 29.0361 59.9536 29.0361 62.28ZM25.9832 69.195C27.1141 69.195 28.0188 70.0997 28.0188 71.2306C28.0188 72.006 27.5988 72.6846 26.9526 73.0077L27.7927 76.6265H24.1738L25.0139 73.0077C24.3677 72.6523 23.9476 72.006 23.9476 71.2306C23.9476 70.0997 24.8523 69.195 25.9832 69.195Z"
|
||||
fill="white"
|
||||
id="path36" />
|
||||
<defs
|
||||
id="defs108">
|
||||
<filter
|
||||
id="filter0_i_8674_44242"
|
||||
x="114.72"
|
||||
y="75"
|
||||
width="38.7675"
|
||||
height="43.6537"
|
||||
filterUnits="userSpaceOnUse"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feFlood
|
||||
flood-opacity="0"
|
||||
result="BackgroundImageFix"
|
||||
id="feFlood38" />
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in="SourceGraphic"
|
||||
in2="BackgroundImageFix"
|
||||
result="shape"
|
||||
id="feBlend40" />
|
||||
<feColorMatrix
|
||||
in="SourceAlpha"
|
||||
type="matrix"
|
||||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||
result="hardAlpha"
|
||||
id="feColorMatrix42" />
|
||||
<feOffset
|
||||
dx="-0.592742"
|
||||
dy="1.65375"
|
||||
id="feOffset44" />
|
||||
<feGaussianBlur
|
||||
stdDeviation="4.44556"
|
||||
id="feGaussianBlur46" />
|
||||
<feComposite
|
||||
in2="hardAlpha"
|
||||
operator="arithmetic"
|
||||
k2="-1"
|
||||
k3="1"
|
||||
id="feComposite48" />
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values="0 0 0 0 0.462745 0 0 0 0 0.337255 0 0 0 0 1 0 0 0 0.24 0"
|
||||
id="feColorMatrix50" />
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in2="shape"
|
||||
result="effect1_innerShadow_8674_44242"
|
||||
id="feBlend52" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
id="paint0_radial_8674_44242"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(202 51.5) rotate(145.641) scale(59.357 92.9759)">
|
||||
<stop
|
||||
stop-color="#292842"
|
||||
id="stop55" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#38385F"
|
||||
id="stop57" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_8674_44242"
|
||||
x1="63.7079"
|
||||
y1="144.988"
|
||||
x2="207.623"
|
||||
y2="58.7515"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#35168C"
|
||||
id="stop60" />
|
||||
<stop
|
||||
offset="0.317708"
|
||||
stop-color="#FF5454"
|
||||
id="stop62" />
|
||||
<stop
|
||||
offset="0.46875"
|
||||
stop-color="#FFDD64"
|
||||
id="stop64" />
|
||||
<stop
|
||||
offset="0.677083"
|
||||
stop-color="#BCE6FF"
|
||||
id="stop66" />
|
||||
<stop
|
||||
offset="0.911458"
|
||||
stop-color="#6983EF"
|
||||
id="stop68" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#2395FF"
|
||||
id="stop70" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="paint2_radial_8674_44242"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(188.5 63.5) rotate(135) scale(33.9411 55.1286)">
|
||||
<stop
|
||||
stop-color="#DDDBE3"
|
||||
id="stop73" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="white"
|
||||
id="stop75" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="paint3_linear_8674_44242"
|
||||
x1="211.765"
|
||||
y1="30"
|
||||
x2="211.765"
|
||||
y2="66.4208"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#C1DEF8"
|
||||
id="stop78" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#ECFAFF"
|
||||
id="stop80" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint4_linear_8674_44242"
|
||||
x1="211.769"
|
||||
y1="18.4116"
|
||||
x2="211.769"
|
||||
y2="50.4177"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#DEEBF7"
|
||||
id="stop83" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="white"
|
||||
id="stop85" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint5_linear_8674_44242"
|
||||
x1="116.679"
|
||||
y1="121.846"
|
||||
x2="122.395"
|
||||
y2="105.692"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#28B0E8"
|
||||
id="stop88" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#C5B7FF"
|
||||
stop-opacity="0"
|
||||
id="stop90" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="paint6_radial_8674_44242"
|
||||
cx="0"
|
||||
cy="0"
|
||||
r="1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(151.237 120.479) rotate(-138.034) scale(48.3148 39.5031)">
|
||||
<stop
|
||||
stop-color="#E2DBFF"
|
||||
id="stop93" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#6D4AFF"
|
||||
id="stop95" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
id="paint7_linear_8674_44242"
|
||||
x1="240.861"
|
||||
y1="12.772"
|
||||
x2="241.004"
|
||||
y2="45.5557"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#2AF091"
|
||||
id="stop98" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#00C5A1"
|
||||
id="stop100" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint8_linear_8674_44242"
|
||||
x1="41.1252"
|
||||
y1="56.3637"
|
||||
x2="5.14027"
|
||||
y2="101.345"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#FFD66C"
|
||||
id="stop103" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#FF8E4F"
|
||||
id="stop105" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="100%" height="100%" viewBox="0 0 265 148" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||
<path id="path2" d="M221.171,147.001L44.856,147.001C43.144,147.001 41.805,145.661 41.805,143.95L41.805,142.238C41.805,140.527 43.144,139.188 44.856,139.188L221.171,139.188C222.882,139.188 224.221,140.527 224.221,142.238L224.221,143.95C224.221,145.661 222.808,147.001 221.171,147.001Z" style="fill:rgb(176,212,229);fill-rule:nonzero;"/>
|
||||
<path id="path4" d="M141.83,143.503L123.376,143.503C120.995,143.503 119.135,141.568 119.135,139.262L146.071,139.262C146.071,141.568 144.211,143.503 141.83,143.503Z" style="fill:rgb(218,243,255);fill-rule:nonzero;"/>
|
||||
<path id="path6" d="M206.034,139.187L58.501,139.187L58.501,53.929C58.501,49.018 62.519,45 67.43,45L197.104,45C202.016,45 206.034,49.018 206.034,53.929L206.034,139.187Z" style="fill:url(#_Radial1);fill-rule:nonzero;"/>
|
||||
<path id="path8" d="M199.115,139.187L66.167,139.187L66.167,55.343C66.167,54.153 67.134,53.186 68.325,53.186L196.883,53.186C198.074,53.186 199.041,54.153 199.041,55.343L199.041,139.187L199.115,139.187Z" style="fill:url(#_Linear2);fill-rule:nonzero;"/>
|
||||
<path id="path10" d="M190.805,131.286L76.18,131.286L76.18,62.519C76.18,61.523 77.028,60.715 78.072,60.715L188.847,60.715C189.891,60.715 190.739,61.523 190.739,62.519L190.739,131.286L190.805,131.286Z" style="fill:url(#_Radial3);fill-rule:nonzero;"/>
|
||||
<path id="path12" d="M84.156,70.774C85.306,70.774 86.239,69.842 86.239,68.691C86.239,67.54 85.306,66.607 84.156,66.607C83.005,66.607 82.072,67.54 82.072,68.691C82.072,69.842 83.005,70.774 84.156,70.774Z" style="fill:rgb(176,212,229);fill-rule:nonzero;"/>
|
||||
<path id="path14" d="M90.63,70.774C91.781,70.774 92.714,69.842 92.714,68.691C92.714,67.54 91.781,66.607 90.63,66.607C89.48,66.607 88.547,67.54 88.547,68.691C88.547,69.842 89.48,70.774 90.63,70.774Z" style="fill:rgb(176,212,229);fill-rule:nonzero;"/>
|
||||
<path id="path16" d="M97.105,70.774C98.256,70.774 99.189,69.842 99.189,68.691C99.189,67.54 98.256,66.607 97.105,66.607C95.954,66.607 95.022,67.54 95.022,68.691C95.022,69.842 95.954,70.774 97.105,70.774Z" style="fill:rgb(176,212,229);fill-rule:nonzero;"/>
|
||||
<path id="path18" d="M242.633,76.354L180.924,76.354C178.747,76.354 177,74.562 177,72.389L177,33.965C177,31.792 178.774,30 180.924,30L242.606,30C244.783,30 246.53,31.792 246.53,33.965L246.53,72.389C246.557,74.589 244.783,76.354 242.633,76.354Z" style="fill:url(#_Linear4);fill-rule:nonzero;"/>
|
||||
<path id="path20" d="M209.232,56.69C210.689,57.892 212.822,57.892 214.28,56.69L245.431,31.042C244.729,30.401 243.784,30 242.758,30L180.78,30C179.754,30 178.809,30.401 178.107,31.042L209.232,56.69Z" style="fill:url(#_Linear5);fill-rule:nonzero;"/>
|
||||
<path id="path22" d="M134.4,75C123.858,75 115.312,83.545 115.312,94.087L115.312,113.301C115.312,115.344 116.968,117 119.011,117L150.184,117C152.008,117 153.487,115.52 153.487,113.696L153.487,94.087C153.487,83.547 144.942,75 134.4,75ZM145.387,93.981L137.044,101.01C135.538,102.279 133.336,102.279 131.83,101.01L123.487,93.981C123.487,88.017 128.323,83.182 134.287,83.182L134.587,83.182C140.551,83.182 145.387,88.017 145.387,93.981Z" style="fill:rgb(109,74,255);fill-rule:nonzero;"/>
|
||||
<path id="path24" d="M134.4,75C123.858,75 115.312,83.545 115.312,94.087L115.312,113.301C115.312,115.344 116.968,117 119.011,117L150.184,117C152.008,117 153.487,115.52 153.487,113.696L153.487,94.087C153.487,83.547 144.942,75 134.4,75ZM145.387,93.981L137.044,101.01C135.538,102.279 133.336,102.279 131.83,101.01L123.487,93.981C123.487,88.017 128.323,83.182 134.287,83.182L134.587,83.182C140.551,83.182 145.387,88.017 145.387,93.981Z" style="fill:url(#_Linear6);fill-rule:nonzero;"/>
|
||||
<g id="g28">
|
||||
<path id="path26" d="M137.057,101.095C136.188,101.799 133.926,102.785 131.838,101.095C129.751,99.405 125.418,95.669 123.513,94.012L123.524,94.012L123.487,93.981C123.487,88.017 128.323,83.182 134.287,83.182L134.587,83.182C140.551,83.182 145.387,88.017 145.387,93.981L145.351,94.012L145.383,94.012L145.383,117L150.184,117C152.008,117 153.487,115.52 153.487,113.696L153.487,94.087C153.487,83.547 144.942,75 134.4,75C123.858,75 115.312,83.545 115.312,94.087L115.312,95.295L127.117,105.444C127.986,106.272 130.273,107.432 132.46,105.444C134.647,103.456 136.436,101.716 137.057,101.095Z" style="fill:url(#_Radial7);"/>
|
||||
</g>
|
||||
<circle id="circle30" cx="239.278" cy="30.278" r="15.278" style="fill:url(#_Linear8);"/>
|
||||
<path id="path32" d="M245.702,26.668C246.113,27.077 246.116,27.742 245.707,28.153L238.128,35.792C237.93,35.991 237.662,36.103 237.382,36.103C237.102,36.103 236.834,35.991 236.636,35.792L232.758,31.884C232.349,31.472 232.352,30.807 232.764,30.398C233.175,29.99 233.84,29.992 234.249,30.404L237.382,33.561L244.216,26.674C244.625,26.262 245.29,26.26 245.702,26.668Z" style="fill:white;"/>
|
||||
<path id="path34" d="M0.879,69.621C0.879,56.023 11.902,45 25.5,45C39.098,45 50.121,56.023 50.121,69.621L50.121,94.243L25.5,94.243C11.902,94.243 0.879,83.219 0.879,69.621Z" style="fill:url(#_Linear9);fill-rule:nonzero;"/>
|
||||
<path id="path36" d="M31.499,62.28L31.499,64.8L33.955,64.8C34.795,64.8 35.506,65.479 35.506,66.351L35.506,79.502C35.506,80.342 34.827,81.053 33.955,81.053L17.379,81.053C16.539,81.053 15.828,80.374 15.828,79.502L15.828,66.351C15.828,65.511 16.507,64.8 17.379,64.8L19.802,64.8L19.802,62.28C19.802,59.049 22.419,56.432 25.65,56.432C28.882,56.432 31.499,59.049 31.499,62.28ZM29.036,62.28L29.036,64.8L22.329,64.8L22.329,62.28C22.329,59.954 24.106,58.926 25.683,58.926C27.259,58.926 29.036,59.954 29.036,62.28ZM25.983,69.195C27.114,69.195 28.019,70.1 28.019,71.231C28.019,72.006 27.599,72.685 26.953,73.008L27.793,76.626L24.174,76.626L25.014,73.008C24.368,72.652 23.948,72.006 23.948,71.231C23.948,70.1 24.852,69.195 25.983,69.195Z" style="fill:white;"/>
|
||||
<defs>
|
||||
<radialGradient id="_Radial1" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-49.0002,33.4997,-52.4734,-76.7532,202,51.5)"><stop offset="0" style="stop-color:rgb(41,40,66);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(56,56,95);stop-opacity:1"/></radialGradient>
|
||||
<linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(143.915,-86.2365,86.2365,143.915,63.7079,144.988)"><stop offset="0" style="stop-color:rgb(53,22,140);stop-opacity:1"/><stop offset="0.32" style="stop-color:rgb(255,84,84);stop-opacity:1"/><stop offset="0.47" style="stop-color:rgb(255,221,100);stop-opacity:1"/><stop offset="0.68" style="stop-color:rgb(188,230,255);stop-opacity:1"/><stop offset="0.91" style="stop-color:rgb(105,131,239);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(35,149,255);stop-opacity:1"/></linearGradient>
|
||||
<radialGradient id="_Radial3" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-24,24,-38.9818,-38.9818,188.5,63.5)"><stop offset="0" style="stop-color:rgb(221,219,227);stop-opacity:1"/><stop offset="1" style="stop-color:white;stop-opacity:1"/></radialGradient>
|
||||
<linearGradient id="_Linear4" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.23013e-15,36.4208,-36.4208,2.23013e-15,211.765,30)"><stop offset="0" style="stop-color:rgb(193,222,248);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(236,250,255);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear5" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.95981e-15,32.0061,-32.0061,1.95981e-15,211.769,18.4116)"><stop offset="0" style="stop-color:rgb(222,235,247);stop-opacity:1"/><stop offset="1" style="stop-color:white;stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear6" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(5.716,-16.154,16.154,5.716,116.679,121.846)"><stop offset="0" style="stop-color:rgb(40,176,232);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(197,183,255);stop-opacity:0"/></linearGradient>
|
||||
<radialGradient id="_Radial7" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-35.9241,-32.3076,26.4153,-29.3722,151.237,120.479)"><stop offset="0" style="stop-color:rgb(226,219,255);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(109,74,255);stop-opacity:1"/></radialGradient>
|
||||
<linearGradient id="_Linear8" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.143,32.7837,-32.7837,0.143,240.861,12.772)"><stop offset="0" style="stop-color:rgb(42,240,145);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(0,197,161);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear9" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-35.9849,44.9813,-44.9813,-35.9849,41.1252,56.3637)"><stop offset="0" style="stop-color:rgb(255,214,108);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,142,79);stop-opacity:1"/></linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 9.1 KiB |
Reference in New Issue
Block a user