2023-07-03 12:43:33 +00:00
|
|
|
import 'package:cake_wallet/themes/extensions/cake_scrollbar_theme.dart';
|
2020-12-15 19:43:50 +00:00
|
|
|
import 'package:cake_wallet/themes/theme_base.dart';
|
2020-12-15 19:30:16 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
import 'package:cake_wallet/palette.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class DarkTheme extends ThemeBase {
|
2022-10-12 17:09:57 +00:00
|
|
|
DarkTheme({required int raw}) : super(raw: raw);
|
2020-12-15 19:30:16 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String get title => S.current.dark_theme;
|
|
|
|
@override
|
|
|
|
ThemeType get type => ThemeType.dark;
|
2023-06-30 16:55:22 +00:00
|
|
|
@override
|
|
|
|
Brightness get brightness => Brightness.dark;
|
|
|
|
@override
|
|
|
|
Color get backgroundColor => PaletteDark.backgroundColor;
|
|
|
|
@override
|
|
|
|
Color get primaryColor => Palette.blueCraiola;
|
|
|
|
@override
|
|
|
|
Color get primaryTextColor => Colors.white;
|
|
|
|
@override
|
|
|
|
Color get containerColor => PaletteDark.nightBlue;
|
2023-07-03 12:37:29 +00:00
|
|
|
@override
|
|
|
|
Color get dialogBackgroundColor => PaletteDark.darkNightBlue;
|
2020-12-15 19:30:16 +00:00
|
|
|
|
2023-07-03 12:43:33 +00:00
|
|
|
@override
|
|
|
|
CakeScrollbarTheme get scrollbarTheme => CakeScrollbarTheme(
|
|
|
|
thumbColor: PaletteDark.wildBlueGrey, trackColor: PaletteDark.violetBlue);
|
|
|
|
|
2023-06-30 16:55:22 +00:00
|
|
|
@override
|
|
|
|
ThemeData get themeData => super.themeData.copyWith(
|
2020-12-15 19:30:16 +00:00
|
|
|
indicatorColor: PaletteDark.cyanBlue, // page indicator
|
|
|
|
hoverColor: PaletteDark.cyanBlue, // amount hint text (receive page)
|
|
|
|
dividerColor: PaletteDark.dividerColor,
|
|
|
|
hintColor: PaletteDark.pigeonBlue, // menu
|
2023-07-03 12:17:47 +00:00
|
|
|
dialogTheme: super
|
|
|
|
.themeData
|
|
|
|
.dialogTheme
|
|
|
|
.copyWith(backgroundColor: PaletteDark.nightBlue),
|
2020-12-15 19:30:16 +00:00
|
|
|
textTheme: TextTheme(
|
2023-05-24 23:19:51 +00:00
|
|
|
// title -> titleLarge
|
|
|
|
titleLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.wildBlue, // sync_indicator text
|
2023-05-24 23:19:51 +00:00
|
|
|
backgroundColor:
|
|
|
|
PaletteDark.lightNightBlue, // synced sync_indicator
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.oceanBlue // not synced sync_indicator
|
|
|
|
),
|
|
|
|
bodySmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.orangeYellow, // not synced light
|
|
|
|
decorationColor: PaletteDark.wildBlue, // filter icon
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
labelSmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.oceanBlue, // filter button
|
|
|
|
backgroundColor: PaletteDark.darkCyanBlue, // date section row
|
2023-05-24 23:19:51 +00:00
|
|
|
decorationColor: PaletteDark
|
|
|
|
.wildNightBlue // icons (transaction and trade rows)
|
|
|
|
),
|
|
|
|
// subhead -> titleMedium
|
|
|
|
titleMedium: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.nightBlue, // address button border
|
|
|
|
decorationColor: PaletteDark.lightBlueGrey, // copy button (qr widget)
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// headline -> headlineSmall
|
|
|
|
headlineSmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.lightBlueGrey, // qr code
|
|
|
|
decorationColor: PaletteDark.darkGrey, // bottom border of amount (receive page)
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// display1 -> headlineMedium
|
|
|
|
headlineMedium: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // icons color (receive page)
|
|
|
|
decorationColor: PaletteDark.distantNightBlue, // icons background (receive page)
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// display2 -> displaySmall
|
|
|
|
displaySmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // text color of tiles (receive page)
|
2023-05-24 23:19:51 +00:00
|
|
|
decorationColor:
|
|
|
|
PaletteDark.nightBlue // background of tiles (receive page)
|
|
|
|
),
|
|
|
|
// display3 -> displayMedium
|
|
|
|
displayMedium: TextStyle(
|
|
|
|
color: Palette
|
|
|
|
.blueCraiola, // text color of current tile (receive page)
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.lightOceanBlue // background of current tile (receive page)
|
|
|
|
),
|
|
|
|
// display4 -> displayLarge
|
|
|
|
displayLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // text color of tiles (account list)
|
2023-05-24 23:19:51 +00:00
|
|
|
decorationColor: PaletteDark
|
|
|
|
.darkOceanBlue // background of tiles (account list)
|
|
|
|
),
|
|
|
|
// body2 -> bodyLarge
|
|
|
|
bodyLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.deepPurpleBlue, // menu header
|
|
|
|
decorationColor: PaletteDark.deepPurpleBlue, // menu background
|
|
|
|
)
|
|
|
|
),
|
|
|
|
primaryTextTheme: TextTheme(
|
2023-05-24 23:19:51 +00:00
|
|
|
// title -> titleLarge
|
|
|
|
titleLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // title color
|
|
|
|
backgroundColor: PaletteDark.darkOceanBlue // textfield underline
|
2023-05-24 23:19:51 +00:00
|
|
|
),
|
|
|
|
bodySmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.darkCyanBlue, // secondary text
|
|
|
|
decorationColor: PaletteDark.darkOceanBlue // menu divider
|
2023-05-24 23:19:51 +00:00
|
|
|
),
|
|
|
|
labelSmall: TextStyle(
|
|
|
|
color:
|
|
|
|
PaletteDark.lightBlueGrey, // transaction/trade details titles
|
2020-12-15 19:30:16 +00:00
|
|
|
decorationColor: Colors.grey, // placeholder
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// subhead -> titleMedium
|
|
|
|
titleMedium: TextStyle(
|
|
|
|
color:
|
|
|
|
PaletteDark.darkNightBlue, // first gradient color (send page)
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.darkNightBlue // second gradient color (send page)
|
|
|
|
),
|
|
|
|
// headline -> headlineSmall
|
|
|
|
headlineSmall: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.lightVioletBlue, // text field border color (send page)
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.darkCyanBlue, // text field hint color (send page)
|
2020-12-15 19:30:16 +00:00
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// display1 -> headlineMedium
|
|
|
|
headlineMedium: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.buttonNightBlue, // text field button color (send page)
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.gray // text field button icon color (send page)
|
|
|
|
),
|
|
|
|
// display2 -> displaySmall
|
|
|
|
displaySmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // estimated fee (send page)
|
2023-05-24 23:19:51 +00:00
|
|
|
backgroundColor:
|
|
|
|
PaletteDark.cyanBlue, // dot color for indicator on send page
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.darkCyanBlue // template dotted border (send page)
|
|
|
|
),
|
|
|
|
// display3 -> displayMedium
|
|
|
|
displayMedium: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.darkCyanBlue, // template new text (send page)
|
2023-05-24 23:19:51 +00:00
|
|
|
backgroundColor:
|
|
|
|
Colors.white, // active dot color for indicator on send page
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.darkVioletBlue // template background color (send page)
|
|
|
|
),
|
|
|
|
// display4 -> displayLarge
|
|
|
|
displayLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.cyanBlue, // template title (send page)
|
2023-05-24 23:19:51 +00:00
|
|
|
backgroundColor:
|
|
|
|
Colors.white, // icon color on order row (moonpay)
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.darkCyanBlue // receive amount text (exchange page)
|
|
|
|
),
|
|
|
|
// subtitle -> titleSmall
|
|
|
|
titleSmall: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.wildVioletBlue, // first gradient color top panel (exchange page)
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.wildVioletBlue // second gradient color top panel (exchange page)
|
|
|
|
),
|
|
|
|
// body1 -> bodyMedium
|
|
|
|
bodyMedium: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.darkNightBlue, // first gradient color bottom panel (exchange page)
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.darkNightBlue, // second gradient color bottom panel (exchange page)
|
|
|
|
),
|
|
|
|
// body2 -> bodyLarge
|
|
|
|
bodyLarge: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.blueGrey, // text field border on top panel (exchange page)
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.moderateVioletBlue, // text field border on bottom panel (exchange page)
|
2020-12-15 19:30:16 +00:00
|
|
|
backgroundColor: Palette.alizarinRed // alert left button text
|
|
|
|
)
|
|
|
|
),
|
|
|
|
focusColor: PaletteDark.moderateBlue, // text field button (exchange page)
|
|
|
|
accentTextTheme: TextTheme(
|
2023-05-24 23:19:51 +00:00
|
|
|
// title -> titleLarge
|
|
|
|
titleLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
backgroundColor: PaletteDark.dividerColor, // picker divider
|
2023-05-24 23:19:51 +00:00
|
|
|
),
|
|
|
|
bodySmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
backgroundColor: PaletteDark.deepVioletBlue, // button background (confirm exchange)
|
|
|
|
decorationColor: Palette.darkLavender, // text color (information page)
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// subtitle -> titleSmall
|
|
|
|
titleSmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // QR code (exchange trade page)
|
2023-05-24 23:19:51 +00:00
|
|
|
backgroundColor:
|
|
|
|
PaletteDark.deepVioletBlue, // divider (exchange trade page)
|
|
|
|
decorationColor: Colors
|
|
|
|
.white // crete new wallet button background (wallet list page)
|
|
|
|
),
|
|
|
|
// headline -> headlineSmall
|
|
|
|
headlineSmall: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.distantBlue, // first gradient color of wallet action buttons (wallet list page)
|
|
|
|
decorationColor: Palette
|
|
|
|
.darkBlueCraiola // restore wallet button text color (wallet list page)
|
|
|
|
),
|
|
|
|
// subhead -> titleMedium
|
|
|
|
titleMedium: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: Colors.white, // titles color (filter widget)
|
2023-05-24 23:19:51 +00:00
|
|
|
backgroundColor:
|
|
|
|
PaletteDark.darkOceanBlue, // divider color (filter widget)
|
|
|
|
decorationColor: PaletteDark.wildVioletBlue
|
|
|
|
.withOpacity(0.3) // checkbox background (filter widget)
|
|
|
|
),
|
|
|
|
labelSmall: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.wildVioletBlue, // checkbox bounds (filter widget)
|
|
|
|
decorationColor: PaletteDark.darkCyanBlue, // menu subname
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
// display1 -> headlineMedium
|
|
|
|
headlineMedium: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.deepPurpleBlue, // first gradient color (menu header)
|
|
|
|
decorationColor: PaletteDark
|
|
|
|
.deepPurpleBlue, // second gradient color(menu header)
|
2020-12-15 19:30:16 +00:00
|
|
|
backgroundColor: Colors.white // active dot color
|
2023-05-24 23:19:51 +00:00
|
|
|
),
|
|
|
|
// display2 -> displaySmall
|
|
|
|
displaySmall: TextStyle(
|
|
|
|
color: PaletteDark
|
|
|
|
.nightBlue, // action button color (address text field)
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.darkCyanBlue, // hint text (seed widget)
|
2020-12-15 19:30:16 +00:00
|
|
|
backgroundColor: PaletteDark.cyanBlue // text on balance page
|
2023-05-24 23:19:51 +00:00
|
|
|
),
|
|
|
|
// display3 -> displayMedium
|
|
|
|
displayMedium: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.cyanBlue, // hint text (new wallet page)
|
2023-05-24 23:19:51 +00:00
|
|
|
decorationColor:
|
|
|
|
PaletteDark.darkGrey, // underline (new wallet page)
|
|
|
|
backgroundColor:
|
|
|
|
Colors.white // menu, icons, balance (dashboard page)
|
|
|
|
),
|
|
|
|
// display4 -> displayLarge
|
|
|
|
displayLarge: TextStyle(
|
|
|
|
color:
|
|
|
|
PaletteDark.deepVioletBlue, // switch background (settings page)
|
|
|
|
backgroundColor:
|
|
|
|
Colors.white, // icon color on support page (moonpay, github)
|
|
|
|
decorationColor:
|
|
|
|
PaletteDark.lightBlueGrey // hint text (exchange page)
|
|
|
|
),
|
|
|
|
// body1 -> bodyMedium
|
|
|
|
bodyMedium: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
color: PaletteDark.indicatorVioletBlue, // indicators (PIN code)
|
|
|
|
decorationColor: PaletteDark.lightPurpleBlue, // switch (PIN code)
|
2023-05-24 23:19:51 +00:00
|
|
|
),
|
|
|
|
// body2 -> bodyLarge
|
|
|
|
bodyLarge: TextStyle(
|
2020-12-15 19:30:16 +00:00
|
|
|
backgroundColor: PaletteDark.granite // keyboard bar color
|
|
|
|
),
|
|
|
|
),
|
2023-05-24 23:19:51 +00:00
|
|
|
);
|
|
|
|
}
|