Inverted logos!

This commit is contained in:
Paul Copplestone
2020-01-11 12:47:52 +08:00
parent f8d1bd5b0d
commit ac095ea8ae
8 changed files with 126 additions and 32 deletions

View File

@@ -3,14 +3,14 @@ id: faq
title: FAQs
---
## Do you support `{database}`?
## Do you support (some other database)?
At the moment we only support PostgreSQL. However you can [vote on a new database](https://github.com/supabase/monorepo/issues/6) if you want us to start development.
## Do you have a library for `{other language}`?
## Do you have a library for (some other language)?
We currently have only a Javascript library. However you can [vote on a new client library](https://github.com/supabase/monorepo/issues/5) for your favourite language.
## Can you build a connector for `{other product}`?
## Can you build a connector for (some other product)?
We don't have any connectors right now. However you can [vote on a new connector](https://github.com/supabase/monorepo/issues/4) for a tool that you use.

View File

@@ -20,10 +20,11 @@ module.exports = {
},
navbar: {
classNames: 'shadow--md',
title: 'supabase',
// title: 'supabase',
logo: {
alt: 'Supabase',
src: '/supabase-logo.svg',
src: '/supabase-light.svg',
dark: '/supabase-dark.svg',
},
links: [
{ to: '/docs/about', label: 'Docs', position: 'right' },
@@ -35,7 +36,7 @@ module.exports = {
// },
{
href: 'https://app.supabase.io',
label: 'Join the List',
label: 'Join the List',
position: 'right',
},
],
@@ -48,34 +49,34 @@ module.exports = {
footer: {
links: [
{
title: "Company",
title: 'Company',
items: [
{
label: "Docs",
to: "/docs/about"
label: 'Docs',
to: '/docs/about',
},
{
label: "Guides",
to: "/docs/guides/examples"
label: 'Guides',
to: '/docs/guides/examples',
},
{
label: "Blog",
to: "/blog"
}
]
label: 'Blog',
to: '/blog',
},
],
},
{
title: "Community",
title: 'Community',
items: [
{
label: "GitHub",
href: "https://github.com/supabase/monorepo"
label: 'GitHub',
href: 'https://github.com/supabase/monorepo',
},
// {
// label: "Discord",
// href: "https://discordapp.com/invite/docusaurus"
// }
]
],
},
// {
// title: "Social",
@@ -104,7 +105,7 @@ module.exports = {
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
}
},
},
],
],

View File

