Initial theme designed

This commit is contained in:
David
2021-03-16 01:33:19 +01:00
parent 6153f739d2
commit 13877b5e11
16 changed files with 1739 additions and 120 deletions

View File

@@ -0,0 +1,22 @@
import { FC } from "react";
import { IconButton, useColorMode } from "@chakra-ui/react";
import { SunIcon, MoonIcon } from "@chakra-ui/icons";
type Props = {
[key: string]: any
};
const ColorModeToggler: FC<Props> = (props) => {
const { colorMode, toggleColorMode } = useColorMode();
return (
<IconButton
aria-label="Toggle color mode"
icon={colorMode === "light" ? <MoonIcon /> : <SunIcon />}
colorScheme="lingva"
onClick={toggleColorMode}
{...props}
/>
);
};
export default ColorModeToggler;

22
components/Footer.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { FC } from "react";
import { Center, Text, useColorModeValue } from "@chakra-ui/react";
type Props = {
[key: string]: any
};
const Footer: FC<Props> = (props) => (
<Center
w="full"
p={3}
fontSize={["sm", null, "md"]}
bgColor={useColorModeValue("lingva.100", "lingva.900")}
{...props}
>
<Text as="span">&#169; 2021 TheDavidDelta</Text>
<Text as="span" mx={2}>·</Text>
<Text as="span">Licensed under AGPLv3</Text>
</Center>
);
export default Footer;

42
components/Header.tsx Normal file
View File

@@ -0,0 +1,42 @@
import { FC } from "react";
import { Flex, HStack, useColorModeValue, IconButton, Link } from "@chakra-ui/react";
import { FaGithub } from "react-icons/fa";
import Image from "next/image";
import ColorModeToggler from "./ColorModeToggler";
type Props = {
[key: string]: any
};
const Header: FC<Props> = (props) => (
<Flex
px={1}
py={3}
justify="space-around"
align="center"
bgColor={useColorModeValue("lingva.100", "lingva.900")}
w="full"
{...props}
>
<Image
src={useColorModeValue("/banner_light.svg", "/banner_dark.svg")}
alt="Logo"
layout="intrinsic"
width={110}
height={64}
/>
<HStack spacing={4}>
<ColorModeToggler/>
<IconButton
as={Link}
href="https://github.com/TheDavidDelta/lingva-translate"
isExternal={true}
aria-label="GitHub"
icon={<FaGithub />}
colorScheme="lingva"
/>
</HStack>
</Flex>
);
export default Header;

26
components/LangSelect.tsx Normal file
View File

@@ -0,0 +1,26 @@
import { FC, ChangeEvent } from "react";
import { Select } from "@chakra-ui/react";
type Props = {
value: string,
onChange: (e: ChangeEvent<any>) => void,
langs: [string, string][],
[key: string]: any
};
const LangSelect: FC<Props> = ({ value, onChange, langs, ...props }) => (
<Select
value={value}
onChange={onChange}
variant="flushed"
px={2}
textAlign="center"
{...props}
>
{langs.map(([code, name]) => (
<option value={code} key={code}>{name}</option>
))}
</Select>
);
export default LangSelect;

View File

@@ -1,15 +0,0 @@
import { FC } from "react";
type Props = {
langs: [string, string][]
};
const Languages: FC<Props> = ({ langs }) => (
<>
{langs.map(([code, name]) => (
<option value={code} key={code}>{name}</option>
))}
</>
);
export default Languages;

View File

@@ -0,0 +1,23 @@
import { FC, ChangeEvent } from "react";
import { Textarea, useBreakpointValue } from "@chakra-ui/react";
type Props = {
value: string,
onChange?: (e: ChangeEvent<HTMLTextAreaElement>) => void,
readOnly?: true
[key: string]: any
};
const TranslationArea: FC<Props> = ({ value, onChange, readOnly, ...props }) => (
<Textarea
value={value}
onChange={onChange}
readOnly={readOnly}
resize="none"
rows={useBreakpointValue([6, null, 12]) ?? undefined}
size="lg"
{...props}
/>
);
export default TranslationArea;

4
components/index.tsx Normal file
View File

@@ -0,0 +1,4 @@
export { default as Header } from "./Header";
export { default as Footer } from "./Footer";
export { default as LangSelect } from "./LangSelect";
export { default as TranslationArea } from "./TranslationArea";

View File

