128 lines
3.5 KiB
Dart
128 lines
3.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract class OldTheme {
|
|
static const textTheme = TextTheme(
|
|
displayLarge: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
displayMedium: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
displaySmall: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
headlineLarge: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
headlineMedium: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
headlineSmall: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
titleLarge: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
titleMedium: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
titleSmall: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
bodyLarge: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
bodyMedium: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
bodySmall: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
labelLarge: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
labelMedium: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
labelSmall: TextStyle(
|
|
fontFamilyFallback: ['NotoKufi'],
|
|
),
|
|
);
|
|
|
|
static const competitivenessPurple = Color.fromARGB(255, 239, 239, 251);
|
|
static const defenceYellow = Color.fromARGB(255, 245, 242, 234);
|
|
static const softPowerBlue = Color.fromARGB(255, 239, 248, 252);
|
|
static const notificationRed = Color(0xffFF274E);
|
|
static const primary = Color(0xffDEB65D);
|
|
static const economyDark = Color(0xff985400);
|
|
static const mainColor = Color(0xff009DDA);
|
|
static const darkColor = Color(0xff333333);
|
|
static const lightColor = Color(0xff757575);
|
|
static const lightGrey1 = Color(0xffE8E8E8);
|
|
static const lightGrey2 = Color(0xffC3C3C3);
|
|
static const pageBG = Color(0xffF9F8FF);
|
|
static const errorBg = Color(0xffdc3545);
|
|
static const private = Color(0xffD88951);
|
|
static const public = Color(0xffB08B45);
|
|
static const female = Color(0xffD086A7);
|
|
static const male = Color(0xff6097CD);
|
|
|
|
static final economy = MaterialColor(
|
|
const Color.fromARGB(255, 232, 151, 53).value,
|
|
const {
|
|
000: Color(0xffE89735),
|
|
100: Color(0xffF0880B),
|
|
200: Color(0xffDEB65D),
|
|
300: Color(0xffF4C144),
|
|
400: Color(0xffD79E5A),
|
|
500: Color(0xffC28C15),
|
|
600: Color(0xffD09B19),
|
|
700: Color(0xffAB6F26),
|
|
800: Color(0xffA07619),
|
|
900: Color(0xffBE983A),
|
|
},
|
|
);
|
|
|
|
static final environment = MaterialColor(
|
|
const Color.fromARGB(255, 102, 172, 91).value,
|
|
const {
|
|
000: Color(0xff66AC5B),
|
|
100: Color(0xff34736B),
|
|
200: Color(0xff737A1B),
|
|
300: Color(0xff248B14),
|
|
400: Color(0xff20A091),
|
|
500: Color(0xff99A22E),
|
|
600: Color(0xff25601C),
|
|
700: Color(0xff167569),
|
|
800: Color(0xff9EA44C),
|
|
},
|
|
);
|
|
|
|
static final social = MaterialColor(
|
|
const Color.fromARGB(255, 81, 177, 210).value,
|
|
const {
|
|
000: Color(0xff51B1D2),
|
|
100: Color(0xff416587),
|
|
200: Color(0xff0682A6),
|
|
300: Color(0xff2789AA),
|
|
400: Color(0xff1B5C99),
|
|
500: Color(0xff3CB8B6),
|
|
600: Color(0xff518496),
|
|
700: Color(0xff6289AD),
|
|
800: Color(0xff236D83),
|
|
},
|
|
);
|
|
|
|
static final cardDecoration = BoxDecoration(
|
|
color: Colors.white,
|
|
borderRadius: BorderRadius.circular(10),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
blurRadius: 5,
|
|
spreadRadius: 5,
|
|
color: Colors.black.withOpacity(0.05),
|
|
),
|
|
],
|
|
);
|
|
}
|