flutter-woocommerce-app/LabelStoreMax/lib/resources/themes/styles/theme_styles.dart
2021-10-11 23:41:22 +01:00

33 lines
797 B
Dart

import 'package:flutter/material.dart';
/// Interface for your base styles.
/// Add more styles here and then implement in
/// light_theme_colors.dart and dark_theme_colors.dart.
abstract class BaseStyles {
// general
Color get background;
Color get backgroundContainer;
Color get primaryContent;
Color get primaryAccent;
// app bar
Color get appBarBackground;
Color get appBarPrimaryContent;
// buttons
Color get buttonBackground;
Color get buttonPrimaryContent;
// bottom tab bar
Color get bottomTabBarBackground;
// bottom tab bar - icons
Color get bottomTabBarIconSelected;
Color get bottomTabBarIconUnselected;
// bottom tab bar - label
Color get bottomTabBarLabelUnselected;
Color get bottomTabBarLabelSelected;
Color get inputPrimaryContent;
}