@@ -38,6 +38,7 @@
--custom-content-color-light: #484848;
--custom-content-color-lightest: #333;
--custom-border-color: #e0e0e0;
--custom-color-subtle: #ccc;
--custom-shadow-lw: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
--custom-shadow-md: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
--custom-shadow-tl: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
@@ -120,6 +121,7 @@
--custom-primary-light: #65d9a5;
--custom-primary-lighter: #9fe7c7;
--custom-primary-lightest: #c5f1dd;
--custom-color-subtle: #484848;
--custom-background-color: #1f1f1f;
--custom-background-color-highlight: #2a2a2a;
@@ -157,12 +159,6 @@
--ifm-card-background-color: var(--custom-background-color-highlight);
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
html,
body {
@@ -174,6 +170,15 @@ body {
-webkit-text-size-adjust: 100%;
}
:root[data-theme='light'] .navbar__logo.logo--dark,
:root[data-theme=''] .navbar__logo.logo--dark
{
display: none;
}
:root[data-theme='dark'] .navbar__logo.logo--light{
display: none;
}
.button.button--primary {
text-shadow: 0 1px 3px rgba(36,180,126,.4);
}
@@ -194,6 +199,14 @@ body {
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
@media screen and (min-width: 768px) {
html,
body {
@@ -226,6 +239,13 @@ li + li {
.main-wrapper {
box-shadow: var(--ifm-global-shadow-md);
}
.navbar .navbar__link {
font-weight: bold;
}
.navbar-sidebar__items .menu__link {
line-height: calc(var(--ifm-spacing-vertical) * 1.5) !important;
font-weight: bold;
}
/* .with-underline::after,
.markdown h2:after {
@@ -449,6 +469,21 @@ div[class^='sidebar_'] .menu__link.menu__link--active:not(.menu__link--sublist)
padding: var(--ifm-spacing-vertical) var(--ifm-spacing-horizontal);
}
}
.menu.menu--responsive .button.button--secondary.button--sm.menu__button {
transition: all 0.2s ease;
width: 100%;
margin:0;
bottom: 0;
right: 0;
border-radius: 0;
text-align: right;
opacity: 0.8;
}
.menu.menu--responsive .button.button--secondary.button--sm.menu__button:hover,
.menu.menu--responsive .button.button--secondary.button--sm.menu__button:active {
opacity: 1;
background-color: var(--custom-background-color);
}
.DummyData {
display: flex;
@@ -518,4 +553,9 @@ div[class^='sidebar_'] .menu__link.menu__link--active:not(.menu__link--sublist)
.react-toggle-thumb {
box-shadow: none !important;
}
a.hash-link {
text-decoration: none;
font-style: none;
color: var(--custom-color-subtle);
}

View File

@@ -20,7 +20,7 @@ const realtime = supabase
console.log('Change received!', change)
})
.subscribe()
`
`.trim()
const readExample = `
import { createClient } from '@supabase/supabase-js'
@@ -35,7 +35,7 @@ const countries = await supabase
cities { name, population }
\`)
.filter('cities=popution=gte.10000')
`
`.trim()
const createExample = `
import { createClient } from '@supabase/supabase-js'
@@ -46,7 +46,7 @@ const supabase = createClient('https://stripe.supabase.io', '1a2b-3c4d-5e6f-7g8h
const newEmployee = supabase
.from('employees')
.insert({ id: 1, name: 'Greg Brockman', salary: 5000 })
`
`.trim()
const updateExample = `
import { createClient } from '@supabase/supabase-js'
@@ -58,7 +58,7 @@ const listener = supabase
.from('employees')
.eq('country_code', 'NZ')
.update({ name: 'Middle Earth' })
`
`.trim()
const features = [
{

View File

@@ -68,6 +68,7 @@ function Navbar() {
);
const logoUrl = useBaseUrl(logo.src);
const logoDark = useBaseUrl(logo.dark)
return (
<nav
ref={navbarRef}
@@ -80,7 +81,12 @@ function Navbar() {
<div className="navbar__inner">
<div className={classnames('navbar__items', styles.navbarItems)}>
<Link className="navbar__brand" to={baseUrl}>
{logo != null && <img className="navbar__logo" src={logoUrl} alt={logo.alt} />}
{logo != null && (
<img className="navbar__logo logo--light" src={logoUrl} alt={logo.alt} />
)}
{logoDark != null && (
<img className="navbar__logo logo--dark" src={logoDark} alt={logo.alt} />
)}
{title != null && (
<strong className={isSearchBarExpanded ? styles.hideLogoText : ''}>{title}</strong>
)}
@@ -141,7 +147,12 @@ function Navbar() {
<div className="navbar-sidebar">
<div className="navbar-sidebar__brand">
<Link className="navbar__brand" onClick={hideSidebar} to={baseUrl}>
{logo != null && <img className="navbar__logo" src={logoUrl} alt={logo.alt} />}
{logo != null && (
<img className="navbar__logo logo--light" src={logoUrl} alt={logo.alt} />
)}
{logoDark != null && (
<img className="navbar__logo logo--dark" src={logoDark} alt={logo.alt} />
)}
{title != null && <strong>{title}</strong>}
</Link>
{!disableDarkMode && sidebarShown && (

BIN
web/static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,21 @@
<svg width="2978" height="628" viewBox="0 0 2978 628" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M292.613 30.273C292.613 17.972 282.645 8 270.349 8C264.234 8 258.696 10.4658 254.672 14.4576L251.58 17.8991L79.869 250.049H250.275L291.756 36.5579L292.514 32.3876C292.579 31.6915 292.613 30.9862 292.613 30.273Z" fill="#3ECF8E"/>
<path d="M18 345.823C18 365.505 33.9486 381.46 53.6222 381.46L53.7796 381.46H224.742L250.275 250.049H79.869L28.2344 319.858L24.9095 324.727C20.5661 330.633 18 337.928 18 345.823Z" fill="#3ECF8E"/>
<path d="M455.143 285.686C455.143 266.004 439.194 250.049 419.521 250.049H418.11H250.275L224.742 381.46H393.054L447.3 308.121L449.463 304.999C453.057 299.434 455.143 292.804 455.143 285.686Z" fill="#3ECF8E"/>
<path d="M183.102 597.727C183.102 610.028 193.07 620 205.366 620C211.96 620 217.884 617.132 221.961 612.576L222.838 611.588L393.054 381.46H224.742L183.909 591.611L183.8 592.175C183.344 593.95 183.102 595.81 183.102 597.727Z" fill="#3ECF8E"/>
<path d="M183.102 597.727C183.102 610.028 193.07 620 205.366 620C211.96 620 217.884 617.132 221.961 612.576L222.838 611.588L393.054 381.46H224.742L183.909 591.611L183.8 592.175C183.344 593.95 183.102 595.81 183.102 597.727Z" fill="url(#paint0_linear)"/>
<path d="M717 390.353C720.036 418.721 745.841 467.351 820.725 467.351C885.995 467.351 917.366 425.813 917.366 385.288C917.366 348.815 892.573 318.928 843.493 308.796L808.075 301.198C794.414 298.665 785.306 291.067 785.306 278.909C785.306 264.725 799.474 254.088 817.183 254.088C845.517 254.088 856.143 272.83 858.167 287.521L914.33 274.857C911.294 248.009 887.513 202.925 816.677 202.925C763.044 202.925 723.578 239.904 723.578 284.481C723.578 319.434 745.335 348.309 793.402 358.946L826.29 366.545C845.517 370.597 853.107 379.716 853.107 390.86C853.107 404.031 842.482 415.682 820.219 415.682C790.872 415.682 776.199 397.445 774.681 377.689L717 390.353Z" fill="white"/>
<path d="M1132.42 459.753H1196.68C1195.67 451.141 1194.15 433.918 1194.15 414.668V210.523H1126.85V355.4C1126.85 384.275 1109.65 404.537 1079.8 404.537C1048.43 404.537 1034.26 382.248 1034.26 354.387V210.523H966.967V368.065C966.967 422.267 1001.37 466.338 1061.58 466.338C1087.89 466.338 1116.74 456.207 1130.4 432.905C1130.4 443.036 1131.41 454.687 1132.42 459.753Z" fill="white"/>
<path d="M1333.26 556V435.438C1345.4 452.154 1370.7 465.832 1405.11 465.832C1475.44 465.832 1522.49 410.109 1522.49 334.631C1522.49 260.673 1480.5 204.951 1407.64 204.951C1370.2 204.951 1342.37 221.667 1331.24 240.917V210.523H1265.97V556H1333.26ZM1456.21 335.138C1456.21 379.716 1428.89 405.55 1394.48 405.55C1360.08 405.55 1332.25 379.209 1332.25 335.138C1332.25 291.067 1360.08 265.232 1394.48 265.232C1428.89 265.232 1456.21 291.067 1456.21 335.138Z" fill="white"/>
<path d="M1560.6 391.873C1560.6 430.879 1592.98 466.845 1646.11 466.845C1683.04 466.845 1706.82 449.621 1719.47 429.865C1719.47 439.49 1720.48 453.167 1722 459.753H1783.73C1782.21 451.141 1780.7 433.411 1780.7 420.241V297.652C1780.7 247.502 1751.35 202.925 1672.42 202.925C1605.63 202.925 1569.7 245.982 1565.66 284.988L1625.36 297.652C1627.39 275.87 1643.58 257.127 1672.92 257.127C1701.26 257.127 1714.92 271.817 1714.92 289.547C1714.92 298.159 1710.37 305.251 1696.2 307.277L1634.98 316.395C1593.49 322.474 1560.6 347.295 1560.6 391.873ZM1660.27 416.695C1638.52 416.695 1627.89 402.511 1627.89 387.821C1627.89 368.571 1641.55 358.946 1658.76 356.414L1714.92 347.802V358.946C1714.92 403.018 1688.61 416.695 1660.27 416.695Z" fill="white"/>
<path d="M1913.8 459.753V429.359C1926.95 450.635 1953.26 465.832 1987.67 465.832C2058.51 465.832 2105.06 409.603 2105.06 334.125C2105.06 260.166 2063.06 203.938 1990.2 203.938C1953.26 203.938 1925.94 220.148 1914.81 237.877V93H1848.53V459.753H1913.8ZM2037.76 334.631C2037.76 380.222 2010.44 405.55 1976.03 405.55C1942.13 405.55 1913.8 379.716 1913.8 334.631C1913.8 289.04 1942.13 264.219 1976.03 264.219C2010.44 264.219 2037.76 289.04 2037.76 334.631Z" fill="white"/>
<path d="M2143.16 391.873C2143.16 430.879 2175.54 466.845 2228.67 466.845C2265.6 466.845 2289.39 449.621 2302.03 429.865C2302.03 439.49 2303.05 453.167 2304.56 459.753H2366.29C2364.78 451.141 2363.26 433.411 2363.26 420.241V297.652C2363.26 247.502 2333.91 202.925 2254.98 202.925C2188.19 202.925 2152.27 245.982 2148.22 284.988L2207.92 297.652C2209.95 275.87 2226.14 257.127 2255.48 257.127C2283.82 257.127 2297.48 271.817 2297.48 289.547C2297.48 298.159 2292.93 305.251 2278.76 307.277L2217.54 316.395C2176.05 322.474 2143.16 347.295 2143.16 391.873ZM2242.84 416.695C2221.08 416.695 2210.45 402.511 2210.45 387.821C2210.45 368.571 2224.11 358.946 2241.32 356.414L2297.48 347.802V358.946C2297.48 403.018 2271.17 416.695 2242.84 416.695Z" fill="white"/>
<path d="M2409.84 390.353C2412.87 418.721 2438.68 467.351 2513.56 467.351C2578.83 467.351 2610.2 425.813 2610.2 385.288C2610.2 348.815 2585.41 318.928 2536.33 308.796L2500.91 301.198C2487.25 298.665 2478.15 291.067 2478.15 278.909C2478.15 264.725 2492.31 254.088 2510.02 254.088C2538.36 254.088 2548.98 272.83 2551.01 287.521L2607.17 274.857C2604.13 248.009 2580.35 202.925 2509.52 202.925C2455.88 202.925 2416.42 239.904 2416.42 284.481C2416.42 319.434 2438.17 348.309 2486.24 358.946L2519.13 366.545C2538.36 370.597 2545.95 379.716 2545.95 390.86C2545.95 404.031 2535.32 415.682 2513.06 415.682C2483.71 415.682 2469.04 397.445 2467.52 377.689L2409.84 390.353Z" fill="white"/>
<path d="M2712.4 306.77C2713.92 283.975 2733.15 257.633 2768.06 257.633C2806.51 257.633 2822.71 281.949 2823.72 306.77H2712.4ZM2830.3 371.611C2822.2 393.899 2805 409.603 2773.63 409.603C2740.23 409.603 2712.4 385.794 2710.89 352.868H2888.99C2888.99 351.854 2890 341.723 2890 332.098C2890 252.061 2843.96 202.925 2767.05 202.925C2703.3 202.925 2644.6 254.594 2644.6 334.125C2644.6 418.214 2704.81 467.351 2773.12 467.351C2834.34 467.351 2873.81 431.385 2886.46 388.327L2830.3 371.611Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear" x1="323.108" y1="402.321" x2="199.994" y2="620" gradientUnits="userSpaceOnUse">
<stop stop-color="#23915F"/>
<stop offset="1" stop-color="#3ECF8E" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -0,0 +1,21 @@
<svg width="2978" height="628" viewBox="0 0 2978 628" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M292.613 30.273C292.613 17.972 282.645 8 270.349 8C264.234 8 258.696 10.4658 254.672 14.4576L251.58 17.8991L79.869 250.049H250.275L291.756 36.5579L292.514 32.3876C292.579 31.6915 292.613 30.9862 292.613 30.273Z" fill="#3ECF8E"/>
<path d="M18 345.823C18 365.505 33.9486 381.46 53.6222 381.46L53.7796 381.46H224.742L250.275 250.049H79.869L28.2344 319.858L24.9095 324.727C20.5661 330.633 18 337.928 18 345.823Z" fill="#3ECF8E"/>
<path d="M455.143 285.686C455.143 266.004 439.194 250.049 419.521 250.049H418.11H250.275L224.742 381.46H393.054L447.3 308.121L449.463 304.999C453.057 299.434 455.143 292.804 455.143 285.686Z" fill="#3ECF8E"/>
<path d="M183.102 597.727C183.102 610.028 193.07 620 205.366 620C211.96 620 217.884 617.132 221.961 612.576L222.838 611.588L393.054 381.46H224.742L183.909 591.611L183.8 592.175C183.344 593.95 183.102 595.81 183.102 597.727Z" fill="#3ECF8E"/>
<path d="M183.102 597.727C183.102 610.028 193.07 620 205.366 620C211.96 620 217.884 617.132 221.961 612.576L222.838 611.588L393.054 381.46H224.742L183.909 591.611L183.8 592.175C183.344 593.95 183.102 595.81 183.102 597.727Z" fill="url(#paint0_linear)"/>
<path d="M717 390.353C720.036 418.721 745.841 467.351 820.725 467.351C885.995 467.351 917.366 425.813 917.366 385.288C917.366 348.815 892.573 318.928 843.493 308.796L808.075 301.198C794.414 298.665 785.306 291.067 785.306 278.909C785.306 264.725 799.474 254.088 817.183 254.088C845.517 254.088 856.143 272.83 858.167 287.521L914.33 274.857C911.294 248.009 887.513 202.925 816.677 202.925C763.044 202.925 723.578 239.904 723.578 284.481C723.578 319.434 745.335 348.309 793.402 358.946L826.29 366.545C845.517 370.597 853.107 379.716 853.107 390.86C853.107 404.031 842.482 415.682 820.219 415.682C790.872 415.682 776.199 397.445 774.681 377.689L717 390.353Z" fill="#1F1F1F"/>
<path d="M1132.42 459.753H1196.68C1195.67 451.141 1194.15 433.918 1194.15 414.668V210.523H1126.85V355.4C1126.85 384.275 1109.65 404.537 1079.8 404.537C1048.43 404.537 1034.26 382.248 1034.26 354.387V210.523H966.967V368.065C966.967 422.267 1001.37 466.338 1061.58 466.338C1087.89 466.338 1116.74 456.207 1130.4 432.905C1130.4 443.036 1131.41 454.687 1132.42 459.753Z" fill="#1F1F1F"/>
<path d="M1333.26 556V435.438C1345.4 452.154 1370.7 465.832 1405.11 465.832C1475.44 465.832 1522.49 410.109 1522.49 334.631C1522.49 260.673 1480.5 204.951 1407.64 204.951C1370.2 204.951 1342.37 221.667 1331.24 240.917V210.523H1265.97V556H1333.26ZM1456.21 335.138C1456.21 379.716 1428.89 405.55 1394.48 405.55C1360.08 405.55 1332.25 379.209 1332.25 335.138C1332.25 291.067 1360.08 265.232 1394.48 265.232C1428.89 265.232 1456.21 291.067 1456.21 335.138Z" fill="#1F1F1F"/>
<path d="M1560.6 391.873C1560.6 430.879 1592.98 466.845 1646.11 466.845C1683.04 466.845 1706.82 449.621 1719.47 429.865C1719.47 439.49 1720.48 453.167 1722 459.753H1783.73C1782.21 451.141 1780.7 433.411 1780.7 420.241V297.652C1780.7 247.502 1751.35 202.925 1672.42 202.925C1605.63 202.925 1569.7 245.982 1565.66 284.988L1625.36 297.652C1627.39 275.87 1643.58 257.127 1672.92 257.127C1701.26 257.127 1714.92 271.817 1714.92 289.547C1714.92 298.159 1710.37 305.251 1696.2 307.277L1634.98 316.395C1593.49 322.474 1560.6 347.295 1560.6 391.873ZM1660.27 416.695C1638.52 416.695 1627.89 402.511 1627.89 387.821C1627.89 368.571 1641.55 358.946 1658.76 356.414L1714.92 347.802V358.946C1714.92 403.018 1688.61 416.695 1660.27 416.695Z" fill="#1F1F1F"/>
<path d="M1913.8 459.753V429.359C1926.95 450.635 1953.26 465.832 1987.67 465.832C2058.51 465.832 2105.06 409.603 2105.06 334.125C2105.06 260.166 2063.06 203.938 1990.2 203.938C1953.26 203.938 1925.94 220.148 1914.81 237.877V93H1848.53V459.753H1913.8ZM2037.76 334.631C2037.76 380.222 2010.44 405.55 1976.03 405.55C1942.13 405.55 1913.8 379.716 1913.8 334.631C1913.8 289.04 1942.13 264.219 1976.03 264.219C2010.44 264.219 2037.76 289.04 2037.76 334.631Z" fill="#1F1F1F"/>
<path d="M2143.16 391.873C2143.16 430.879 2175.54 466.845 2228.67 466.845C2265.6 466.845 2289.39 449.621 2302.03 429.865C2302.03 439.49 2303.05 453.167 2304.56 459.753H2366.29C2364.78 451.141 2363.26 433.411 2363.26 420.241V297.652C2363.26 247.502 2333.91 202.925 2254.98 202.925C2188.19 202.925 2152.27 245.982 2148.22 284.988L2207.92 297.652C2209.95 275.87 2226.14 257.127 2255.48 257.127C2283.82 257.127 2297.48 271.817 2297.48 289.547C2297.48 298.159 2292.93 305.251 2278.76 307.277L2217.54 316.395C2176.05 322.474 2143.16 347.295 2143.16 391.873ZM2242.84 416.695C2221.08 416.695 2210.45 402.511 2210.45 387.821C2210.45 368.571 2224.11 358.946 2241.32 356.414L2297.48 347.802V358.946C2297.48 403.018 2271.17 416.695 2242.84 416.695Z" fill="#1F1F1F"/>
<path d="M2409.84 390.353C2412.87 418.721 2438.68 467.351 2513.56 467.351C2578.83 467.351 2610.2 425.813 2610.2 385.288C2610.2 348.815 2585.41 318.928 2536.33 308.796L2500.91 301.198C2487.25 298.665 2478.15 291.067 2478.15 278.909C2478.15 264.725 2492.31 254.088 2510.02 254.088C2538.36 254.088 2548.98 272.83 2551.01 287.521L2607.17 274.857C2604.13 248.009 2580.35 202.925 2509.52 202.925C2455.88 202.925 2416.42 239.904 2416.42 284.481C2416.42 319.434 2438.17 348.309 2486.24 358.946L2519.13 366.545C2538.36 370.597 2545.95 379.716 2545.95 390.86C2545.95 404.031 2535.32 415.682 2513.06 415.682C2483.71 415.682 2469.04 397.445 2467.52 377.689L2409.84 390.353Z" fill="#1F1F1F"/>
<path d="M2712.4 306.77C2713.92 283.975 2733.15 257.633 2768.06 257.633C2806.51 257.633 2822.71 281.949 2823.72 306.77H2712.4ZM2830.3 371.611C2822.2 393.899 2805 409.603 2773.63 409.603C2740.23 409.603 2712.4 385.794 2710.89 352.868H2888.99C2888.99 351.854 2890 341.723 2890 332.098C2890 252.061 2843.96 202.925 2767.05 202.925C2703.3 202.925 2644.6 254.594 2644.6 334.125C2644.6 418.214 2704.81 467.351 2773.12 467.351C2834.34 467.351 2873.81 431.385 2886.46 388.327L2830.3 371.611Z" fill="#1F1F1F"/>
<defs>
<linearGradient id="paint0_linear" x1="323.108" y1="402.321" x2="199.994" y2="620" gradientUnits="userSpaceOnUse">
<stop stop-color="#23915F"/>
<stop offset="1" stop-color="#3ECF8E" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB