feat: use current stoat brand

This commit is contained in:
infi 2026-02-20 12:15:47 +01:00
parent 75bb23982b
commit b3e4a1551e
34 changed files with 124 additions and 142 deletions

View File

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="DesignSurface"> <component name="DesignSurface">
<option name="filePathToZoomLevelMap"> <option name="filePathToZoomLevelMap">

View File

@ -58,12 +58,12 @@ import androidx.compose.ui.unit.IntOffset
import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
import chat.stoat.R import chat.stoat.R
import chat.stoat.api.settings.UserInterfaceFont
import chat.stoat.composables.generic.Presence import chat.stoat.composables.generic.Presence
import chat.stoat.composables.generic.RemoteImage import chat.stoat.composables.generic.RemoteImage
import chat.stoat.composables.generic.presenceColour import chat.stoat.composables.generic.presenceColour
import chat.stoat.ui.theme.StoatTheme import chat.stoat.ui.theme.StoatTheme
import chat.stoat.ui.theme.Theme import chat.stoat.ui.theme.Theme
import chat.stoat.ui.theme.getDefaultFont
import kotlinx.coroutines.delay import kotlinx.coroutines.delay
import kotlin.math.roundToInt import kotlin.math.roundToInt
@ -83,7 +83,7 @@ class IncomingActivity : ComponentActivity() {
fun IncomingCall() { fun IncomingCall() {
StoatTheme( StoatTheme(
requestedTheme = if (isSystemInDarkTheme()) Theme.Default else Theme.Light, requestedTheme = if (isSystemInDarkTheme()) Theme.Default else Theme.Light,
requestedUserInterfaceFont = UserInterfaceFont.Default requestedUserInterfaceFont = getDefaultFont()
) { ) {
CompositionLocalProvider(LocalContentColor provides MaterialTheme.colorScheme.onBackground) { CompositionLocalProvider(LocalContentColor provides MaterialTheme.colorScheme.onBackground) {
IncomingCallInner() IncomingCallInner()
@ -194,7 +194,7 @@ fun IncomingCallInner() {
horizontalAlignment = Alignment.CenterHorizontally, horizontalAlignment = Alignment.CenterHorizontally,
) { ) {
Text( Text(
"Incoming Call on Revolt", "Incoming Call on Stoat",
style = MaterialTheme.typography.headlineMedium, style = MaterialTheme.typography.headlineMedium,
fontSize = 24.sp fontSize = 24.sp
) )

View File

@ -6,6 +6,7 @@ import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue import androidx.compose.runtime.setValue
import chat.stoat.core.model.schemas.AndroidSpecificSettingsSpecialEmbedSettings import chat.stoat.core.model.schemas.AndroidSpecificSettingsSpecialEmbedSettings
import chat.stoat.ui.theme.Theme import chat.stoat.ui.theme.Theme
import chat.stoat.ui.theme.getDefaultFont
import chat.stoat.ui.theme.getDefaultTheme import chat.stoat.ui.theme.getDefaultTheme
enum class MessageReplyStyle { enum class MessageReplyStyle {
@ -28,7 +29,7 @@ object LoadedSettings {
var experimentsEnabled by mutableStateOf(false) var experimentsEnabled by mutableStateOf(false)
var specialEmbedSettings by mutableStateOf(SpecialEmbedSettings()) var specialEmbedSettings by mutableStateOf(SpecialEmbedSettings())
var poorlyFormedSettingsKeys by mutableStateOf(emptySet<String>()) var poorlyFormedSettingsKeys by mutableStateOf(emptySet<String>())
var font by mutableStateOf(UserInterfaceFont.Default) var font by mutableStateOf(getDefaultFont())
fun hydrateWithSettings(settings: SyncedSettings) { fun hydrateWithSettings(settings: SyncedSettings) {
this.theme = settings.android.theme?.let { this.theme = settings.android.theme?.let {
@ -45,7 +46,7 @@ object LoadedSettings {
} catch (e: Exception) { } catch (e: Exception) {
null null
} }
} ?: UserInterfaceFont.Default } ?: getDefaultFont()
} }
fun reset() { fun reset() {
@ -54,6 +55,6 @@ object LoadedSettings {
avatarRadius = 50 avatarRadius = 50
specialEmbedSettings = SpecialEmbedSettings() specialEmbedSettings = SpecialEmbedSettings()
poorlyFormedSettingsKeys = emptySet() poorlyFormedSettingsKeys = emptySet()
font = UserInterfaceFont.Default font = getDefaultFont()
} }
} }

View File

@ -28,11 +28,11 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
import chat.stoat.R import chat.stoat.R
import chat.stoat.api.STOAT_FILES import chat.stoat.api.STOAT_FILES
import chat.stoat.composables.generic.IconPlaceholder
import chat.stoat.composables.generic.RemoteImage
import chat.stoat.core.model.schemas.Server import chat.stoat.core.model.schemas.Server
import chat.stoat.core.model.schemas.ServerFlags import chat.stoat.core.model.schemas.ServerFlags
import chat.stoat.core.model.schemas.has import chat.stoat.core.model.schemas.has
import chat.stoat.composables.generic.IconPlaceholder
import chat.stoat.composables.generic.RemoteImage
@Composable @Composable
fun ServerOverview(server: Server) { fun ServerOverview(server: Server) {
@ -104,7 +104,7 @@ fun ServerOverview(server: Server) {
CompositionLocalProvider(LocalContentColor provides Color.White) { CompositionLocalProvider(LocalContentColor provides Color.White) {
if (server.flags has ServerFlags.Official) { if (server.flags has ServerFlags.Official) {
Icon( Icon(
painter = painterResource(id = R.drawable.ic_revolt_decagram_24dp), painter = painterResource(id = R.drawable.icn_workspace_premium_24dp__fill),
contentDescription = stringResource(R.string.server_flag_official), contentDescription = stringResource(R.string.server_flag_official),
modifier = Modifier modifier = Modifier
.padding(end = 8.dp) .padding(end = 8.dp)
@ -113,7 +113,7 @@ fun ServerOverview(server: Server) {
} }
if (server.flags has ServerFlags.Verified) { if (server.flags has ServerFlags.Verified) {
Icon( Icon(
painter = painterResource(id = R.drawable.ic_check_decagram_24dp), painter = painterResource(id = R.drawable.icn_verified_24dp__fill),
contentDescription = stringResource(R.string.server_flag_verified), contentDescription = stringResource(R.string.server_flag_verified),
modifier = Modifier modifier = Modifier
.padding(end = 8.dp) .padding(end = 8.dp)

View File

@ -58,7 +58,6 @@ import chat.stoat.api.routes.misc.getRootRoute
import chat.stoat.composables.generic.PrimaryTabs import chat.stoat.composables.generic.PrimaryTabs
import chat.stoat.internals.Platform import chat.stoat.internals.Platform
import kotlinx.coroutines.launch import kotlinx.coroutines.launch
import kotlinx.serialization.encodeToString
import java.net.URI import java.net.URI
class AboutViewModel : ViewModel() { class AboutViewModel : ViewModel() {
@ -208,7 +207,7 @@ fun AboutScreen(navController: NavController, viewModel: AboutViewModel = viewMo
when (viewModel.selectedTabIndex) { when (viewModel.selectedTabIndex) {
0 -> { 0 -> {
Image( Image(
painter = painterResource(R.drawable.stoat_wordmark_white), painter = painterResource(R.drawable.stoat_logo_white),
contentDescription = stringResource(R.string.about_full_name), contentDescription = stringResource(R.string.about_full_name),
colorFilter = ColorFilter.tint(LocalContentColor.current), colorFilter = ColorFilter.tint(LocalContentColor.current),
modifier = Modifier modifier = Modifier

View File

@ -71,7 +71,7 @@ fun LoginGreetingScreen(navController: NavController) {
horizontalAlignment = Alignment.CenterHorizontally horizontalAlignment = Alignment.CenterHorizontally
) { ) {
Image( Image(
painter = painterResource(id = R.drawable.stoat_wordmark_white), painter = painterResource(id = R.drawable.stoat_logo_white),
colorFilter = ColorFilter.tint(LocalContentColor.current), colorFilter = ColorFilter.tint(LocalContentColor.current),
contentDescription = "Stoat", contentDescription = "Stoat",
contentScale = ContentScale.Fit, contentScale = ContentScale.Fit,

View File

@ -99,7 +99,7 @@ private fun LeadPart(windowSizeClass: WindowSizeClass) {
Spacer(Modifier.height(64.dp)) Spacer(Modifier.height(64.dp))
} }
Image( Image(
painter = painterResource(R.drawable.stoat_wordmark_white), painter = painterResource(R.drawable.stoat_logo_white),
contentDescription = null, contentDescription = null,
colorFilter = ColorFilter.tint( colorFilter = ColorFilter.tint(
MaterialTheme.colorScheme.onBackground MaterialTheme.colorScheme.onBackground

View File

@ -1,5 +1,6 @@
package chat.stoat.ui.theme package chat.stoat.ui.theme
import android.os.Build
import androidx.compose.material3.Typography import androidx.compose.material3.Typography
import androidx.compose.ui.text.ExperimentalTextApi import androidx.compose.ui.text.ExperimentalTextApi
import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.TextStyle
@ -10,6 +11,7 @@ import androidx.compose.ui.text.font.FontVariation
import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
import chat.stoat.R import chat.stoat.R
import chat.stoat.api.settings.UserInterfaceFont
val Inter = FontFamily( val Inter = FontFamily(
Font(R.font.inter_thin, FontWeight.Thin), Font(R.font.inter_thin, FontWeight.Thin),
@ -398,4 +400,11 @@ val GoogleTypography = Typography(
fontWeight = FontWeight.Bold, fontWeight = FontWeight.Bold,
fontSize = 12.sp fontSize = 12.sp
) )
) )
fun getDefaultFont(): UserInterfaceFont {
if (Build.MANUFACTURER == "Google" && Build.MODEL.startsWith("Pixel")) {
return UserInterfaceFont.GoogleSansFlex
}
return UserInterfaceFont.Default
}

View File

@ -1,28 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:pathData="M377.84,538.93L377.84,413.89L356.85,415.72L356.85,387.2L431.99,380.67L431.99,409.18L410.99,411.01L410.99,536.05L377.84,538.93Z"
android:fillColor="@android:color/system_accent1_100"
android:fillType="nonZero"/>
<path
android:pathData="M477.29,532.48C470.22,533.09 463.81,531.9 457.85,528.9C451.88,526.13 447.24,521.93 443.92,516.29C440.39,510.9 438.62,504.69 438.62,497.45L438.62,416.29C438.62,409.05 440.39,402.53 443.92,396.3C447.24,390.31 451.88,385.3 457.85,381.27C463.81,377.46 470.22,375.15 477.29,374.53C484.37,373.92 490.77,375.12 496.74,377.89C502.71,380.88 507.35,385.08 510.89,390.48C514.2,396.12 515.97,402.32 515.97,409.56L515.97,490.73C515.97,497.97 514.2,504.48 510.89,510.47C507.35,516.7 502.71,521.71 496.74,525.52C490.77,529.55 484.37,531.86 477.29,532.48ZM477.29,503.52C478.84,503.39 480.17,502.61 481.27,501.42C482.38,500.23 482.82,499.09 482.82,497.56L482.82,408.28C482.82,406.74 482.38,405.24 481.27,404.24C480.17,403.24 478.84,402.92 477.29,403.05C475.75,403.19 474.42,403.74 473.32,404.93C472.21,406.13 471.55,407.72 471.55,409.26L471.55,498.54C471.55,500.07 472.21,501.11 473.32,502.11C474.42,503.11 475.75,503.66 477.29,503.52Z"
android:fillColor="@android:color/system_accent1_100"
android:fillType="nonZero"/>
<path
android:pathData="M559.73,525.31C552.65,525.93 546.47,524.71 541.38,521.64C536.08,518.81 532.1,514.55 529.23,508.88C526.36,503.43 525.03,497.18 525.03,489.94L525.03,468.44C525.03,461.42 526.8,454.91 530.33,448.68C533.65,442.47 538.29,437.46 544.26,433.43C550.22,429.62 556.63,427.31 563.7,426.69L569.67,426.17L569.67,398.09C569.67,396.56 569.01,395.08 567.9,394.08C566.8,393.08 565.25,392.77 563.7,392.91C562.16,393.04 560.83,393.6 559.73,394.79C558.62,395.98 557.96,397.58 557.96,399.11L557.96,421.49L525.03,424.35L525.03,408.77C525.03,401.54 526.8,395.02 530.33,388.79C533.65,382.8 538.29,377.79 544.26,373.76C550.22,369.95 556.63,367.64 563.7,367.02C571,366.39 577.41,367.59 583.37,370.36C589.12,373.37 593.76,377.57 597.3,382.97C600.61,388.6 602.38,394.81 602.38,402.05L602.38,519.41L579.17,521.43L579.17,513.75L576.96,513.94C575.42,517.37 572.99,519.99 569.67,521.82C566.36,523.86 563.04,525.02 559.73,525.31ZM563.7,494.48C565.25,494.34 566.8,493.55 567.9,492.36C569.01,491.16 569.67,489.79 569.67,488.25L569.67,456.88L563.7,457.4C562.16,457.54 560.83,458.09 559.73,459.28C558.62,460.48 557.96,462.07 557.96,463.61L557.96,489.27C557.96,490.81 558.62,492.07 559.73,493.07C560.83,494.07 562.16,494.61 563.7,494.48Z"
android:fillColor="@android:color/system_accent1_100"
android:fillType="nonZero"/>
<path
android:pathData="M630,517.01L630,391.97L609.01,393.8L609.01,365.28L684.15,358.75L684.15,387.27L663.15,389.09L663.15,514.13L630,517.01Z"
android:fillColor="@android:color/system_accent1_100"
android:fillType="nonZero"/>
<path
android:pathData="M275.9,432.3C275.88,431.97 275.86,431.64 275.86,431.32L275.86,430.44C275.86,423.27 277.58,416.65 281.02,410.58C284.45,404.5 289.1,399.49 294.95,395.55C300.8,391.6 307.23,389.32 314.25,388.71C321.42,388.09 327.89,389.25 333.66,392.18C339.44,395.11 344.05,399.32 347.49,404.8C350.92,410.28 352.64,416.6 352.64,423.76L352.64,439.34L320.17,442.16L320.17,425.27C320.17,423.66 319.59,422.32 318.42,421.25C317.25,420.19 315.86,419.72 314.25,419.86C312.79,419.99 311.47,420.69 310.3,421.96C309.13,423.23 308.55,424.67 308.55,426.28C308.55,426.34 308.55,426.37 308.57,426.41C308.57,426.41 308.42,436.07 308.42,446.64C308.42,452.45 314.6,451 314.6,451L323.79,450.2C337.89,448.98 352.64,462.79 352.64,487C352.64,494.36 352.64,504.93 352.64,504.93C352.64,512.1 350.92,518.72 347.49,524.79C344.05,530.87 339.44,535.87 333.66,539.81C327.89,543.75 321.42,546.03 314.25,546.66C307.23,547.27 300.8,546.11 294.95,543.18C289.1,540.25 284.45,536.05 281.02,530.57C277.58,525.09 275.86,518.77 275.86,511.6L275.86,494.05L308.24,491.24L308.55,491.89L308.55,509.86C308.55,511.32 309.1,512.63 310.19,513.77C311.29,514.92 312.64,515.43 314.25,515.29C315.86,515.15 317.43,514.55 318.42,513.06C319.99,510.73 320.03,505 320.14,503.88C320.3,502.22 320.43,497.44 320.43,486.87C320.43,481.31 314.6,482.39 314.6,482.39L305.4,483.19C291.31,484.41 276.21,473.51 276.21,449.31C276.21,441.92 275.9,432.3 275.9,432.3Z"
android:fillColor="@android:color/system_accent1_100"/>
<path
android:pathData="M275.84,566.6l387.31,-33.67l-0,33.18l-387.31,33.67z"
android:fillColor="@android:color/system_accent1_100"/>
</vector>

View File

@ -1,21 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:pathData="M-0,0.01l960,0l0,960l-960,0z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="629.85"
android:startY="960.01"
android:endX="439.88"
android:endY="-404.94"
android:type="linear">
<item android:offset="0" android:color="#FF111727"/>
<item android:offset="1" android:color="#FF393F4E"/>
</gradient>
</aapt:attr>
</path>
</vector>

View File

@ -1,28 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp" android:width="108dp"
android:height="108dp" android:height="108dp"
android:viewportWidth="960" android:viewportWidth="391"
android:viewportHeight="960"> android:viewportHeight="391">
<path <group android:scaleX="0.65"
android:pathData="M377.84,538.93L377.84,413.89L356.85,415.72L356.85,387.2L431.99,380.67L431.99,409.18L410.99,411.01L410.99,536.05L377.84,538.93Z" android:scaleY="0.65"
android:fillColor="#ffffff" android:translateX="68.425"
android:fillType="nonZero"/> android:translateY="68.425">
<path <path
android:pathData="M477.29,532.48C470.22,533.09 463.81,531.9 457.85,528.9C451.88,526.13 447.24,521.93 443.92,516.29C440.39,510.9 438.62,504.69 438.62,497.45L438.62,416.29C438.62,409.05 440.39,402.53 443.92,396.3C447.24,390.31 451.88,385.3 457.85,381.27C463.81,377.46 470.22,375.15 477.29,374.53C484.37,373.92 490.77,375.12 496.74,377.89C502.71,380.88 507.35,385.08 510.89,390.48C514.2,396.12 515.97,402.32 515.97,409.56L515.97,490.73C515.97,497.97 514.2,504.48 510.89,510.47C507.35,516.7 502.71,521.71 496.74,525.52C490.77,529.55 484.37,531.86 477.29,532.48ZM477.29,503.52C478.84,503.39 480.17,502.61 481.27,501.42C482.38,500.23 482.82,499.09 482.82,497.56L482.82,408.28C482.82,406.74 482.38,405.24 481.27,404.24C480.17,403.24 478.84,402.92 477.29,403.05C475.75,403.19 474.42,403.74 473.32,404.93C472.21,406.13 471.55,407.72 471.55,409.26L471.55,498.54C471.55,500.07 472.21,501.11 473.32,502.11C474.42,503.11 475.75,503.66 477.29,503.52Z" android:pathData="M146.42,137.57C155.1,140.83 166.32,140.83 173.91,135.77C168.12,129.98 161.97,123.83 155.82,118.76C148.23,112.97 135.2,102.84 126.52,111.53C118.92,119.12 114.58,146.26 115.3,156.75C116.03,166.52 121.09,178.82 132.67,173.03C129.78,167.96 127.6,162.54 127.6,156.39C131.95,160.73 137.37,162.9 143.52,161.45C139.54,156.75 134.84,150.96 134.48,144.09C140.63,147.7 147.86,149.88 155.1,147.7C151.84,144.45 148.23,141.92 146.42,137.57M295.47,215C295.47,215.36 295.83,215.72 296.56,215.72C296.56,215.72 296.92,215.72 296.92,215.72C305.6,209.57 301.98,192.2 290.77,192.57C284.98,192.57 285.7,196.91 287.51,200.52C289.68,205.59 291.13,207.76 295.47,215M211.18,196.54C193.45,199.08 195.62,226.21 214.07,224.76C232.88,223.68 230.35,194.01 211.18,196.54M294.02,273.24C296.92,273.24 299.81,272.16 302.34,270.35C304.51,268.9 306.69,266.73 308.13,264.2C309.94,261.66 311.39,259.13 312.11,256.6C312.47,255.15 312.84,254.07 312.84,252.62C312.84,251.17 311.75,249.73 310.3,248.64C308.86,247.56 307.05,247.19 305.6,246.83C299.81,245.75 294.02,246.83 288.6,247.92C286.06,248.64 283.53,249.36 281.36,250.81C278.83,252.26 274.85,255.88 275.57,261.3C275.93,263.84 279.19,266.01 281,267.82C284.98,270.71 289.32,273.24 294.02,273.24L294.02,273.24ZM66.83,419.04C57.78,285.18 56.7,256.96 97.94,167.6C100.83,179.54 108.43,190.39 121.09,192.2C114.58,185.33 109.15,177.73 106.26,168.69C101.92,153.49 105.54,133.23 110.24,118.4C119.65,89.82 134.12,88.37 157.63,104.65C168.12,111.89 177.53,121.29 186.94,129.98C186.21,123.1 181.87,116.95 177.17,111.89C177.53,111.53 212.98,106.82 236.14,115.14C261.46,124.19 275.93,137.94 289.32,160.37C300.17,178.82 306.32,190.03 304.88,212.82C304.51,220.78 302.34,222.23 305.96,230.19C308.86,236.34 316.45,246.83 316.82,252.98C317.54,270.71 286.06,287.35 270.87,289.88C253.14,293.14 223.48,284.46 205.03,280.48C187.3,276.86 169.57,275.05 153.65,265.28C133.03,252.62 121.45,230.91 118.56,207.04C114.22,219.34 117.84,236.34 123.26,248.28C134.84,273.24 159.8,286.63 178.25,306.16C185.49,313.76 191.64,322.08 197.43,331.13C200.32,314.48 209.73,299.29 224.92,291.69C207.56,348.49 247.72,373.82 269.06,419.04L66.83,419.04ZM288.23,145.53C278.83,132.15 266.53,121.29 251.33,114.42C290.77,75.71 291.13,103.21 288.23,145.53"
android:fillColor="#ffffff" android:fillColor="#ffffff"
android:fillType="nonZero"/> android:fillType="nonZero"/>
<path </group>
android:pathData="M559.73,525.31C552.65,525.93 546.47,524.71 541.38,521.64C536.08,518.81 532.1,514.55 529.23,508.88C526.36,503.43 525.03,497.18 525.03,489.94L525.03,468.44C525.03,461.42 526.8,454.91 530.33,448.68C533.65,442.47 538.29,437.46 544.26,433.43C550.22,429.62 556.63,427.31 563.7,426.69L569.67,426.17L569.67,398.09C569.67,396.56 569.01,395.08 567.9,394.08C566.8,393.08 565.25,392.77 563.7,392.91C562.16,393.04 560.83,393.6 559.73,394.79C558.62,395.98 557.96,397.58 557.96,399.11L557.96,421.49L525.03,424.35L525.03,408.77C525.03,401.54 526.8,395.02 530.33,388.79C533.65,382.8 538.29,377.79 544.26,373.76C550.22,369.95 556.63,367.64 563.7,367.02C571,366.39 577.41,367.59 583.37,370.36C589.12,373.37 593.76,377.57 597.3,382.97C600.61,388.6 602.38,394.81 602.38,402.05L602.38,519.41L579.17,521.43L579.17,513.75L576.96,513.94C575.42,517.37 572.99,519.99 569.67,521.82C566.36,523.86 563.04,525.02 559.73,525.31ZM563.7,494.48C565.25,494.34 566.8,493.55 567.9,492.36C569.01,491.16 569.67,489.79 569.67,488.25L569.67,456.88L563.7,457.4C562.16,457.54 560.83,458.09 559.73,459.28C558.62,460.48 557.96,462.07 557.96,463.61L557.96,489.27C557.96,490.81 558.62,492.07 559.73,493.07C560.83,494.07 562.16,494.61 563.7,494.48Z"
android:fillColor="#ffffff"
android:fillType="nonZero"/>
<path
android:pathData="M630,517.01L630,391.97L609.01,393.8L609.01,365.28L684.15,358.75L684.15,387.27L663.15,389.09L663.15,514.13L630,517.01Z"
android:fillColor="#ffffff"
android:fillType="nonZero"/>
<path
android:pathData="M275.9,432.3C275.88,431.97 275.86,431.64 275.86,431.32L275.86,430.44C275.86,423.27 277.58,416.65 281.02,410.58C284.45,404.5 289.1,399.49 294.95,395.55C300.8,391.6 307.23,389.32 314.25,388.71C321.42,388.09 327.89,389.25 333.66,392.18C339.44,395.11 344.05,399.32 347.49,404.8C350.92,410.28 352.64,416.6 352.64,423.76L352.64,439.34L320.17,442.16L320.17,425.27C320.17,423.66 319.59,422.32 318.42,421.25C317.25,420.19 315.86,419.72 314.25,419.86C312.79,419.99 311.47,420.69 310.3,421.96C309.13,423.23 308.55,424.67 308.55,426.28C308.55,426.34 308.55,426.37 308.57,426.41C308.57,426.41 308.42,436.07 308.42,446.64C308.42,452.45 314.6,451 314.6,451L323.79,450.2C337.89,448.98 352.64,462.79 352.64,487C352.64,494.36 352.64,504.93 352.64,504.93C352.64,512.1 350.92,518.72 347.49,524.79C344.05,530.87 339.44,535.87 333.66,539.81C327.89,543.75 321.42,546.03 314.25,546.66C307.23,547.27 300.8,546.11 294.95,543.18C289.1,540.25 284.45,536.05 281.02,530.57C277.58,525.09 275.86,518.77 275.86,511.6L275.86,494.05L308.24,491.24L308.55,491.89L308.55,509.86C308.55,511.32 309.1,512.63 310.19,513.77C311.29,514.92 312.64,515.43 314.25,515.29C315.86,515.15 317.43,514.55 318.42,513.06C319.99,510.73 320.03,505 320.14,503.88C320.3,502.22 320.43,497.44 320.43,486.87C320.43,481.31 314.6,482.39 314.6,482.39L305.4,483.19C291.31,484.41 276.21,473.51 276.21,449.31C276.21,441.92 275.9,432.3 275.9,432.3Z"
android:fillColor="#ffffff"/>
<path
android:pathData="M275.84,566.6l387.31,-33.67l-0,33.18l-387.31,33.67z"
android:fillColor="#ffffff"/>
</vector> </vector>

View File

@ -1,28 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:pathData="M377.84,538.93L377.84,413.89L356.85,415.72L356.85,387.2L431.99,380.67L431.99,409.18L410.99,411.01L410.99,536.05L377.84,538.93Z"
android:fillColor="#ffffff"
android:fillType="nonZero"/>
<path
android:pathData="M477.29,532.48C470.22,533.09 463.81,531.9 457.85,528.9C451.88,526.13 447.24,521.93 443.92,516.29C440.39,510.9 438.62,504.69 438.62,497.45L438.62,416.29C438.62,409.05 440.39,402.53 443.92,396.3C447.24,390.31 451.88,385.3 457.85,381.27C463.81,377.46 470.22,375.15 477.29,374.53C484.37,373.92 490.77,375.12 496.74,377.89C502.71,380.88 507.35,385.08 510.89,390.48C514.2,396.12 515.97,402.32 515.97,409.56L515.97,490.73C515.97,497.97 514.2,504.48 510.89,510.47C507.35,516.7 502.71,521.71 496.74,525.52C490.77,529.55 484.37,531.86 477.29,532.48ZM477.29,503.52C478.84,503.39 480.17,502.61 481.27,501.42C482.38,500.23 482.82,499.09 482.82,497.56L482.82,408.28C482.82,406.74 482.38,405.24 481.27,404.24C480.17,403.24 478.84,402.92 477.29,403.05C475.75,403.19 474.42,403.74 473.32,404.93C472.21,406.13 471.55,407.72 471.55,409.26L471.55,498.54C471.55,500.07 472.21,501.11 473.32,502.11C474.42,503.11 475.75,503.66 477.29,503.52Z"
android:fillColor="#ffffff"
android:fillType="nonZero"/>
<path
android:pathData="M559.73,525.31C552.65,525.93 546.47,524.71 541.38,521.64C536.08,518.81 532.1,514.55 529.23,508.88C526.36,503.43 525.03,497.18 525.03,489.94L525.03,468.44C525.03,461.42 526.8,454.91 530.33,448.68C533.65,442.47 538.29,437.46 544.26,433.43C550.22,429.62 556.63,427.31 563.7,426.69L569.67,426.17L569.67,398.09C569.67,396.56 569.01,395.08 567.9,394.08C566.8,393.08 565.25,392.77 563.7,392.91C562.16,393.04 560.83,393.6 559.73,394.79C558.62,395.98 557.96,397.58 557.96,399.11L557.96,421.49L525.03,424.35L525.03,408.77C525.03,401.54 526.8,395.02 530.33,388.79C533.65,382.8 538.29,377.79 544.26,373.76C550.22,369.95 556.63,367.64 563.7,367.02C571,366.39 577.41,367.59 583.37,370.36C589.12,373.37 593.76,377.57 597.3,382.97C600.61,388.6 602.38,394.81 602.38,402.05L602.38,519.41L579.17,521.43L579.17,513.75L576.96,513.94C575.42,517.37 572.99,519.99 569.67,521.82C566.36,523.86 563.04,525.02 559.73,525.31ZM563.7,494.48C565.25,494.34 566.8,493.55 567.9,492.36C569.01,491.16 569.67,489.79 569.67,488.25L569.67,456.88L563.7,457.4C562.16,457.54 560.83,458.09 559.73,459.28C558.62,460.48 557.96,462.07 557.96,463.61L557.96,489.27C557.96,490.81 558.62,492.07 559.73,493.07C560.83,494.07 562.16,494.61 563.7,494.48Z"
android:fillColor="#ffffff"
android:fillType="nonZero"/>
<path
android:pathData="M630,517.01L630,391.97L609.01,393.8L609.01,365.28L684.15,358.75L684.15,387.27L663.15,389.09L663.15,514.13L630,517.01Z"
android:fillColor="#ffffff"
android:fillType="nonZero"/>
<path
android:pathData="M275.9,432.3C275.88,431.97 275.86,431.64 275.86,431.32L275.86,430.44C275.86,423.27 277.58,416.65 281.02,410.58C284.45,404.5 289.1,399.49 294.95,395.55C300.8,391.6 307.23,389.32 314.25,388.71C321.42,388.09 327.89,389.25 333.66,392.18C339.44,395.11 344.05,399.32 347.49,404.8C350.92,410.28 352.64,416.6 352.64,423.76L352.64,439.34L320.17,442.16L320.17,425.27C320.17,423.66 319.59,422.32 318.42,421.25C317.25,420.19 315.86,419.72 314.25,419.86C312.79,419.99 311.47,420.69 310.3,421.96C309.13,423.23 308.55,424.67 308.55,426.28C308.55,426.34 308.55,426.37 308.57,426.41C308.57,426.41 308.42,436.07 308.42,446.64C308.42,452.45 314.6,451 314.6,451L323.79,450.2C337.89,448.98 352.64,462.79 352.64,487C352.64,494.36 352.64,504.93 352.64,504.93C352.64,512.1 350.92,518.72 347.49,524.79C344.05,530.87 339.44,535.87 333.66,539.81C327.89,543.75 321.42,546.03 314.25,546.66C307.23,547.27 300.8,546.11 294.95,543.18C289.1,540.25 284.45,536.05 281.02,530.57C277.58,525.09 275.86,518.77 275.86,511.6L275.86,494.05L308.24,491.24L308.55,491.89L308.55,509.86C308.55,511.32 309.1,512.63 310.19,513.77C311.29,514.92 312.64,515.43 314.25,515.29C315.86,515.15 317.43,514.55 318.42,513.06C319.99,510.73 320.03,505 320.14,503.88C320.3,502.22 320.43,497.44 320.43,486.87C320.43,481.31 314.6,482.39 314.6,482.39L305.4,483.19C291.31,484.41 276.21,473.51 276.21,449.31C276.21,441.92 275.9,432.3 275.9,432.3Z"
android:fillColor="#ffffff"/>
<path
android:pathData="M275.84,566.6l387.31,-33.67l-0,33.18l-387.31,33.67z"
android:fillColor="#ffffff"/>
</vector>

View File

@ -1,9 +1,5 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="200dp" android:viewportHeight="307" android:viewportWidth="307" android:width="200dp">
android:width="200dp"
android:height="200dp" <path android:fillColor="#ffffff" android:pathData="M49.25,265.3C19.27,237.36 0.5,197.52 0.5,153.34C0.5,68.87 69.08,0.29 153.56,0.29C238.03,0.29 306.61,68.87 306.61,153.34C306.61,223.64 259.11,282.93 194.48,300.85C180.14,279.77 167.14,260.58 176.86,228.98C165,235.03 157.55,246.94 155.29,259.88C150.88,252.94 145.98,246.25 140.3,240.29C125.86,225.12 106.16,214.52 97.04,194.82C92.88,185.51 90.03,172.21 93.33,162.58C95.71,181.27 104.8,198.46 121.08,208.42C133.49,216.01 147.4,217.26 161.32,220.19C175.83,223.25 198.88,230.15 213.02,227.65C224.78,225.59 249.44,212.6 248.78,198.52C248.55,193.68 242.64,185.52 240.45,180.84C237.54,174.62 239.27,173.27 239.6,167.03C240.54,149.36 235.87,140.63 227.29,126.08C216.88,108.42 205.45,97.76 185.66,90.59C167.58,84.04 139.75,87.75 139.54,88.05C143.19,92.06 146.56,96.75 147.03,102.3C139.62,95.44 132.45,88.16 124.15,82.34C105.79,69.49 94.29,70.7 86.99,93.06C83.19,104.71 80.31,120.53 83.84,132.45C85.98,139.66 90.42,145.53 95.47,150.95C85.58,149.6 79.58,141.01 77.4,131.7C52.88,184.73 47.43,210.37 49.25,265.3ZM231.12,214.52L231.12,214.52C227.31,214.64 223.8,212.61 220.93,210.3C219.31,208.92 216.94,207.15 216.6,205.09C215.95,201 219.21,198.07 221.15,196.86C222.81,195.82 224.84,195.24 226.75,194.8C231.11,193.79 235.63,192.86 240.03,193.71C241.34,193.97 242.64,194.39 243.72,195.18C244.8,195.96 245.64,197.15 245.79,198.48C245.9,199.47 245.63,200.46 245.3,201.39C244.54,203.54 243.49,205.58 242.18,207.45C240.89,209.32 239.34,211.03 237.47,212.31C235.6,213.6 233.39,214.45 231.12,214.52ZM166.08,154.4C181.13,152.36 182.97,175.67 168.45,176.65C153.92,177.62 152.29,156.27 166.08,154.4ZM115.36,108.12C116.75,111.43 119.62,113.64 122.09,116.07C116.48,117.77 110.81,116.15 105.88,113.32C106.17,118.53 110.02,123.12 112.91,126.78C108.15,127.87 103.95,126.24 100.68,122.8C100.63,127.64 102.28,131.86 104.65,135.96C95.37,140.57 91.36,130.86 90.89,123.26C90.37,114.91 93.75,93.83 99.74,87.75C106.45,80.96 116.86,88.87 122.54,93.44C127.55,97.46 132.38,102.33 136.92,106.86C130.96,110.8 122.07,110.64 115.36,108.12ZM232.04,168.98C228.76,163.27 227.75,161.61 225.84,157.48C224.54,154.66 223.89,151.32 228.59,151.22C237.14,151.04 240.09,164.57 233.44,169.29C233.28,169.4 233.08,169.47 232.88,169.47C232.53,169.47 232.21,169.28 232.04,168.98ZM226.43,114.52C228.85,81.21 228.57,59.65 197.67,89.89C209.33,95.31 219.14,103.96 226.43,114.52Z"/>
android:viewportWidth="500"
android:viewportHeight="500">
<path
android:pathData="M122.59,447C122.59,326.35 122.59,247.26 122.59,144.56L46,53H293.71C323.14,53 348.89,58.32 370.95,68.97C393.02,79.61 410.19,94.94 422.45,114.95C434.71,134.96 440.84,158.94 440.84,186.9C440.84,215.12 434.51,238.91 421.87,258.27C409.35,277.64 391.73,292.26 369.02,302.14C346.43,312.01 320.04,316.95 289.84,316.95H187.63V233.84H268.16C280.81,233.84 291.59,232.3 300.49,229.22C309.52,226.02 316.43,220.95 321.2,214.02C326.11,207.1 328.56,198.06 328.56,186.9C328.56,175.61 326.11,166.44 321.2,159.39C316.43,152.21 309.52,146.95 300.49,143.61C291.59,140.15 280.81,138.42 268.16,138.42H230.22V447H122.59ZM354.89,266.16L454,447H337.08L240.29,266.16H354.89Z"
android:fillColor="@color/primary"/>
</vector> </vector>

View File

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M344,900L268,772L124,740L138,592L40,480L138,368L124,220L268,188L344,60L480,118L616,60L692,188L836,220L822,368L920,480L822,592L836,740L692,772L616,900L480,842L344,900ZM438,622L664,396L608,338L438,508L352,424L296,480L438,622Z"/>
</vector>

View File

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M387,548L422,434L330,360L444,360L480,248L516,360L630,360L537,434L572,548L480,477L387,548ZM240,920L240,611Q202,569 181,515Q160,461 160,400Q160,266 253,173Q346,80 480,80Q614,80 707,173Q800,266 800,400Q800,461 779,515Q758,569 720,611L720,920L480,840L240,920ZM650,570Q720,500 720,400Q720,300 650,230Q580,160 480,160Q380,160 310,230Q240,300 240,400Q240,500 310,570Q380,640 480,640Q580,640 650,570Z"/>
</vector>

View File

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="288dp"
android:height="288dp"
android:viewportWidth="288"
android:viewportHeight="288">
<path
android:pathData="M58.61,164.31C53.37,159.33 50.09,152.22 50.09,144.35C50.09,129.28 62.07,117.05 76.83,117.05C91.59,117.05 103.57,129.28 103.57,144.35C103.57,156.88 95.27,167.46 83.98,170.65C81.47,166.89 79.2,163.47 80.9,157.83C78.83,158.91 77.53,161.04 77.13,163.34C76.36,162.11 75.51,160.91 74.51,159.85C71.99,157.15 68.55,155.26 66.96,151.74C66.23,150.08 65.73,147.71 66.31,145.99C66.72,149.33 68.31,152.39 71.16,154.17C73.32,155.52 75.75,155.74 78.19,156.27C80.72,156.81 84.75,158.04 87.22,157.6C89.27,157.23 93.58,154.91 93.47,152.4C93.43,151.54 92.39,150.08 92.01,149.25C91.5,148.14 91.81,147.9 91.86,146.79C92.03,143.63 91.21,142.08 89.71,139.48C87.89,136.34 85.9,134.43 82.44,133.16C79.28,131.99 74.42,132.65 74.38,132.7C75.02,133.42 75.61,134.25 75.69,135.24C74.39,134.02 73.14,132.72 71.69,131.68C68.48,129.39 66.47,129.61 65.2,133.6C64.53,135.67 64.03,138.49 64.65,140.62C65.02,141.91 65.8,142.95 66.68,143.92C64.95,143.68 63.9,142.15 63.52,140.49C59.24,149.94 58.29,154.52 58.61,164.31ZM90.38,155.26L90.38,155.26C89.72,155.28 89.1,154.91 88.6,154.5C88.32,154.26 87.9,153.94 87.85,153.57C87.73,152.84 88.3,152.32 88.64,152.1C88.93,151.92 89.28,151.82 89.62,151.74C90.38,151.56 91.17,151.39 91.94,151.54C92.17,151.59 92.4,151.67 92.58,151.81C92.77,151.95 92.92,152.16 92.94,152.4C92.96,152.57 92.92,152.75 92.86,152.91C92.73,153.3 92.54,153.66 92.31,153.99C92.09,154.33 91.82,154.63 91.49,154.86C91.16,155.09 90.78,155.24 90.38,155.26ZM79.02,144.53C81.65,144.17 81.97,148.33 79.43,148.5C76.89,148.68 76.61,144.87 79.02,144.53ZM70.16,136.28C70.4,136.87 70.9,137.26 71.33,137.7C70.35,138 69.36,137.71 68.5,137.21C68.55,138.14 69.22,138.96 69.73,139.61C68.9,139.8 68.16,139.51 67.59,138.9C67.58,139.76 67.87,140.51 68.29,141.24C66.66,142.07 65.96,140.34 65.88,138.98C65.79,137.49 66.38,133.73 67.43,132.65C68.6,131.44 70.42,132.85 71.41,133.66C72.29,134.38 73.13,135.25 73.92,136.06C72.88,136.76 71.33,136.73 70.16,136.28ZM90.54,147.13C89.97,146.12 89.79,145.82 89.46,145.08C89.23,144.58 89.12,143.99 89.94,143.97C91.43,143.94 91.95,146.35 90.79,147.19C90.76,147.21 90.72,147.22 90.69,147.22C90.63,147.22 90.57,147.19 90.54,147.13ZM89.56,137.42C89.99,131.48 89.94,127.64 84.54,133.03C86.58,134 88.29,135.54 89.56,137.42Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
<path
android:pathData="M131.45,162.22C129.24,162.22 127.11,161.99 125.05,161.54C122.99,161.09 121.08,160.41 119.31,159.51C117.54,158.61 116.01,157.46 114.71,156.07L120.43,148.52C121.38,149.7 122.5,150.69 123.8,151.49C125.09,152.29 126.44,152.89 127.85,153.29C129.26,153.69 130.63,153.89 131.96,153.89C132.74,153.89 133.42,153.82 134,153.68C134.58,153.54 135.02,153.32 135.33,153.03C135.63,152.73 135.79,152.34 135.79,151.86C135.79,151.27 135.58,150.76 135.18,150.35C134.77,149.93 134.1,149.56 133.18,149.23C132.27,148.9 131.04,148.59 129.51,148.32L126.09,147.64C124.63,147.36 123.25,146.97 121.96,146.47C120.67,145.96 119.52,145.3 118.52,144.49C117.51,143.67 116.73,142.67 116.17,141.49C115.61,140.31 115.33,138.89 115.33,137.22C115.33,134.86 115.93,132.88 117.14,131.26C118.35,129.65 119.98,128.43 122.04,127.61C124.1,126.8 126.38,126.39 128.9,126.39C132.23,126.39 135.2,126.93 137.8,128.01C140.4,129.08 142.56,130.49 144.26,132.22L138.59,139.67C137.23,138.21 135.56,137.02 133.57,136.1C131.58,135.18 129.66,134.72 127.83,134.72C127.25,134.72 126.72,134.79 126.25,134.93C125.77,135.07 125.4,135.28 125.15,135.56C124.89,135.83 124.77,136.18 124.77,136.6C124.77,137.57 125.24,138.28 126.19,138.73C127.15,139.18 128.46,139.6 130.12,139.98L134.15,140.92C136.03,141.34 137.65,141.86 139.03,142.48C140.4,143.11 141.55,143.85 142.47,144.72C143.39,145.59 144.08,146.59 144.54,147.72C145,148.84 145.23,150.14 145.23,151.6C145.23,153.96 144.62,155.93 143.41,157.51C142.21,159.09 140.57,160.27 138.49,161.05C136.42,161.83 134.07,162.22 131.45,162.22Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
<path
android:pathData="M165.68,159.11C165.12,159.7 164.22,160.36 162.98,161.07C161.65,161.84 159.97,162.22 157.93,162.22C155.75,162.22 154.01,161.83 152.7,161.05C151.39,160.27 150.45,159.22 149.87,157.9C149.29,156.58 149,155.09 149,153.42V143.06H145.43V135.97H149V133.06L158.18,128.89V135.97H164.31V143.06H158.18V152.07C158.18,152.72 158.35,153.23 158.67,153.57C158.99,153.92 159.44,154.1 160.02,154.1C160.6,154.1 161.19,153.9 161.78,153.52C162.28,153.2 162.71,152.79 163.08,152.28C163.27,154.13 163.77,155.84 164.6,157.4C164.92,158.01 165.28,158.58 165.68,159.11Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
<path
android:pathData="M178.29,162.22C175.6,162.22 173.28,161.64 171.32,160.48C169.37,159.31 167.85,157.71 166.78,155.68C165.71,153.65 165.17,151.37 165.17,148.84C165.17,146.27 165.71,143.98 166.78,141.96C167.85,139.95 169.37,138.36 171.32,137.2C173.28,136.03 175.6,135.45 178.29,135.45C181.11,135.45 183.53,136.03 185.56,137.2C187.58,138.36 189.13,139.95 190.2,141.96C191.27,143.98 191.81,146.27 191.81,148.84C191.81,151.37 191.27,153.65 190.2,155.68C189.13,157.71 187.58,159.31 185.56,160.48C183.53,161.64 181.11,162.22 178.29,162.22ZM178.49,154.72C179.27,154.72 179.96,154.54 180.56,154.17C181.15,153.81 181.62,153.2 181.96,152.35C182.3,151.5 182.47,150.33 182.47,148.84C182.47,147.34 182.3,146.17 181.96,145.32C181.62,144.47 181.15,143.86 180.56,143.5C179.96,143.13 179.27,142.95 178.49,142.95C177.71,142.95 177.02,143.13 176.43,143.5C175.83,143.86 175.36,144.47 175.02,145.32C174.68,146.17 174.51,147.34 174.51,148.84C174.51,150.33 174.68,151.5 175.02,152.35C175.36,153.2 175.83,153.81 176.43,154.17C177.02,154.54 177.71,154.72 178.49,154.72Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
<path
android:pathData="M207.59,145.02C207.51,144.59 207.4,144.23 207.26,143.95C206.92,143.26 206.02,142.91 204.56,142.91C203.09,142.91 201.61,143.27 200.12,144C198.62,144.73 197.35,145.7 196.29,146.92L192.21,140.04C193.26,139.07 194.45,138.21 195.78,137.47C197.11,136.72 198.55,136.13 200.12,135.7C201.68,135.26 203.33,135.05 205.07,135.05C208.3,135.05 210.85,135.86 212.72,137.49C214.59,139.12 215.52,141.59 215.52,144.89V152.65C215.52,153.2 215.62,153.59 215.81,153.82C215.99,154.04 216.31,154.16 216.75,154.16H218.23V161.29H213.02C212.07,161.29 211.16,161.13 210.3,160.82C209.43,160.51 208.72,160 208.18,159.29C207.87,158.88 207.64,158.38 207.51,157.8C207.15,158.33 206.71,158.84 206.23,159.31C204.49,160.97 201.96,161.83 199.48,161.86C197.65,161.89 196.1,161.36 194.83,160.35C193.56,159.35 192.92,157.68 192.92,155.35C192.92,153.27 193.54,151.6 194.79,150.33C196.03,149.06 198.04,147.99 200.83,147.13L207.59,145.02ZM207.36,152.33V150.74L203.23,152.23C202.38,152.54 201.81,152.84 201.52,153.12C201.23,153.39 201.09,153.71 201.09,154.05C201.09,154.47 201.25,154.79 201.57,155.02C201.9,155.24 202.39,155.35 203.04,155.35C203.8,155.35 204.45,155.28 205,155.12C205.54,154.96 206,154.73 206.36,154.42C206.72,154.1 206.98,153.71 207.16,153.22C207.25,152.95 207.32,152.65 207.36,152.33Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
<path
android:pathData="M221.08,143.06H217.51V135.97H221.08V133.06L230.26,128.89V135.97H236.38V143.06H230.26V152.07C230.26,152.72 230.43,153.23 230.75,153.57C231.07,153.92 231.52,154.1 232.1,154.1C232.68,154.1 233.26,153.9 233.86,153.52C234.46,153.14 234.96,152.62 235.37,151.96L237.87,158.99C237.32,159.62 236.38,160.31 235.06,161.07C233.73,161.84 232.05,162.22 230.01,162.22C227.83,162.22 226.09,161.83 224.78,161.05C223.47,160.27 222.52,159.22 221.95,157.9C221.37,156.58 221.08,155.09 221.08,153.42V143.06Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
</vector>

View File

@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="57dp" android:viewportHeight="307" android:viewportWidth="1076" android:width="199.7785dp">
<path android:fillColor="#ffffff" android:pathData="M49.2,265.3C19.3,237.4 0.5,197.5 0.5,153.3C0.5,68.9 69.1,0.3 153.6,0.3C238,0.3 306.6,68.9 306.6,153.3C306.6,223.6 259.1,282.9 194.5,300.8C180.1,279.8 167.1,260.6 176.9,229C165,235 157.5,246.9 155.3,259.9C150.9,252.9 146,246.3 140.3,240.3C125.9,225.1 106.2,214.5 97,194.8C92.9,185.5 90,172.2 93.3,162.6C95.7,181.3 104.8,198.5 121.1,208.4C133.5,216 147.4,217.3 161.3,220.2C175.8,223.2 198.9,230.1 213,227.7C224.8,225.6 249.4,212.6 248.8,198.5C248.6,193.7 242.6,185.5 240.5,180.8C237.5,174.6 239.3,173.3 239.6,167C240.5,149.4 235.9,140.6 227.3,126.1C216.9,108.4 205.5,97.8 185.7,90.6C167.6,84 139.8,87.8 139.5,88.1C143.2,92.1 146.6,96.7 147,102.3C139.6,95.4 132.4,88.2 124.1,82.3C105.8,69.5 94.3,70.7 87,93.1C83.2,104.7 80.3,120.5 83.8,132.4C86,139.7 90.4,145.5 95.5,150.9C85.6,149.6 79.6,141 77.4,131.7C52.9,184.7 47.4,210.4 49.2,265.3ZM231.1,214.5L231.1,214.5C227.3,214.6 223.8,212.6 220.9,210.3C219.3,208.9 216.9,207.1 216.6,205.1C215.9,201 219.2,198.1 221.1,196.9C222.8,195.8 224.8,195.2 226.8,194.8C231.1,193.8 235.6,192.9 240,193.7C241.3,194 242.6,194.4 243.7,195.2C244.8,196 245.6,197.2 245.8,198.5C245.9,199.5 245.6,200.5 245.3,201.4C244.5,203.5 243.5,205.6 242.2,207.5C240.9,209.3 239.3,211 237.5,212.3C235.6,213.6 233.4,214.5 231.1,214.5ZM166.1,154.4C181.1,152.4 183,175.7 168.4,176.6C153.9,177.6 152.3,156.3 166.1,154.4ZM115.4,108.1C116.8,111.4 119.6,113.6 122.1,116.1C116.5,117.8 110.8,116.1 105.9,113.3C106.2,118.5 110,123.1 112.9,126.8C108.2,127.9 103.9,126.2 100.7,122.8C100.6,127.6 102.3,131.9 104.7,136C95.4,140.6 91.4,130.9 90.9,123.3C90.4,114.9 93.7,93.8 99.7,87.8C106.4,81 116.9,88.9 122.5,93.4C127.6,97.5 132.4,102.3 136.9,106.9C131,110.8 122.1,110.6 115.4,108.1ZM232,169C228.8,163.3 227.8,161.6 225.8,157.5C224.5,154.7 223.9,151.3 228.6,151.2C237.1,151 240.1,164.6 233.4,169.3C233.3,169.4 233.1,169.5 232.9,169.5C232.5,169.5 232.2,169.3 232,169ZM226.4,114.5C228.8,81.2 228.6,59.7 197.7,89.9C209.3,95.3 219.1,104 226.4,114.5Z"/>
<path android:fillColor="#ffffff" android:pathData="M466.2,253.6C453.5,253.6 441.3,252.3 429.5,249.8C417.7,247.2 406.8,243.4 396.7,238.4C386.5,233.3 377.8,226.9 370.4,219.1L403.1,176.8C408.5,183.4 415,188.9 422.4,193.4C429.8,197.9 437.5,201.2 445.6,203.5C453.7,205.7 461.5,206.9 469.1,206.9C473.6,206.9 477.5,206.5 480.8,205.7C484.1,204.9 486.6,203.7 488.4,202C490.1,200.4 491,198.2 491,195.5C491,192.1 489.8,189.3 487.5,187C485.2,184.7 481.4,182.6 476.1,180.7C470.8,178.9 463.8,177.2 455.1,175.6L435.5,171.8C427.1,170.2 419.3,168.1 411.9,165.2C404.5,162.4 397.9,158.7 392.1,154.1C386.4,149.6 381.9,144 378.7,137.3C375.5,130.7 373.9,122.7 373.9,113.4C373.9,100.2 377.3,89 384.3,80C391.2,70.9 400.5,64.1 412.3,59.5C424.1,54.9 437.2,52.7 451.6,52.7C470.6,52.7 487.6,55.7 502.5,61.7C517.4,67.8 529.7,75.6 539.5,85.4L507.1,127.1C499.3,119 489.7,112.3 478.3,107.1C466.9,102 455.9,99.4 445.4,99.4C442.1,99.4 439.1,99.8 436.4,100.6C433.7,101.3 431.6,102.5 430.1,104.1C428.6,105.6 427.9,107.6 427.9,109.9C427.9,115.3 430.6,119.3 436.1,121.9C441.5,124.4 449,126.7 458.6,128.9L481.6,134.1C492.4,136.5 501.6,139.4 509.5,142.9C517.4,146.4 524,150.6 529.2,155.5C534.5,160.3 538.4,165.9 541.1,172.2C543.7,178.6 545,185.8 545,194C545,207.2 541.6,218.3 534.6,227.1C527.7,236 518.3,242.6 506.5,247C494.6,251.4 481.2,253.6 466.2,253.6Z"/>
<path android:fillColor="#ffffff" android:pathData="M662.1,236.1C658.9,239.5 653.8,243.1 646.6,247.1C639,251.4 629.4,253.6 617.7,253.6C605.3,253.6 595.3,251.4 587.8,247C580.3,242.6 574.9,236.7 571.6,229.3C568.3,221.9 566.6,213.6 566.6,204.2L566.6,146.1L546.2,146.1L546.2,106.4L566.6,106.4L566.6,90L619.2,66.7L619.2,106.4L654.2,106.4L654.2,146.1L619.2,146.1L619.2,196.6C619.2,200.3 620.1,203.1 622,205.1C623.8,207 626.4,208 629.7,208C633,208 636.4,206.9 639.8,204.8C642.6,203 645.1,200.7 647.2,197.8C648.3,208.2 651.2,217.8 655.9,226.6C657.7,230 659.8,233.2 662.1,236.1Z"/>
<path android:fillColor="#ffffff" android:pathData="M734.2,253.6C718.9,253.6 705.6,250.3 694.4,243.8C683.2,237.3 674.5,228.3 668.4,216.9C662.3,205.5 659.2,192.7 659.2,178.5C659.2,164.1 662.3,151.3 668.4,140C674.5,128.7 683.2,119.8 694.4,113.3C705.6,106.7 718.9,103.5 734.2,103.5C750.4,103.5 764.3,106.7 775.9,113.3C787.4,119.8 796.3,128.7 802.4,140C808.6,151.3 811.6,164.1 811.6,178.5C811.6,192.7 808.6,205.5 802.4,216.9C796.3,228.3 787.4,237.3 775.9,243.8C764.3,250.3 750.4,253.6 734.2,253.6ZM735.4,211.5C739.9,211.5 743.8,210.5 747.2,208.5C750.7,206.4 753.3,203 755.3,198.2C757.2,193.5 758.2,186.9 758.2,178.5C758.2,170.1 757.2,163.6 755.3,158.8C753.3,154 750.7,150.6 747.2,148.6C743.8,146.5 739.9,145.5 735.4,145.5C730.9,145.5 727,146.5 723.6,148.6C720.2,150.6 717.5,154 715.6,158.8C713.6,163.6 712.6,170.1 712.6,178.5C712.6,186.9 713.6,193.5 715.6,198.2C717.5,203 720.2,206.4 723.6,208.5C727,210.5 730.9,211.5 735.4,211.5Z"/>
<path android:fillColor="#ffffff" android:pathData="M902,157.1C901.5,154.7 900.9,152.7 900.1,151.1C898.1,147.2 893,145.3 884.6,145.3C876.2,145.3 867.7,147.3 859.2,151.4C850.6,155.5 843.3,161 837.3,167.8L813.9,129.2C820,123.8 826.8,119 834.4,114.8C841.9,110.6 850.2,107.3 859.2,104.8C868.1,102.4 877.6,101.2 887.5,101.2C906,101.2 920.6,105.8 931.3,114.9C942,124.1 947.4,137.9 947.4,156.4L947.4,199.9C947.4,203 947.9,205.2 949,206.5C950,207.7 951.8,208.4 954.4,208.4L962.8,208.4L962.8,248.4L933.1,248.4C927.6,248.4 922.4,247.5 917.4,245.7C912.5,244 908.4,241.1 905.3,237.1C903.5,234.8 902.2,232 901.5,228.8C899.4,231.8 896.9,234.6 894.2,237.2C884.2,246.6 869.7,251.4 855.5,251.6C845.1,251.7 836.2,248.8 828.9,243.1C821.6,237.5 818,228.1 818,215.1C818,203.4 821.6,194 828.7,186.9C835.8,179.8 847.3,173.8 863.3,168.9L902,157.1ZM900.6,198.1L900.6,189.2L877,197.6C872.1,199.3 868.9,201 867.2,202.5C865.6,204.1 864.7,205.8 864.7,207.8C864.7,210.1 865.7,211.9 867.5,213.2C869.4,214.4 872.2,215.1 875.9,215.1C880.2,215.1 884,214.6 887.1,213.8C890.2,212.9 892.8,211.6 894.9,209.8C897,208.1 898.5,205.8 899.5,203.1C900,201.6 900.4,199.9 900.6,198.1Z"/>
<path android:fillColor="#ffffff" android:pathData="M979.2,146.1L958.7,146.1L958.7,106.4L979.2,106.4L979.2,90L1031.7,66.7L1031.7,106.4L1066.8,106.4L1066.8,146.1L1031.7,146.1L1031.7,196.6C1031.7,200.3 1032.6,203.1 1034.5,205.1C1036.3,207 1038.9,208 1042.2,208C1045.5,208 1048.9,206.9 1052.3,204.8C1055.7,202.7 1058.6,199.7 1060.9,196L1075.2,235.5C1072.1,239 1066.8,242.9 1059.2,247.1C1051.6,251.4 1041.9,253.6 1030.3,253.6C1017.8,253.6 1007.8,251.4 1000.3,247C992.8,242.6 987.4,236.7 984.1,229.3C980.8,221.9 979.2,213.6 979.2,204.2L979.2,146.1Z"/>
</vector>

View File

@ -1,15 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="118dp" android:viewportHeight="301" android:viewportWidth="510" android:width="199.93355dp"> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="57dp" android:viewportHeight="202" android:viewportWidth="706" android:width="199.21782dp">
<path android:fillColor="#ffffff" android:fillType="nonZero" android:pathData="M127.7,224.75l0,-155.81l-26.16,2.27l0,-35.54l93.63,-8.14l-0,35.54l-26.16,2.27l-0,155.81l-41.31,3.59Z"/> <path android:fillColor="#ffffff" android:pathData="M96.17,201.29C83.52,201.29 71.3,200.02 59.52,197.49C47.75,194.95 36.8,191.16 26.67,186.1C16.55,181.04 7.79,174.61 0.39,166.83L33.09,124.49C38.55,131.1 44.97,136.65 52.37,141.13C59.77,145.6 67.51,148.96 75.58,151.2C83.67,153.44 91.5,154.56 99.09,154.56C103.57,154.56 107.46,154.17 110.77,153.39C114.08,152.61 116.61,151.4 118.36,149.74C120.12,148.09 120.99,145.9 120.99,143.17C120.99,139.86 119.82,137.04 117.49,134.71C115.15,132.37 111.35,130.27 106.1,128.43C100.84,126.58 93.83,124.87 85.07,123.32L65.51,119.52C57.14,117.96 49.25,115.77 41.85,112.95C34.46,110.12 27.89,106.43 22.14,101.85C16.4,97.27 11.92,91.68 8.71,85.06C5.5,78.44 3.89,70.46 3.89,61.12C3.89,47.88 7.35,36.73 14.26,27.68C21.17,18.63 30.52,11.81 42.29,7.24C54.07,2.66 67.17,0.38 81.57,0.38C100.65,0.38 117.63,3.39 132.53,9.43C147.42,15.46 159.74,23.35 169.47,33.08L137.05,74.84C129.27,66.67 119.68,60 108.29,54.84C96.9,49.68 85.95,47.1 75.44,47.1C72.13,47.1 69.11,47.49 66.38,48.27C63.66,49.05 61.57,50.21 60.11,51.77C58.65,53.33 57.92,55.28 57.92,57.61C57.92,63.06 60.64,67.05 66.09,69.59C71.55,72.11 79.04,74.45 88.58,76.59L111.65,81.85C122.36,84.19 131.65,87.11 139.53,90.61C147.42,94.12 153.99,98.3 159.25,103.17C164.5,108.03 168.44,113.63 171.07,119.96C173.7,126.28 175.01,133.54 175.01,141.71C175.01,154.95 171.56,166 164.65,174.86C157.74,183.71 148.35,190.34 136.47,194.72C124.59,199.1 111.16,201.29 96.17,201.29Z"/>
<path android:fillColor="#ffffff" android:fillType="nonZero" android:pathData="M251.63,216.71c-8.81,0.77 -16.8,-0.73 -24.23,-4.45c-7.44,-3.45 -13.22,-8.69 -17.63,-15.69c-4.13,-6.75 -6.33,-14.48 -6.33,-23.5l0,-101.14c0,-9.02 2.2,-17.14 6.33,-24.88c4.41,-7.49 10.19,-13.73 17.63,-18.75c7.44,-4.75 15.42,-7.63 24.23,-8.39c8.81,-0.77 16.8,0.73 24.23,4.18c7.44,3.73 13.22,8.97 17.35,15.71c4.41,7 6.61,14.73 6.61,23.75l-0,101.14c-0,9.02 -2.2,17.14 -6.61,24.63c-4.13,7.74 -9.91,13.98 -17.35,18.73c-7.44,5.02 -15.42,7.9 -24.23,8.67ZM251.63,180.63c1.93,-0.17 3.58,-1.13 4.96,-2.62c1.38,-1.49 1.93,-2.9 1.93,-4.81l0,-111.26c0,-1.91 -0.55,-3.51 -1.93,-4.75c-1.38,-1.25 -3.03,-1.92 -4.96,-1.76c-1.93,0.17 -3.86,1.16 -5.23,2.64c-1.38,1.49 -1.93,3.17 -1.93,5.09l-0,111.26c-0,1.91 0.55,3.51 1.93,4.75c1.38,1.25 3.3,1.63 5.23,1.46Z"/> <path android:fillColor="#ffffff" android:pathData="M292.08,183.85C288.9,187.18 283.75,190.85 276.64,194.86C269.04,199.14 259.41,201.29 247.73,201.29C235.27,201.29 225.29,199.1 217.8,194.72C210.3,190.34 204.9,184.44 201.59,177.05C198.28,169.65 196.62,161.28 196.62,151.93L196.62,93.82L176.18,93.82L176.18,54.11L196.62,54.11L196.62,37.76L249.19,14.39L249.19,54.11L284.23,54.11L284.23,93.82L249.19,93.82L249.19,144.34C249.19,148.04 250.12,150.86 251.96,152.81C253.81,154.76 256.39,155.73 259.7,155.73C263.01,155.73 266.37,154.66 269.77,152.52C272.62,150.73 275.08,148.41 277.18,145.53C278.27,155.95 281.17,165.53 285.89,174.27C287.72,177.68 289.79,180.88 292.08,183.85Z"/>
<path android:fillColor="#ffffff" android:fillType="nonZero" android:pathData="M354.35,207.78c-8.81,0.77 -16.52,-0.75 -22.86,-4.57c-6.61,-3.53 -11.57,-8.84 -15.15,-15.9c-3.58,-6.8 -5.23,-14.58 -5.23,-23.6l0,-26.79c0,-8.75 2.2,-16.87 6.61,-24.63c4.13,-7.74 9.91,-13.98 17.35,-19c7.44,-4.75 15.42,-7.63 24.23,-8.39l7.44,-0.65l0,-34.99c0,-1.91 -0.83,-3.48 -2.2,-4.73c-1.38,-1.25 -3.3,-1.9 -5.23,-1.73c-1.93,0.17 -3.58,1.13 -4.96,2.62c-1.38,1.49 -2.2,3.2 -2.2,5.11l-0,27.88l-41.03,3.57l0,-19.41c0,-9.02 2.2,-17.14 6.61,-24.63c4.13,-7.74 9.91,-13.98 17.35,-18.73c7.44,-5.02 15.42,-7.9 24.23,-8.67c9.09,-0.79 17.07,0.7 24.51,4.43c7.16,3.48 12.94,8.72 17.35,15.71c4.13,6.75 6.33,14.48 6.33,23.5l-0,146.25l-28.92,2.51l0,-9.57l-2.75,0.24c-1.93,4.27 -4.96,7.54 -9.09,10.08c-4.13,2.27 -8.26,3.73 -12.39,4.08ZM359.3,169.36c1.93,-0.17 3.86,-0.88 5.23,-2.37c1.38,-1.49 2.2,-3.47 2.2,-5.39l0,-39.09l-7.44,0.65c-1.93,0.17 -3.58,1.13 -4.96,2.62c-1.38,1.49 -2.2,3.2 -2.2,5.11l-0,31.98c-0,1.91 0.83,3.76 2.2,5c1.38,1.25 3.03,1.65 4.96,1.48Z"/> <path android:fillColor="#ffffff" android:pathData="M364.25,201.29C348.87,201.29 335.58,198.02 324.38,191.5C313.19,184.98 304.53,176.03 298.4,164.64C292.26,153.25 289.2,140.45 289.2,126.24C289.2,111.83 292.26,98.98 298.4,87.69C304.53,76.4 313.19,67.49 324.38,60.97C335.58,54.45 348.87,51.19 364.25,51.19C380.41,51.19 394.28,54.45 405.86,60.97C417.45,67.49 426.3,76.4 432.43,87.69C438.56,98.98 441.63,111.83 441.63,126.24C441.63,140.45 438.56,153.25 432.43,164.64C426.3,176.03 417.45,184.98 405.86,191.5C394.28,198.02 380.41,201.29 364.25,201.29ZM365.41,159.24C369.89,159.24 373.84,158.21 377.24,156.17C380.65,154.12 383.33,150.71 385.27,145.95C387.22,141.18 388.19,134.61 388.19,126.24C388.19,117.86 387.22,111.29 385.27,106.53C383.33,101.75 380.65,98.35 377.24,96.31C373.84,94.26 369.89,93.24 365.41,93.24C360.94,93.24 357,94.26 353.59,96.31C350.18,98.35 347.51,101.75 345.56,106.53C343.61,111.29 342.64,117.86 342.64,126.24C342.64,134.61 343.61,141.18 345.56,145.95C347.51,150.71 350.18,154.12 353.59,156.17C357,158.21 360.94,159.24 365.41,159.24Z"/>
<path android:fillColor="#ffffff" android:fillType="nonZero" android:pathData="M441.92,197.44l0,-155.81l-26.16,2.27l0,-35.54l93.63,-8.14l-0,35.54l-26.16,2.27l-0,155.81l-41.31,3.59Z"/> <path android:fillColor="#ffffff" android:pathData="M531.95,104.83C531.49,102.41 530.85,100.42 530.06,98.84C528.12,94.94 522.96,93 514.58,93C506.21,93 497.75,95.04 489.18,99.13C480.62,103.22 473.32,108.67 467.28,115.48L443.91,76.94C449.95,71.48 456.76,66.66 464.36,62.48C471.95,58.3 480.22,54.98 489.18,52.55C498.14,50.12 507.57,48.9 517.5,48.9C536,48.9 550.6,53.48 561.31,62.63C572.02,71.77 577.37,85.6 577.37,104.1L577.37,147.61C577.37,150.72 577.9,152.91 578.97,154.18C580.05,155.44 581.85,156.07 584.38,156.07L592.84,156.07L592.84,196.08L563.06,196.08C557.61,196.08 552.4,195.2 547.43,193.45C542.47,191.7 538.44,188.83 535.32,184.84C533.52,182.53 532.24,179.76 531.48,176.52C529.44,179.49 526.94,182.34 524.16,184.95C514.23,194.28 499.72,199.09 485.54,199.29C475.07,199.44 466.19,196.47 458.91,190.82C451.64,185.18 448,175.83 448,162.79C448,151.11 451.56,141.71 458.66,134.61C465.77,127.5 477.3,121.52 493.27,116.65L531.95,104.83ZM530.64,145.83L530.64,136.88L506.99,145.27C502.13,147.02 498.87,148.67 497.21,150.23C495.56,151.79 494.73,153.54 494.73,155.49C494.73,157.83 495.66,159.63 497.52,160.89C499.39,162.15 502.18,162.79 505.92,162.79C510.23,162.79 513.96,162.35 517.1,161.48C520.24,160.6 522.84,159.29 524.9,157.53C526.96,155.78 528.48,153.54 529.46,150.82C530.01,149.31 530.4,147.64 530.64,145.83Z"/>
<path android:fillColor="#ffffff" android:pathData="M0.66,91.88c-0.02,-0.41 -0.05,-0.82 -0.05,-1.23l0,-1.09c0,-8.93 2.14,-17.18 6.42,-24.75c4.28,-7.57 10.07,-13.81 17.36,-18.73c7.29,-4.92 15.31,-7.75 24.06,-8.51c8.93,-0.78 16.99,0.66 24.19,4.32c7.2,3.66 12.94,8.9 17.22,15.72c4.28,6.83 6.42,14.7 6.42,23.63l-0,19.41l-40.46,3.52l0,-21.05c0,-2 -0.73,-3.67 -2.19,-5c-1.46,-1.33 -3.19,-1.91 -5.19,-1.74c-1.82,0.16 -3.46,1.03 -4.92,2.61c-1.46,1.58 -2.19,3.38 -2.19,5.38c-0,0.07 -0,0.11 0.02,0.16c-0,0 -0.18,12.04 -0.18,25.21c-0,7.24 7.7,5.44 7.7,5.44l11.46,-1c17.56,-1.53 35.95,15.69 35.95,45.85c-0,9.18 -0,22.35 -0,22.35c-0,8.93 -2.14,17.18 -6.42,24.75c-4.28,7.57 -10.02,13.81 -17.22,18.72c-7.2,4.91 -15.26,7.75 -24.19,8.53c-8.75,0.76 -16.77,-0.68 -24.06,-4.33c-7.29,-3.65 -13.08,-8.89 -17.36,-15.71c-4.28,-6.83 -6.42,-14.7 -6.42,-23.63l0,-21.87l40.34,-3.51l0.39,0.81l-0,22.39c-0,1.82 0.68,3.45 2.05,4.88c1.37,1.43 3.05,2.06 5.06,1.88c2,-0.17 3.96,-0.91 5.19,-2.77c1.96,-2.9 2,-10.04 2.14,-11.44c0.21,-2.07 0.36,-8.03 0.36,-21.19c0,-6.93 -7.27,-5.59 -7.27,-5.59l-11.46,1c-17.56,1.53 -36.38,-12.05 -36.38,-42.21c0,-9.2 -0.39,-21.2 -0.39,-21.2Z"/> <path android:fillColor="#ffffff" android:pathData="M609.15,93.82L588.71,93.82L588.71,54.11L609.15,54.11L609.15,37.76L661.72,14.39L661.72,54.11L696.76,54.11L696.76,93.82L661.72,93.82L661.72,144.34C661.72,148.04 662.65,150.86 664.49,152.81C666.34,154.76 668.92,155.73 672.23,155.73C675.54,155.73 678.9,154.66 682.31,152.52C685.72,150.38 688.58,147.46 690.92,143.76L705.23,183.18C702.12,186.68 696.76,190.57 689.17,194.86C681.58,199.14 671.94,201.29 660.26,201.29C647.8,201.29 637.83,199.1 630.33,194.72C622.83,190.34 617.43,184.44 614.12,177.05C610.81,169.65 609.15,161.28 609.15,151.93L609.15,93.82Z"/>
<path android:fillColor="#ffffff" android:pathData="M0.6,259.23l482.64,-41.95l-0,41.35l-482.64,41.95z"/>
</vector> </vector>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/> <background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/> <foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_monochrome"/> <monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon> </adaptive-icon>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/> <background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/> <foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_monochrome"/> <monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon> </adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -1,10 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources xmlns:tools="http://schemas.android.com/tools">
<style name="Theme.Stoat" parent="Theme.Material3.DayNight.NoActionBar"> <style name="Theme.Stoat" parent="Theme.Material3.DayNight.NoActionBar">
<item name="android:statusBarColor">@android:color/transparent</item> <item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item> <item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:windowSplashScreenBackground">@color/background</item> <item name="android:windowSplashScreenBackground">@color/splashscreen_background</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item> <item name="android:windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
<item name="android:windowSplashScreenBehavior" tools:targetApi="33">icon_preferred</item>
</style> </style>
</resources> </resources>

View File

@ -2,7 +2,7 @@
<resources> <resources>
<style name="Theme.Stoat.Starting" parent="Theme.SplashScreen"> <style name="Theme.Stoat.Starting" parent="Theme.SplashScreen">
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item> <item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
<item name="windowSplashScreenBackground">@color/splashscreen_background</item> <item name="windowSplashScreenBackground">@color/splashscreen_background</item>
<item name="android:windowSplashScreenBehavior">icon_preferred</item> <item name="android:windowSplashScreenBehavior">icon_preferred</item>
<item name="postSplashScreenTheme">@style/Theme.Stoat</item> <item name="postSplashScreenTheme">@style/Theme.Stoat</item>

View File

@ -2,6 +2,6 @@
<resources> <resources>
<color name="primary">#FFFF005C</color> <color name="primary">#FFFF005C</color>
<color name="background">#FF131722</color> <color name="background">#FF131722</color>
<color name="splashscreen_background">#FFFFFFFF</color> <color name="splashscreen_background">#FF2A233A</color>
<color name="foreground">#FF000000</color> <color name="foreground">#FF000000</color>
</resources> </resources>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#282038</color>
</resources>