mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
chore: fix spotube logo color on light mode
This commit is contained in:
parent
d2827a52d3
commit
f23a078b64
@ -35,6 +35,7 @@ class Sidebar extends HookConsumerWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context, WidgetRef ref) {
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
|
final ThemeData(:colorScheme) = Theme.of(context);
|
||||||
final mediaQuery = MediaQuery.of(context);
|
final mediaQuery = MediaQuery.of(context);
|
||||||
|
|
||||||
final layoutMode =
|
final layoutMode =
|
||||||
@ -66,13 +67,14 @@ class Sidebar extends HookConsumerWidget {
|
|||||||
final navigationButtons = [
|
final navigationButtons = [
|
||||||
NavigationLabel(
|
NavigationLabel(
|
||||||
child: mediaQuery.lgAndUp
|
child: mediaQuery.lgAndUp
|
||||||
? const DefaultTextStyle(
|
? DefaultTextStyle(
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontFamily: "Cookie",
|
fontFamily: "Cookie",
|
||||||
fontSize: 30,
|
fontSize: 30,
|
||||||
letterSpacing: 1.8,
|
letterSpacing: 1.8,
|
||||||
|
color: colorScheme.foreground,
|
||||||
),
|
),
|
||||||
child: Text("Spotube"),
|
child: const Text("Spotube"),
|
||||||
)
|
)
|
||||||
: const Text(""),
|
: const Text(""),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user