@@ -11,10 +11,16 @@
"cy": "cypress open" "cy": "cypress open"
}, },
"dependencies": { "dependencies": {
"@chakra-ui/icons": "^1.0.6",
"@chakra-ui/react": "^1.3.4",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"cheerio": "^1.0.0-rc.5", "cheerio": "^1.0.0-rc.5",
"framer-motion": "^3.10.3",
"next": "10.0.8", "next": "10.0.8",
"react": "17.0.1", "react": "17.0.1",
"react-dom": "17.0.1" "react-dom": "17.0.1",
"react-icons": "^4.2.0"
}, },
"devDependencies": { "devDependencies": {
"@testing-library/cypress": "^7.0.4", "@testing-library/cypress": "^7.0.4",

View File

@@ -3,8 +3,10 @@ import { GetStaticPaths, GetStaticProps, InferGetStaticPropsType } from "next";
import Head from "next/head"; import Head from "next/head";
import Router from "next/router"; import Router from "next/router";
import Error from "next/error"; import Error from "next/error";
import { Stack, VStack, HStack, IconButton } from "@chakra-ui/react";
import { FaExchangeAlt } from "react-icons/fa";
import { Header, Footer, LangSelect, TranslationArea } from "../components";
import { googleScrape, extractSlug } from "../utils/translate"; import { googleScrape, extractSlug } from "../utils/translate";
import Languages from "../components/Languages";
import { retrieveFiltered } from "../utils/language"; import { retrieveFiltered } from "../utils/language";
import langReducer, { Actions, initialState } from "../utils/reducer"; import langReducer, { Actions, initialState } from "../utils/reducer";
@@ -12,7 +14,7 @@ const Page: FC<InferGetStaticPropsType<typeof getStaticProps>> = ({ translation,
const [{ source, target, query }, dispatch] = useReducer(langReducer, initialState); const [{ source, target, query }, dispatch] = useReducer(langReducer, initialState);
const [delayedQuery, setDelayedQuery] = useState(initialState.query); const [delayedQuery, setDelayedQuery] = useState(initialState.query);
const handleChange = (e: ChangeEvent<HTMLInputElement | HTMLSelectElement>) => { const handleChange = (e: ChangeEvent<HTMLTextAreaElement | HTMLSelectElement>) => {
dispatch({ dispatch({
type: Actions.SET_FIELD, type: Actions.SET_FIELD,
payload: { payload: {
@@ -46,43 +48,55 @@ const Page: FC<InferGetStaticPropsType<typeof getStaticProps>> = ({ translation,
return statusCode ? ( return statusCode ? (
<Error statusCode={statusCode} /> <Error statusCode={statusCode} />
) : ( ) : (
<div> <>
<Head> <Head>
<title>Lingva Translate</title> <title>Lingva Translate</title>
<link rel="icon" href="/favicon.svg" /> <link rel="icon" href="/favicon.svg" />
</Head> </Head>
<div> <VStack minH="100vh" spacing={8}>
<button onClick={() => dispatch({ type: Actions.SWITCH_LANGS })} disabled={source === "auto"}> <Header />
Switch languages <VStack px={[8, null, 24, 40]} flexGrow={1} w="full">
</button> <HStack w="full">
</div> <LangSelect
<div> id="source"
<label htmlFor="source"> value={source}
Source: onChange={handleChange}
</label> langs={sourceLangs}
<select id="source" value={source} onChange={handleChange}> />
<Languages langs={sourceLangs} /> <IconButton
</select> aria-label="Switch languages"
</div> icon={<FaExchangeAlt />}
<div> colorScheme="lingva"
<label htmlFor="target"> variant="ghost"
Target: onClick={() => dispatch({ type: Actions.SWITCH_LANGS })}
</label> isDisabled={source === "auto"}
<select id="target" value={target} onChange={handleChange}> />
<Languages langs={targetLangs} /> <LangSelect
</select> id="target"
</div> value={target}
<div> onChange={handleChange}
<label htmlFor="query"> langs={targetLangs}
Query: />
</label> </HStack>
<input type="text" id="query" value={query} onChange={handleChange} /> <Stack direction={["column", null, "row"]} w="full">
</div> <TranslationArea
<div> id="query"
{translation} placeholder="Text"
</div> value={query}
</div> onChange={handleChange}
/>
<TranslationArea
id="translation"
placeholder="Translation"
value={translation}
readOnly={true}
/>
</Stack>
</VStack>
<Footer />
</VStack>
</>
); );
} }

12
pages/_app.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { AppProps } from "next/app";
import { FC } from "react";
import { ChakraProvider } from "@chakra-ui/react";
import theme from "../theme";
const App: FC<AppProps> = ({ Component, pageProps }) => (
<ChakraProvider theme={theme}>
<Component {...pageProps} />
</ChakraProvider>
);
export default App;

18
pages/_document.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { ColorModeScript } from "@chakra-ui/color-mode";
import Document, { Html, Head, Main, NextScript } from "next/document";
import theme from "../theme";
export default class MyDocument extends Document {
render() {
return (
<Html lang="en">
<Head />
<body>
<ColorModeScript initialColorMode={theme.config.initialColorMode} />
<Main />
<NextScript />
</body>
</Html>
);
};
}

221
public/banner_dark.svg Normal file
View File

@@ -0,0 +1,221 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="300mm"
height="175mm"
viewBox="0 0 300 175"
version="1.1"
id="svg8">
<defs
id="defs2">
<rect
x="37.809074"
y="24.487673"
width="311.23383"
height="89.950554"
id="rect860" />
<rect
x="368.31537"
y="131.06631"
width="184.14555"
height="65.486633"
id="rect895" />
<rect
x="123.41909"
y="103.06777"
width="263.68585"
height="176.88786"
id="rect861" />
<rect
x="-92.429436"
y="-19.136511"
width="72.370018"
height="109.22579"
id="rect1014" />
<rect
x="-24.02615"
y="29.845381"
width="66.966904"
height="235.78503"
id="rect967" />
<rect
x="109.98237"
y="71.427589"
width="37.616222"
height="35.61797"
id="rect880" />
<rect
x="38.092335"
y="131.59943"
width="8.2558794"
height="28.893293"
id="rect837" />
<rect
x="368.31537"
y="131.06631"
width="184.14555"
height="65.486633"
id="rect895-8" />
<rect
x="368.31537"
y="131.06631"
width="184.14555"
height="65.486633"
id="rect905" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="424.98156"
inkscape:cy="470.75179"
inkscape:document-units="mm"
inkscape:current-layer="g1046"
inkscape:document-rotation="0"
showgrid="false"
inkscape:pagecheckerboard="false"
showborder="true"
borderlayer="false"
inkscape:showpageshadow="true"
inkscape:window-width="1848"
inkscape:window-height="1016"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1">
<text
xml:space="preserve"
id="text878"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect880);fill:#000000;fill-opacity:1;stroke:none;" />
<g
id="g998">
<g
id="g982">
<g
id="g1046"
transform="matrix(1.3340125,0,0,1.3180561,-28.946798,-23.266825)">
<g
id="g894"
transform="matrix(1.1406677,0,0,1.1406677,-17.069398,-11.385902)"
style="fill:#92d1ab;fill-opacity:1">
<g
aria-label="Lingva"
id="text858"
style="font-style:normal;font-weight:normal;font-size:68.1074px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect860);fill:#92d1ab;fill-opacity:1;stroke:none">
<path
d="m 47.219919,43.111398 q 2.560678,0 4.090435,1.429989 1.529756,1.42999 1.4965,3.52509 l -0.565345,28.865832 14.299894,-0.631856 q 1.563011,-0.09977 2.726956,1.130689 1.163945,1.197201 1.130689,2.760212 v 0.06651 q 0,2.194868 -1.097433,3.358812 -1.13069,1.13069 -2.760212,1.13069 H 47.419452 q -1.928823,0 -3.292301,-1.330223 -1.330222,-1.330223 -1.330222,-3.292301 V 48.066477 q 0,-1.995333 1.429989,-3.458578 1.429989,-1.496501 2.893234,-1.496501 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#92d1ab;fill-opacity:1"
id="path873" />
<path
d="m 79.112007,84.980156 c -1.374563,0 -2.549593,-0.476663 -3.52509,-1.42999 -0.953326,-0.975497 -1.429989,-2.150527 -1.429989,-3.52509 V 60.404292 c 0,-1.374563 0.487748,-2.549593 1.463245,-3.52509 0.997667,-0.975496 2.161611,-1.463244 3.491834,-1.463244 h 0.06651 c 1.330223,0 2.483082,0.487748 3.458579,1.463244 0.975497,0.975497 1.463245,2.150527 1.463245,3.52509 v 19.620784 c 0,1.374563 -0.487748,2.549593 -1.463245,3.52509 -0.975497,0.975497 -2.128356,1.45216 -3.458579,1.42999 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#92d1ab;fill-opacity:1"
id="path875"
sodipodi:nodetypes="scsscsssssscs" />
<path
d="m 119.48426,69.283529 q 0,0 0.0665,12.038514 0,1.895568 -1.39673,3.292301 -0.96441,0.931156 -3.35881,0.897901 h -0.0333 q -2.36114,0 -3.2923,-0.897901 -1.39673,-1.330222 -1.39673,-3.292301 V 68.718184 q 0,-4.755546 -2.89324,-6.185535 -2.92649,-1.42999 -6.2853,0.5986 -3.358811,2.028589 -3.192533,4.057179 v 14.133615 q 0,1.962079 -1.330222,3.292301 -0.931156,0.931156 -3.292301,0.897901 0,0 -0.166278,0 -2.361145,0 -3.292301,-0.897901 -1.396734,-1.396733 -1.396734,-3.292301 V 57.677336 q 0,-1.296967 0.964411,-2.194867 0.964412,-0.897901 2.128357,-0.897901 h 3.458578 q 1.296968,0 2.161612,0.964412 0.864645,0.931156 0.864645,2.061845 v 0.06651 q 4.788806,-2.826723 7.116696,-3.22579 7.98133,-1.363478 12.23804,4.12369 2.29464,3.026257 2.32789,10.708293 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#92d1ab;fill-opacity:1"
id="path877" />
<path
d="m 145.35709,74.537908 q 0,0 0,-10.907826 -0.66511,-1.928822 -3.52509,-3.026256 -2.85998,-1.097434 -5.88623,0.399067 -1.46325,0.731622 -2.32789,2.593934 -0.86465,1.862311 -0.83139,4.156946 v 3.624856 q 0,3.392068 1.82905,5.85298 1.89557,2.427656 4.48951,2.427656 1.46324,0.232789 3.02625,-0.266044 3.15928,-1.097434 3.22579,-4.855313 z m 1.62952,-20.019851 h 3.89091 q 1.62952,0 2.82672,1.197201 1.1972,1.1972 1.23045,2.859978 v 24.609119 h -0.0665 q -0.0998,6.983669 -4.45624,10.542014 -4.35648,3.591602 -10.77481,3.192535 -0.43232,-0.03326 -2.06184,-0.03326 -1.62952,0.03326 -5.52042,0 -1.82906,0 -2.89324,-1.529756 -1.06418,-1.529756 -0.46558,-3.22579 l 0.0665,-0.03325 q 0.86465,-2.427657 3.39207,-2.394401 3.45858,0.06651 7.41599,0.06651 5.95275,0 5.71996,-6.850646 -3.2923,1.928822 -7.05018,1.962078 -6.05251,0 -10.30922,-4.489501 -4.25672,-4.489502 -4.25672,-10.874571 0,-6.385068 4.25672,-10.87457 4.25671,-4.489501 10.30922,-4.489501 3.75788,0 7.11669,1.962078 0.0333,-0.631855 0.49884,-1.097433 0.46557,-0.498834 1.13068,-0.498834 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#92d1ab;fill-opacity:1"
id="path879" />
<path
d="m 182.57007,54.584568 q 0,0 0.13303,0 2.42765,0 3.82439,1.962079 1.36347,1.895567 0.53208,4.223457 l -6.55134,18.756139 q -0.83139,2.427656 -2.993,3.957412 -2.16161,1.529756 -4.75555,1.496501 h -0.13302 q -2.66045,0 -4.7888,-1.596268 -2.12836,-1.629522 -2.85998,-3.990667 l -5.88624,-18.623117 q -0.73162,-2.361146 0.5986,-4.223457 1.33023,-1.928823 3.75788,-1.962079 h 0.5986 q 1.46325,0 2.79347,0.931156 1.33022,0.964412 1.69603,2.361145 3.19254,11.805726 4.38974,18.024517 h 0.19953 q 1.13069,-5.354146 5.02159,-18.024517 0.43233,-1.429989 1.69604,-2.361145 1.33022,-0.931156 2.72695,-0.931156 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#92d1ab;fill-opacity:1"
id="path881" />
<path
d="m 200.16227,69.017484 q 0,0 0,2.194867 0,3.458579 1.82906,5.886236 1.82905,2.427656 4.42299,2.361145 1.52975,0.166278 3.09277,-0.2993 3.15927,-1.097434 3.15927,-4.788802 0,0 0,-11.240381 -0.5986,-1.895567 -3.45858,-2.959746 -2.85997,-1.097433 -5.95274,0.365812 -3.09277,1.429989 -3.09277,8.480169 z m -4.85531,11.47317 q -4.25671,-4.489501 -4.25671,-10.841314 0,-6.385069 4.25671,-10.87457 4.25671,-4.489502 10.30922,-4.489502 5.08811,0 7.05018,4.489502 0,-1.463245 1.09744,-2.560679 0.96441,-0.964411 2.42765,-0.964411 h 2.56068 q 1.46325,0 2.49417,0.964411 1.03092,1.097434 1.03092,2.560679 v 24.276563 q 0,0.864645 -0.5986,1.396734 -0.56534,0.532089 -1.36348,0.532089 h -3.99066 q -0.86465,0 -1.99534,-1.197201 -1.13069,-1.1972 -2.02859,-1.330222 -0.8979,-0.133023 -1.69603,0.399066 -3.2923,2.128357 -4.98834,2.128357 -6.05251,0 -10.30922,-4.489502 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#92d1ab;fill-opacity:1"
id="path883" />
</g>
<path
sodipodi:type="star"
style="fill:#92d1ab;fill-opacity:1;stroke-width:0.396874"
id="path901-4"
sodipodi:sides="5"
sodipodi:cx="62.212276"
sodipodi:cy="21.296686"
sodipodi:r1="13.796687"
sodipodi:r2="6.0469499"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
inkscape:transform-center-y="-0.80382891"
transform="matrix(0.88787695,-0.00301931,0.00309921,0.93356903,23.631841,23.631817)"
inkscape:transform-center-x="0.014935358"
d="m 62.212277,7.499999 3.554307,8.904602 9.567122,0.628675 -7.370438,6.13202 2.358497,9.293145 -8.109489,-5.114805 -8.109489,5.114804 2.358498,-9.293144 -7.370438,-6.132021 9.567121,-0.628674 z" />
</g>
<g
aria-label="Translate"
transform="matrix(1.1060457,0,0,1.1060446,-369.41697,-53.843221)"
id="text893"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;line-height:1.25;font-family:'Noto Color Emoji';-inkscape-font-specification:'Noto Color Emoji';white-space:pre;shape-inside:url(#rect895-8);fill:#00a659;fill-opacity:1;stroke:none">
<path
d="m 387.96184,172.25915 h -13.54832 v -1.72264 l 3.95742,-0.60525 q 0.46558,-0.0466 0.69836,-0.27935 0.23279,-0.27935 0.23279,-0.74492 v -21.1838 h -2.00198 q -1.11739,0 -2.04854,0.0931 -0.93116,0.0931 -1.39674,0.27935 -0.41902,0.13967 -0.65181,0.37246 -0.23279,0.23279 -0.27934,0.65181 l -1.11739,4.7489 h -2.04855 q -0.13967,-2.14166 -0.0931,-4.09709 0.0931,-1.95543 0.27935,-3.95741 h 22.48741 q 0.23279,2.00198 0.23279,3.95741 0.0466,1.95543 -0.13967,4.09709 h -2.00199 l -1.11738,-4.7489 q -0.0466,-0.41902 -0.27935,-0.65181 -0.23279,-0.23279 -0.55869,-0.37246 -0.51214,-0.18623 -1.39674,-0.27935 -0.8846,-0.0931 -2.04854,-0.0931 h -2.04854 v 21.1838 q 0,0.46557 0.23278,0.74492 0.23279,0.23279 0.69837,0.27935 l 3.95741,0.60525 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path934" />
<path
d="m 406.63146,170.58307 v 1.67608 h -10.98764 v -1.72264 l 2.04854,-0.32591 q 0.46558,-0.0465 0.69837,-0.3259 0.23279,-0.27935 0.23279,-0.74493 v -12.52404 q 0,-0.46558 -0.23279,-0.74493 -0.18623,-0.3259 -0.69837,-0.37246 l -2.32789,-0.32591 v -1.67608 q 1.35018,-0.41902 2.88659,-0.65181 1.58296,-0.23278 2.93314,-0.27934 l 0.55869,0.55869 0.37246,3.11937 q 1.07083,-1.44329 2.79347,-2.60723 1.7692,-1.16395 3.63151,-1.16395 0.46558,0 1.16395,0.13968 0.69836,0.13967 1.16394,0.3259 0.0931,1.44329 -0.0466,3.25905 -0.0931,1.76919 -0.41902,3.21248 H 408.68 l -0.51213,-2.60723 q -0.13968,-0.5587 -0.41902,-0.79148 -0.23279,-0.23279 -0.74493,-0.23279 -1.16394,0 -2.421,0.51213 -1.25706,0.51214 -2.32789,1.58297 v 11.26698 q 0,0.46558 0.23279,0.74493 0.27934,0.27935 0.74492,0.3259 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path936" />
<path
d="m 419.99345,170.25716 q 1.2105,0 2.46756,-0.41902 1.25706,-0.46558 2.14166,-1.2105 v -4.56267 l -3.25905,0.32591 q -2.04854,0.13967 -3.16593,0.93116 -1.07082,0.74492 -1.07082,2.32789 0,1.2105 0.69836,1.90887 0.74493,0.69836 2.18822,0.69836 z m 7.82171,2.28133 q -1.2105,0 -2.00199,-0.60525 -0.79148,-0.65181 -1.07083,-1.81575 -1.07082,1.16394 -2.70035,1.86231 -1.58296,0.65181 -3.35216,0.65181 -2.32789,0 -3.91085,-1.16395 -1.53641,-1.2105 -1.53641,-3.49183 0,-1.48985 0.65181,-2.46756 0.69836,-0.97772 1.76919,-1.58297 1.07083,-0.60525 2.42101,-0.8846 1.35018,-0.3259 2.65379,-0.41902 l 3.8643,-0.3259 v -2.28133 q 0,-2.6538 -1.07083,-3.67807 -1.02427,-1.07083 -3.16593,-1.07083 -1.58296,0 -3.02626,0.51214 -1.44329,0.51213 -2.65379,1.67608 l -0.8846,-0.83804 q 0.69837,-2.00199 2.79347,-3.02626 2.14166,-1.02427 4.79545,-1.02427 3.35216,0 5.02825,1.72264 1.72263,1.72264 1.72263,5.21447 v 9.54435 q 0,0.55869 0.23279,0.83804 0.27935,0.23279 0.79149,0.27935 l 1.90887,0.18623 v 1.58296 q -0.46558,0.13968 -1.48985,0.37247 -0.97772,0.23278 -1.7692,0.23278 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path938" />
<path
d="m 443.13264,170.53651 v 1.72264 h -9.40468 v -1.72264 l 2.04854,-0.32591 q 0.46558,-0.0465 0.69837,-0.3259 0.23279,-0.27935 0.23279,-0.74493 v -12.61716 q 0,-0.41902 -0.23279,-0.69837 -0.18623,-0.27934 -0.65181,-0.3259 l -2.37445,-0.32591 v -1.67608 q 1.39674,-0.41902 2.9797,-0.65181 1.58297,-0.23278 2.88659,-0.27934 l 0.65181,0.60525 0.23278,2.0951 q 1.4433,-1.48985 3.16594,-2.0951 1.72263,-0.60525 3.58495,-0.60525 3.35216,0 4.56266,1.95543 1.2105,1.95542 1.2105,5.44726 v 9.17188 q 0,0.46558 0.23279,0.74493 0.27935,0.27935 0.69837,0.3259 l 2.0951,0.32591 v 1.72264 h -9.40468 v -1.72264 l 1.86232,-0.32591 q 0.41902,-0.0931 0.65181,-0.3259 0.27934,-0.23279 0.27934,-0.74493 v -8.52007 q 0,-2.79347 -0.79148,-4.14365 -0.74492,-1.39673 -2.93314,-1.39673 -1.39674,0 -2.70035,0.41902 -1.25706,0.41902 -2.37445,1.25706 v 12.38437 q 0,0.46558 0.23279,0.74493 0.23279,0.23279 0.65181,0.3259 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path940" />
<path
d="m 458.86914,171.23488 q -0.18623,-1.39674 -0.13967,-2.70036 0.0466,-1.35017 0.18623,-2.51412 h 1.95543 l 0.69836,2.56068 q 0.13968,0.55869 0.27935,0.8846 0.18623,0.27935 0.51214,0.51214 0.46557,0.27934 1.39673,0.60525 0.93116,0.3259 2.14166,0.3259 1.76919,0 2.65379,-0.79148 0.93116,-0.83804 0.93116,-2.18822 0,-1.62952 -1.35018,-2.421 -1.35017,-0.79149 -3.8643,-1.81576 -2.28133,-0.93115 -3.77118,-2.0951 -1.44329,-1.2105 -1.44329,-3.53839 0,-2.74691 2.00199,-4.14365 2.00198,-1.44329 5.16791,-1.44329 1.48985,0 3.07282,0.32591 1.58296,0.3259 2.65379,0.79148 0.0466,1.2105 -0.0466,2.46756 -0.0931,1.25706 -0.3259,2.51412 h -1.81575 l -0.5587,-2.37444 q -0.0931,-0.46558 -0.27935,-0.74493 -0.18623,-0.3259 -0.6518,-0.60525 -0.37247,-0.18623 -0.97772,-0.37246 -0.60525,-0.18623 -1.39673,-0.23279 -1.48985,-0.0466 -2.46757,0.65181 -0.97771,0.69837 -0.97771,2.14166 0,1.72264 1.35018,2.46756 1.39673,0.69837 3.07281,1.35018 1.16395,0.46557 2.23478,0.97771 1.11738,0.51214 1.95542,1.2105 0.8846,0.69837 1.39674,1.67608 0.51213,0.97772 0.51213,2.28134 0,2.70035 -2.0951,4.1902 -2.0951,1.48985 -5.44726,1.48985 -2.00199,0 -3.72462,-0.46558 -1.72264,-0.51214 -2.84003,-0.97771 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path942" />
<path
d="m 482.70673,142.36904 v 26.77073 q 0,0.46558 0.23279,0.74493 0.23278,0.27935 0.6518,0.3259 l 2.46757,0.37247 v 1.67608 H 475.6765 v -1.72264 l 2.46756,-0.32591 q 0.46558,-0.0465 0.69837,-0.27934 0.23279,-0.27935 0.23279,-0.74493 V 145.7212 q 0,-0.46558 -0.23279,-0.69837 -0.23279,-0.27934 -0.69837,-0.3259 l -2.56068,-0.37246 v -1.53641 q 1.4433,-0.46558 3.25905,-0.69837 1.86231,-0.23279 3.3056,-0.27934 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path944" />
<path
d="m 495.32388,170.25716 q 1.2105,0 2.46756,-0.41902 1.25706,-0.46558 2.14166,-1.2105 v -4.56267 l -3.25905,0.32591 q -2.04854,0.13967 -3.16593,0.93116 -1.07083,0.74492 -1.07083,2.32789 0,1.2105 0.69837,1.90887 0.74493,0.69836 2.18822,0.69836 z m 7.82171,2.28133 q -1.2105,0 -2.00199,-0.60525 -0.79148,-0.65181 -1.07083,-1.81575 -1.07083,1.16394 -2.70035,1.86231 -1.58296,0.65181 -3.35216,0.65181 -2.32789,0 -3.91086,-1.16395 -1.5364,-1.2105 -1.5364,-3.49183 0,-1.48985 0.65181,-2.46756 0.69836,-0.97772 1.76919,-1.58297 1.07083,-0.60525 2.42101,-0.8846 1.35017,-0.3259 2.65379,-0.41902 l 3.8643,-0.3259 v -2.28133 q 0,-2.6538 -1.07083,-3.67807 -1.02427,-1.07083 -3.16593,-1.07083 -1.58296,0 -3.02626,0.51214 -1.44329,0.51213 -2.65379,1.67608 l -0.8846,-0.83804 q 0.69837,-2.00199 2.79347,-3.02626 2.14166,-1.02427 4.79545,-1.02427 3.35216,0 5.02824,1.72264 1.72264,1.72264 1.72264,5.21447 v 9.54435 q 0,0.55869 0.23279,0.83804 0.27935,0.23279 0.79148,0.27935 l 1.90887,0.18623 v 1.58296 q -0.46557,0.13968 -1.48985,0.37247 -0.97771,0.23278 -1.76919,0.23278 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path946" />
<path
d="m 511.38628,167.46369 v -12.01191 l -2.93314,-0.37246 v -1.58297 l 2.14166,-0.3259 q 0.46558,-0.0466 0.69836,-0.27935 0.27935,-0.23279 0.32591,-0.65181 l 1.25706,-4.98168 h 2.0951 l 0.0466,5.77317 h 6.33186 v 2.28133 h -6.2853 v 10.94108 q 0,2.23478 0.69836,2.9797 0.74493,0.69837 2.04855,0.69837 1.07083,0 1.95542,-0.37246 0.93116,-0.37247 1.58297,-1.11739 l 1.02427,0.97771 q -0.74492,1.58297 -2.32789,2.42101 -1.58296,0.79148 -3.49183,0.79148 -2.09511,0 -3.63151,-1.07083 -1.53641,-1.07083 -1.53641,-4.09709 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path948" />
<path
d="m 533.31492,154.38095 q -1.81576,0 -3.02626,1.30362 -1.2105,1.25706 -1.53641,4.05053 h 8.47352 q 0.0466,-0.23279 0.0466,-0.41902 0.0466,-0.18623 0.0466,-0.41902 0,-2.00199 -1.07083,-3.25905 -1.02427,-1.25706 -2.93314,-1.25706 z m 7.4958,13.688 q -0.60525,2.04854 -2.60723,3.3056 -1.95543,1.25706 -4.88857,1.25706 -4.32988,0 -6.42498,-2.74691 -2.0951,-2.79347 -2.0951,-7.07679 0,-4.84201 2.46756,-7.58892 2.46757,-2.74691 6.56465,-2.74691 3.11938,0 5.0748,1.72264 2.00199,1.67608 2.00199,4.93513 0,0.46558 -0.0466,1.16394 -0.0466,0.65181 -0.13967,1.21051 h -12.10503 q 0,0.0931 0,0.23278 0,0.13968 0,0.27935 0,4.56267 1.62952,6.33186 1.62953,1.7692 4.09709,1.7692 1.62952,0 3.02626,-0.69837 1.44329,-0.74492 2.28133,-2.04854 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#00a659;fill-opacity:1"
id="path950" />
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

221
public/banner_light.svg Normal file
View File

@@ -0,0 +1,221 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="300mm"
height="175mm"
viewBox="0 0 300 175"
version="1.1"
id="svg8">
<defs
id="defs2">
<rect
x="37.809074"
y="24.487673"
width="311.23383"
height="89.950554"
id="rect860" />
<rect
x="368.31537"
y="131.06631"
width="184.14555"
height="65.486633"
id="rect895" />
<rect
x="123.41909"
y="103.06777"
width="263.68585"
height="176.88786"
id="rect861" />
<rect
x="-92.429436"
y="-19.136511"
width="72.370018"
height="109.22579"
id="rect1014" />
<rect
x="-24.02615"
y="29.845381"
width="66.966904"
height="235.78503"
id="rect967" />
<rect
x="109.98237"
y="71.427589"
width="37.616222"
height="35.61797"
id="rect880" />
<rect
x="38.092335"
y="131.59943"
width="8.2558794"
height="28.893293"
id="rect837" />
<rect
x="368.31537"
y="131.06631"
width="184.14555"
height="65.486633"
id="rect895-8" />
<rect
x="368.31537"
y="131.06631"
width="184.14555"
height="65.486633"
id="rect905" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="424.98156"
inkscape:cy="470.75179"
inkscape:document-units="mm"
inkscape:current-layer="g1046"
inkscape:document-rotation="0"
showgrid="false"
inkscape:pagecheckerboard="false"
showborder="true"
borderlayer="false"
inkscape:showpageshadow="true"
inkscape:window-width="1848"
inkscape:window-height="1016"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1">
<text
xml:space="preserve"
id="text878"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect880);fill:#000000;fill-opacity:1;stroke:none;" />
<g
id="g998">
<g
id="g982">
<g
id="g1046"
transform="matrix(1.3340125,0,0,1.3180561,-28.946798,-23.266825)">
<g
id="g894"
transform="matrix(1.1406677,0,0,1.1406677,-17.069398,-11.385902)"
style="fill:#00a659;fill-opacity:1">
<g
aria-label="Lingva"
id="text858"
style="font-style:normal;font-weight:normal;font-size:68.1074px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect860);fill:#00a659;fill-opacity:1;stroke:none">
<path
d="m 47.219919,43.111398 q 2.560678,0 4.090435,1.429989 1.529756,1.42999 1.4965,3.52509 l -0.565345,28.865832 14.299894,-0.631856 q 1.563011,-0.09977 2.726956,1.130689 1.163945,1.197201 1.130689,2.760212 v 0.06651 q 0,2.194868 -1.097433,3.358812 -1.13069,1.13069 -2.760212,1.13069 H 47.419452 q -1.928823,0 -3.292301,-1.330223 -1.330222,-1.330223 -1.330222,-3.292301 V 48.066477 q 0,-1.995333 1.429989,-3.458578 1.429989,-1.496501 2.893234,-1.496501 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#00a659;fill-opacity:1"
id="path873" />
<path
d="m 79.112007,84.980156 c -1.374563,0 -2.549593,-0.476663 -3.52509,-1.42999 -0.953326,-0.975497 -1.429989,-2.150527 -1.429989,-3.52509 V 60.404292 c 0,-1.374563 0.487748,-2.549593 1.463245,-3.52509 0.997667,-0.975496 2.161611,-1.463244 3.491834,-1.463244 h 0.06651 c 1.330223,0 2.483082,0.487748 3.458579,1.463244 0.975497,0.975497 1.463245,2.150527 1.463245,3.52509 v 19.620784 c 0,1.374563 -0.487748,2.549593 -1.463245,3.52509 -0.975497,0.975497 -2.128356,1.45216 -3.458579,1.42999 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#00a659;fill-opacity:1"
id="path875"
sodipodi:nodetypes="scsscsssssscs" />
<path
d="m 119.48426,69.283529 q 0,0 0.0665,12.038514 0,1.895568 -1.39673,3.292301 -0.96441,0.931156 -3.35881,0.897901 h -0.0333 q -2.36114,0 -3.2923,-0.897901 -1.39673,-1.330222 -1.39673,-3.292301 V 68.718184 q 0,-4.755546 -2.89324,-6.185535 -2.92649,-1.42999 -6.2853,0.5986 -3.358811,2.028589 -3.192533,4.057179 v 14.133615 q 0,1.962079 -1.330222,3.292301 -0.931156,0.931156 -3.292301,0.897901 0,0 -0.166278,0 -2.361145,0 -3.292301,-0.897901 -1.396734,-1.396733 -1.396734,-3.292301 V 57.677336 q 0,-1.296967 0.964411,-2.194867 0.964412,-0.897901 2.128357,-0.897901 h 3.458578 q 1.296968,0 2.161612,0.964412 0.864645,0.931156 0.864645,2.061845 v 0.06651 q 4.788806,-2.826723 7.116696,-3.22579 7.98133,-1.363478 12.23804,4.12369 2.29464,3.026257 2.32789,10.708293 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#00a659;fill-opacity:1"
id="path877" />
<path
d="m 145.35709,74.537908 q 0,0 0,-10.907826 -0.66511,-1.928822 -3.52509,-3.026256 -2.85998,-1.097434 -5.88623,0.399067 -1.46325,0.731622 -2.32789,2.593934 -0.86465,1.862311 -0.83139,4.156946 v 3.624856 q 0,3.392068 1.82905,5.85298 1.89557,2.427656 4.48951,2.427656 1.46324,0.232789 3.02625,-0.266044 3.15928,-1.097434 3.22579,-4.855313 z m 1.62952,-20.019851 h 3.89091 q 1.62952,0 2.82672,1.197201 1.1972,1.1972 1.23045,2.859978 v 24.609119 h -0.0665 q -0.0998,6.983669 -4.45624,10.542014 -4.35648,3.591602 -10.77481,3.192535 -0.43232,-0.03326 -2.06184,-0.03326 -1.62952,0.03326 -5.52042,0 -1.82906,0 -2.89324,-1.529756 -1.06418,-1.529756 -0.46558,-3.22579 l 0.0665,-0.03325 q 0.86465,-2.427657 3.39207,-2.394401 3.45858,0.06651 7.41599,0.06651 5.95275,0 5.71996,-6.850646 -3.2923,1.928822 -7.05018,1.962078 -6.05251,0 -10.30922,-4.489501 -4.25672,-4.489502 -4.25672,-10.874571 0,-6.385068 4.25672,-10.87457 4.25671,-4.489501 10.30922,-4.489501 3.75788,0 7.11669,1.962078 0.0333,-0.631855 0.49884,-1.097433 0.46557,-0.498834 1.13068,-0.498834 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#00a659;fill-opacity:1"
id="path879" />
<path
d="m 182.57007,54.584568 q 0,0 0.13303,0 2.42765,0 3.82439,1.962079 1.36347,1.895567 0.53208,4.223457 l -6.55134,18.756139 q -0.83139,2.427656 -2.993,3.957412 -2.16161,1.529756 -4.75555,1.496501 h -0.13302 q -2.66045,0 -4.7888,-1.596268 -2.12836,-1.629522 -2.85998,-3.990667 l -5.88624,-18.623117 q -0.73162,-2.361146 0.5986,-4.223457 1.33023,-1.928823 3.75788,-1.962079 h 0.5986 q 1.46325,0 2.79347,0.931156 1.33022,0.964412 1.69603,2.361145 3.19254,11.805726 4.38974,18.024517 h 0.19953 q 1.13069,-5.354146 5.02159,-18.024517 0.43233,-1.429989 1.69604,-2.361145 1.33022,-0.931156 2.72695,-0.931156 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#00a659;fill-opacity:1"
id="path881" />
<path
d="m 200.16227,69.017484 q 0,0 0,2.194867 0,3.458579 1.82906,5.886236 1.82905,2.427656 4.42299,2.361145 1.52975,0.166278 3.09277,-0.2993 3.15927,-1.097434 3.15927,-4.788802 0,0 0,-11.240381 -0.5986,-1.895567 -3.45858,-2.959746 -2.85997,-1.097433 -5.95274,0.365812 -3.09277,1.429989 -3.09277,8.480169 z m -4.85531,11.47317 q -4.25671,-4.489501 -4.25671,-10.841314 0,-6.385069 4.25671,-10.87457 4.25671,-4.489502 10.30922,-4.489502 5.08811,0 7.05018,4.489502 0,-1.463245 1.09744,-2.560679 0.96441,-0.964411 2.42765,-0.964411 h 2.56068 q 1.46325,0 2.49417,0.964411 1.03092,1.097434 1.03092,2.560679 v 24.276563 q 0,0.864645 -0.5986,1.396734 -0.56534,0.532089 -1.36348,0.532089 h -3.99066 q -0.86465,0 -1.99534,-1.197201 -1.13069,-1.1972 -2.02859,-1.330222 -0.8979,-0.133023 -1.69603,0.399066 -3.2923,2.128357 -4.98834,2.128357 -6.05251,0 -10.30922,-4.489502 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:68.1074px;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;fill:#00a659;fill-opacity:1"
id="path883" />
</g>
<path
sodipodi:type="star"
style="fill:#00a659;fill-opacity:1;stroke-width:0.396874"
id="path901-4"
sodipodi:sides="5"
sodipodi:cx="62.212276"
sodipodi:cy="21.296686"
sodipodi:r1="13.796687"
sodipodi:r2="6.0469499"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
inkscape:transform-center-y="-0.80382891"
transform="matrix(0.88787695,-0.00301931,0.00309921,0.93356903,23.631841,23.631817)"
inkscape:transform-center-x="0.014935358"
d="m 62.212277,7.499999 3.554307,8.904602 9.567122,0.628675 -7.370438,6.13202 2.358497,9.293145 -8.109489,-5.114805 -8.109489,5.114804 2.358498,-9.293144 -7.370438,-6.132021 9.567121,-0.628674 z" />
</g>
<g
aria-label="Translate"
transform="matrix(1.1060457,0,0,1.1060446,-369.41697,-53.843221)"
id="text893"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;line-height:1.25;font-family:'Noto Color Emoji';-inkscape-font-specification:'Noto Color Emoji';white-space:pre;shape-inside:url(#rect895-8);fill:#007439;fill-opacity:1;stroke:none">
<path
d="m 387.96184,172.25915 h -13.54832 v -1.72264 l 3.95742,-0.60525 q 0.46558,-0.0466 0.69836,-0.27935 0.23279,-0.27935 0.23279,-0.74492 v -21.1838 h -2.00198 q -1.11739,0 -2.04854,0.0931 -0.93116,0.0931 -1.39674,0.27935 -0.41902,0.13967 -0.65181,0.37246 -0.23279,0.23279 -0.27934,0.65181 l -1.11739,4.7489 h -2.04855 q -0.13967,-2.14166 -0.0931,-4.09709 0.0931,-1.95543 0.27935,-3.95741 h 22.48741 q 0.23279,2.00198 0.23279,3.95741 0.0466,1.95543 -0.13967,4.09709 h -2.00199 l -1.11738,-4.7489 q -0.0466,-0.41902 -0.27935,-0.65181 -0.23279,-0.23279 -0.55869,-0.37246 -0.51214,-0.18623 -1.39674,-0.27935 -0.8846,-0.0931 -2.04854,-0.0931 h -2.04854 v 21.1838 q 0,0.46557 0.23278,0.74492 0.23279,0.23279 0.69837,0.27935 l 3.95741,0.60525 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path857" />
<path
d="m 406.63146,170.58307 v 1.67608 h -10.98764 v -1.72264 l 2.04854,-0.32591 q 0.46558,-0.0465 0.69837,-0.3259 0.23279,-0.27935 0.23279,-0.74493 v -12.52404 q 0,-0.46558 -0.23279,-0.74493 -0.18623,-0.3259 -0.69837,-0.37246 l -2.32789,-0.32591 v -1.67608 q 1.35018,-0.41902 2.88659,-0.65181 1.58296,-0.23278 2.93314,-0.27934 l 0.55869,0.55869 0.37246,3.11937 q 1.07083,-1.44329 2.79347,-2.60723 1.7692,-1.16395 3.63151,-1.16395 0.46558,0 1.16395,0.13968 0.69836,0.13967 1.16394,0.3259 0.0931,1.44329 -0.0466,3.25905 -0.0931,1.76919 -0.41902,3.21248 H 408.68 l -0.51213,-2.60723 q -0.13968,-0.5587 -0.41902,-0.79148 -0.23279,-0.23279 -0.74493,-0.23279 -1.16394,0 -2.421,0.51213 -1.25706,0.51214 -2.32789,1.58297 v 11.26698 q 0,0.46558 0.23279,0.74493 0.27934,0.27935 0.74492,0.3259 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path859" />
<path
d="m 419.99345,170.25716 q 1.2105,0 2.46756,-0.41902 1.25706,-0.46558 2.14166,-1.2105 v -4.56267 l -3.25905,0.32591 q -2.04854,0.13967 -3.16593,0.93116 -1.07082,0.74492 -1.07082,2.32789 0,1.2105 0.69836,1.90887 0.74493,0.69836 2.18822,0.69836 z m 7.82171,2.28133 q -1.2105,0 -2.00199,-0.60525 -0.79148,-0.65181 -1.07083,-1.81575 -1.07082,1.16394 -2.70035,1.86231 -1.58296,0.65181 -3.35216,0.65181 -2.32789,0 -3.91085,-1.16395 -1.53641,-1.2105 -1.53641,-3.49183 0,-1.48985 0.65181,-2.46756 0.69836,-0.97772 1.76919,-1.58297 1.07083,-0.60525 2.42101,-0.8846 1.35018,-0.3259 2.65379,-0.41902 l 3.8643,-0.3259 v -2.28133 q 0,-2.6538 -1.07083,-3.67807 -1.02427,-1.07083 -3.16593,-1.07083 -1.58296,0 -3.02626,0.51214 -1.44329,0.51213 -2.65379,1.67608 l -0.8846,-0.83804 q 0.69837,-2.00199 2.79347,-3.02626 2.14166,-1.02427 4.79545,-1.02427 3.35216,0 5.02825,1.72264 1.72263,1.72264 1.72263,5.21447 v 9.54435 q 0,0.55869 0.23279,0.83804 0.27935,0.23279 0.79149,0.27935 l 1.90887,0.18623 v 1.58296 q -0.46558,0.13968 -1.48985,0.37247 -0.97772,0.23278 -1.7692,0.23278 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path861" />
<path
d="m 443.13264,170.53651 v 1.72264 h -9.40468 v -1.72264 l 2.04854,-0.32591 q 0.46558,-0.0465 0.69837,-0.3259 0.23279,-0.27935 0.23279,-0.74493 v -12.61716 q 0,-0.41902 -0.23279,-0.69837 -0.18623,-0.27934 -0.65181,-0.3259 l -2.37445,-0.32591 v -1.67608 q 1.39674,-0.41902 2.9797,-0.65181 1.58297,-0.23278 2.88659,-0.27934 l 0.65181,0.60525 0.23278,2.0951 q 1.4433,-1.48985 3.16594,-2.0951 1.72263,-0.60525 3.58495,-0.60525 3.35216,0 4.56266,1.95543 1.2105,1.95542 1.2105,5.44726 v 9.17188 q 0,0.46558 0.23279,0.74493 0.27935,0.27935 0.69837,0.3259 l 2.0951,0.32591 v 1.72264 h -9.40468 v -1.72264 l 1.86232,-0.32591 q 0.41902,-0.0931 0.65181,-0.3259 0.27934,-0.23279 0.27934,-0.74493 v -8.52007 q 0,-2.79347 -0.79148,-4.14365 -0.74492,-1.39673 -2.93314,-1.39673 -1.39674,0 -2.70035,0.41902 -1.25706,0.41902 -2.37445,1.25706 v 12.38437 q 0,0.46558 0.23279,0.74493 0.23279,0.23279 0.65181,0.3259 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path863" />
<path
d="m 458.86914,171.23488 q -0.18623,-1.39674 -0.13967,-2.70036 0.0466,-1.35017 0.18623,-2.51412 h 1.95543 l 0.69836,2.56068 q 0.13968,0.55869 0.27935,0.8846 0.18623,0.27935 0.51214,0.51214 0.46557,0.27934 1.39673,0.60525 0.93116,0.3259 2.14166,0.3259 1.76919,0 2.65379,-0.79148 0.93116,-0.83804 0.93116,-2.18822 0,-1.62952 -1.35018,-2.421 -1.35017,-0.79149 -3.8643,-1.81576 -2.28133,-0.93115 -3.77118,-2.0951 -1.44329,-1.2105 -1.44329,-3.53839 0,-2.74691 2.00199,-4.14365 2.00198,-1.44329 5.16791,-1.44329 1.48985,0 3.07282,0.32591 1.58296,0.3259 2.65379,0.79148 0.0466,1.2105 -0.0466,2.46756 -0.0931,1.25706 -0.3259,2.51412 h -1.81575 l -0.5587,-2.37444 q -0.0931,-0.46558 -0.27935,-0.74493 -0.18623,-0.3259 -0.6518,-0.60525 -0.37247,-0.18623 -0.97772,-0.37246 -0.60525,-0.18623 -1.39673,-0.23279 -1.48985,-0.0466 -2.46757,0.65181 -0.97771,0.69837 -0.97771,2.14166 0,1.72264 1.35018,2.46756 1.39673,0.69837 3.07281,1.35018 1.16395,0.46557 2.23478,0.97771 1.11738,0.51214 1.95542,1.2105 0.8846,0.69837 1.39674,1.67608 0.51213,0.97772 0.51213,2.28134 0,2.70035 -2.0951,4.1902 -2.0951,1.48985 -5.44726,1.48985 -2.00199,0 -3.72462,-0.46558 -1.72264,-0.51214 -2.84003,-0.97771 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path865" />
<path
d="m 482.70673,142.36904 v 26.77073 q 0,0.46558 0.23279,0.74493 0.23278,0.27935 0.6518,0.3259 l 2.46757,0.37247 v 1.67608 H 475.6765 v -1.72264 l 2.46756,-0.32591 q 0.46558,-0.0465 0.69837,-0.27934 0.23279,-0.27935 0.23279,-0.74493 V 145.7212 q 0,-0.46558 -0.23279,-0.69837 -0.23279,-0.27934 -0.69837,-0.3259 l -2.56068,-0.37246 v -1.53641 q 1.4433,-0.46558 3.25905,-0.69837 1.86231,-0.23279 3.3056,-0.27934 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path867" />
<path
d="m 495.32388,170.25716 q 1.2105,0 2.46756,-0.41902 1.25706,-0.46558 2.14166,-1.2105 v -4.56267 l -3.25905,0.32591 q -2.04854,0.13967 -3.16593,0.93116 -1.07083,0.74492 -1.07083,2.32789 0,1.2105 0.69837,1.90887 0.74493,0.69836 2.18822,0.69836 z m 7.82171,2.28133 q -1.2105,0 -2.00199,-0.60525 -0.79148,-0.65181 -1.07083,-1.81575 -1.07083,1.16394 -2.70035,1.86231 -1.58296,0.65181 -3.35216,0.65181 -2.32789,0 -3.91086,-1.16395 -1.5364,-1.2105 -1.5364,-3.49183 0,-1.48985 0.65181,-2.46756 0.69836,-0.97772 1.76919,-1.58297 1.07083,-0.60525 2.42101,-0.8846 1.35017,-0.3259 2.65379,-0.41902 l 3.8643,-0.3259 v -2.28133 q 0,-2.6538 -1.07083,-3.67807 -1.02427,-1.07083 -3.16593,-1.07083 -1.58296,0 -3.02626,0.51214 -1.44329,0.51213 -2.65379,1.67608 l -0.8846,-0.83804 q 0.69837,-2.00199 2.79347,-3.02626 2.14166,-1.02427 4.79545,-1.02427 3.35216,0 5.02824,1.72264 1.72264,1.72264 1.72264,5.21447 v 9.54435 q 0,0.55869 0.23279,0.83804 0.27935,0.23279 0.79148,0.27935 l 1.90887,0.18623 v 1.58296 q -0.46557,0.13968 -1.48985,0.37247 -0.97771,0.23278 -1.76919,0.23278 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path869" />
<path
d="m 511.38628,167.46369 v -12.01191 l -2.93314,-0.37246 v -1.58297 l 2.14166,-0.3259 q 0.46558,-0.0466 0.69836,-0.27935 0.27935,-0.23279 0.32591,-0.65181 l 1.25706,-4.98168 h 2.0951 l 0.0466,5.77317 h 6.33186 v 2.28133 h -6.2853 v 10.94108 q 0,2.23478 0.69836,2.9797 0.74493,0.69837 2.04855,0.69837 1.07083,0 1.95542,-0.37246 0.93116,-0.37247 1.58297,-1.11739 l 1.02427,0.97771 q -0.74492,1.58297 -2.32789,2.42101 -1.58296,0.79148 -3.49183,0.79148 -2.09511,0 -3.63151,-1.07083 -1.53641,-1.07083 -1.53641,-4.09709 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path871" />
<path
d="m 533.31492,154.38095 q -1.81576,0 -3.02626,1.30362 -1.2105,1.25706 -1.53641,4.05053 h 8.47352 q 0.0466,-0.23279 0.0466,-0.41902 0.0466,-0.18623 0.0466,-0.41902 0,-2.00199 -1.07083,-3.25905 -1.02427,-1.25706 -2.93314,-1.25706 z m 7.4958,13.688 q -0.60525,2.04854 -2.60723,3.3056 -1.95543,1.25706 -4.88857,1.25706 -4.32988,0 -6.42498,-2.74691 -2.0951,-2.79347 -2.0951,-7.07679 0,-4.84201 2.46756,-7.58892 2.46757,-2.74691 6.56465,-2.74691 3.11938,0 5.0748,1.72264 2.00199,1.67608 2.00199,4.93513 0,0.46558 -0.0466,1.16394 -0.0466,0.65181 -0.13967,1.21051 h -12.10503 q 0,0.0931 0,0.23278 0,0.13968 0,0.27935 0,4.56267 1.62952,6.33186 1.62953,1.7692 4.09709,1.7692 1.62952,0 3.02626,-0.69837 1.44329,-0.74492 2.28133,-2.04854 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:46.5578px;font-family:Rasa;-inkscape-font-specification:Rasa;fill:#007439;fill-opacity:1"
id="path874" />
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -46,11 +46,11 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0" inkscape:pageopacity="0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="0.7" inkscape:zoom="0.98994949"
inkscape:cx="288.28603" inkscape:cx="389.32124"
inkscape:cy="417.4921" inkscape:cy="409.07479"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="g1031" inkscape:current-layer="g1046"
inkscape:document-rotation="0" inkscape:document-rotation="0"
showgrid="false" showgrid="false"
inkscape:pagecheckerboard="false" inkscape:pagecheckerboard="false"
@@ -90,65 +90,97 @@
id="g1046" id="g1046"
transform="matrix(1.3340125,0,0,1.3180561,-28.946798,-23.266825)"> transform="matrix(1.3340125,0,0,1.3180561,-28.946798,-23.266825)">
<g <g
id="g987"> id="g1193">
<rect <g
style="fill:#3cb371;fill-opacity:1;stroke-width:0.420772" id="g987">
id="rect833-4" <rect
width="90" style="fill:#3cb371;fill-opacity:1;stroke-width:0.420772"
height="90" id="rect833-4"
x="85.370766" width="90"
y="21.445843" height="90"
ry="30.319227" /> x="85.370766"
<text y="21.445843"
xml:space="preserve" ry="30.319227" />
style="font-style:normal;font-weight:normal;font-size:60.2376px;line-height:1.25;font-family:sans-serif;fill:#e4f4ea;fill-opacity:1;stroke:none;stroke-width:1.50595" <text
x="101.58068" xml:space="preserve"
y="87.822472" style="font-style:normal;font-weight:normal;font-size:60.2376px;line-height:1.25;font-family:sans-serif;fill:#e4f4ea;fill-opacity:1;stroke:none;stroke-width:1.50595"
id="text892"
transform="scale(0.98945822,1.0106541)"><tspan
sodipodi:role="line"
id="tspan890"
x="101.58068" x="101.58068"
y="87.822472" y="87.822472"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill:#e4f4ea;fill-opacity:1;stroke-width:1.50595"></tspan></text> id="text892"
</g> transform="scale(0.98945822,1.0106541)"><tspan
<g sodipodi:role="line"
id="g1031"> id="tspan890"
<rect x="101.58068"
style="fill:#e7f5ed;fill-opacity:1;stroke-width:0.420772" y="87.822472"
id="rect833" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill:#e4f4ea;fill-opacity:1;stroke-width:1.50595"></tspan></text>
width="90" </g>
height="90"
x="25.447136"
y="83.184448"
ry="30.319227" />
<path
sodipodi:type="star"
style="fill:#3cb371;fill-opacity:1;stroke-width:0.396874"
id="path901"
sodipodi:sides="5"
sodipodi:cx="62.212276"
sodipodi:cy="21.296686"
sodipodi:r1="13.796687"
sodipodi:r2="6.0469499"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
inkscape:transform-center-y="-0.87977402"
transform="matrix(0.95264013,0,0,1.0016651,33.535391,83.171953)"
d="m 62.212277,7.499999 3.554307,8.904602 9.567122,0.628675 -7.370438,6.13202 2.358497,9.293145 -8.109489,-5.114805 -8.109489,5.114804 2.358498,-9.293144 -7.370438,-6.132021 9.567121,-0.628674 z" />
<g <g
aria-label="L" id="g1031">
transform="matrix(0.95061396,0,0,0.95061396,66.090838,-28.284925)" <rect
id="text965" style="fill:#e7f5ed;fill-opacity:1;stroke-width:0.420772"
style="font-style:normal;font-weight:normal;font-size:176.389px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect967);fill:#3cb371;fill-opacity:1;stroke:none"> id="rect833"
width="90"
height="90"
x="25.447136"
y="83.184448"
ry="30.319227" />
<path <path
d="m -12.873615,185.69496 c 6.902593,-2.76882 17.5637656,0.71579 31.41496,-0.11246 l 1.232521,-0.0737 c 0.234764,-0.014 0.818171,-0.10783 1.750216,-0.28136 1.91128,-1.52792 3.616843,-1.57101 5.11669,-0.12927 1.499847,1.44176 1.542935,2.61815 0.129264,4.58752 -1.199961,1.6032 -5.790964,2.64345 -13.773008,3.12076 l -3.6975644,0.22111 c -8.2027702,0.72612 -15.276744,-2.85522 -20.6533586,-0.17765 -2.056739,1.06541 -4.337715,1.79177 -6.842929,3.23741 -1.850051,0.58184 -3.283214,0.25523 -4.299491,-0.97983 -0.891874,-1.12469 -0.917413,-2.5368 -0.07662,-4.23632 3.927088,-9.18783 6.491205,-17.52845 7.692351,-25.02185 1.318529,-7.50042 2.296411,-13.80244 2.933645,-18.90606 0.747598,-5.22803 1.753557,-11.06051 3.0178765,-17.49747 0.9371193,-2.05868 2.3035991,-2.84721 4.0994402,-2.36559 1.9132246,0.47461 2.8156271,1.77538 2.7072086,3.90231 -1.8212127,8.94411 -3.4006398,17.99157 -4.7382824,27.14236 -1.2272781,9.02641 -3.2315849,18.92199 -6.0129189,27.5701 z" sodipodi:type="star"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:176.389px;font-family:Karumbi;-inkscape-font-specification:Karumbi;fill:#3cb371;fill-opacity:1" style="fill:#3cb371;fill-opacity:1;stroke-width:0.396874"
id="path1024" id="path901"
sodipodi:nodetypes="csscscsccccccccccccc" /> sodipodi:sides="5"
sodipodi:cx="62.212276"
sodipodi:cy="21.296686"
sodipodi:r1="13.796687"
sodipodi:r2="6.0469499"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
inkscape:transform-center-y="0.02069705"
transform="matrix(0.93840962,0.16603043,-0.17042345,0.98670226,37.939196,73.151738)"
d="m 62.212277,7.499999 3.554307,8.904602 9.567122,0.628675 -7.370438,6.13202 2.358497,9.293145 -8.109489,-5.114805 -8.109489,5.114804 2.358498,-9.293144 -7.370438,-6.132021 9.567121,-0.628674 z"
inkscape:transform-center-x="-0.82124876" />
<g
aria-label="L"
transform="matrix(0.95061396,0,0,0.95061396,66.090838,-28.284925)"
id="text965"
style="font-style:normal;font-weight:normal;font-size:176.389px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect967);fill:#3cb371;fill-opacity:1;stroke:none">
<path
d="m -12.873615,185.69496 c 6.902593,-2.76882 17.5637656,0.71579 31.41496,-0.11246 l 1.232521,-0.0737 c 0.234764,-0.014 0.818171,-0.10783 1.750216,-0.28136 1.91128,-1.52792 3.616843,-1.57101 5.11669,-0.12927 1.499847,1.44176 1.542935,2.61815 0.129264,4.58752 -1.199961,1.6032 -5.790964,2.64345 -13.773008,3.12076 l -3.6975644,0.22111 c -8.2027702,0.72612 -15.276744,-2.85522 -20.6533586,-0.17765 -2.056739,1.06541 -4.337715,1.79177 -6.842929,3.23741 -1.850051,0.58184 -3.283214,0.25523 -4.299491,-0.97983 -0.891874,-1.12469 -0.917413,-2.5368 -0.07662,-4.23632 3.927088,-9.18783 6.491205,-17.52845 7.692351,-25.02185 1.318529,-7.50042 2.296411,-13.80244 2.933645,-18.90606 0.747598,-5.22803 1.753557,-11.06051 3.0178765,-17.49747 0.9371193,-2.05868 2.3035991,-2.84721 4.0994402,-2.36559 1.9132246,0.47461 2.8156271,1.77538 2.7072086,3.90231 -1.8212127,8.94411 -3.4006398,17.99157 -4.7382824,27.14236 -1.2272781,9.02641 -3.2315849,18.92199 -6.0129189,27.5701 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:176.389px;font-family:Karumbi;-inkscape-font-specification:Karumbi;fill:#3cb371;fill-opacity:1"
id="path1024"
sodipodi:nodetypes="csscscsccccccccccccc" />
</g>
</g>
<g
id="g1175">
<g
id="g1163">
<path
id="rect968-6"
style="fill:#e4f4ea;fill-opacity:1;stroke-width:0.209149"
d="m 139.90603,100.08438 -11.64762,11.375 h 16.79314 c 2.03994,0 4.03091,-0.20129 5.9559,-0.58183 l -11.05222,-10.79317 z" />
<path
id="rect860"
style="fill:#e4f4ea;stroke-width:1.21865"
d="M 559.05273 466.72461 L 559.05273 629.24414 L 634.64258 553.44922 L 634.64258 466.72461 L 559.05273 466.72461 z "
transform="matrix(0.19833647,0,0,0.20073754,21.699046,17.652378)" />
</g>
<g
id="g1167">
<path
id="rect968"
style="fill:#3cb371;fill-opacity:1;stroke-width:1.04819"
d="M 472.67188 533.07812 L 416.03125 591.7793 L 416.03125 592.02734 L 470.62109 648.60156 C 471.96307 640.52345 472.67188 632.22851 472.67188 623.76367 L 472.67188 533.07812 z "
transform="matrix(0.19833647,0,0,0.20073754,21.699046,17.652378)" />
<path
id="rect860-3"
style="fill:#3cb371;fill-opacity:1;stroke-width:1.21865"
d="M 472.12305 553.6543 L 472.12305 629.24414 L 559.05273 629.24414 L 634.4375 553.6543 L 472.12305 553.6543 z "
transform="matrix(0.19833647,0,0,0.20073754,21.699046,17.652378)" />
</g>
</g> </g>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

47
theme.ts Normal file
View File

@@ -0,0 +1,47 @@
import { extendTheme } from "@chakra-ui/react";
import { mode } from "@chakra-ui/theme-tools";
export default extendTheme({
colors: {
lingva: {
50: "#e7f5ed",
100: "#bde3cb",
200: "#92d1ab",
300: "#64c08a",
400: "#3cb372",
500: "#00a659",
600: "#009750",
700: "#008544",
800: "#007439",
900: "#005525"
}
},
config: {
initialColorMode: "light",
useSystemColorMode: true
},
components: {
Textarea: {
variants: {
outline: props => ({
borderColor: mode("lingva.500", "lingva.200")(props),
_hover: {
borderColor: mode("lingva.700", "lingva.400")(props),
},
_readOnly: {
userSelect: "auto"
}
})
}
},
Select: {
variants: {
flushed: props => ({
field: {
borderColor: mode("lingva.500", "lingva.200")(props)
}
})
}
}
}
});

946
yarn.lock

File diff suppressed because it is too large Load Diff