dark constant

CollactionTheme const dark

Implementation

static const dark = CollactionTheme(
  background: Color(0xFFE5E5E5),
  secondary: Color(0xFFF9F9F9),
  primary0: Color(0xFFEFEFEF),
  primary100: Color(0xFFCCCCCC),
  primary200: Color(0xFF999999),
  primary300: Color(0xFF666666),
  primary400: Color(0xFF333333),
  primary500: Color(0xFF000000),
  accent100: Color(0xFFD2F3EB),
  accent200: Color(0xFFA5E8D8),
  accent300: Color(0xFF92E3D0),
  accent400: Color(0xFF4AD1B1),
  accent500: Color(0xFF2EB494),
  negative100: Color(0xFFFFCCC6),
  negative200: Color(0xFFFF9A8D),
  negative300: Color(0xFFFF6754),
  negative400: Color(0xFFFF341B),
  negative500: Color(0xFFE11900),
  warning100: Color(0xFFFFF2D9),
  warning200: Color(0xFFFFE6B4),
  warning300: Color(0xFFFFD98E),
  warning400: Color(0xFFFFCD69),
  warning500: Color(0xFFFFC043),
  positive100: Color(0xFFBAFDDC),
  positive200: Color(0xFF75FABA),
  positive300: Color(0xFF30F897),
  positive400: Color(0xFF07D974),
  positive500: Color(0xFF05944F),
  gold500: Color(0xFFECDA4C),
  diamond500: Color(0xFFCBE6FF),
  silver500: Color(0xFFDCDCDF),
  bronze500: Color(0xFFC6925B),
  largeTitle: TextStyle(
    fontSize: 34,
    fontWeight: FontWeight.w700,
    height: 41 / 34,
  ),
  headline: TextStyle(
    fontSize: 17,
    fontWeight: FontWeight.w700,
    height: 22 / 17,
  ),
  body: TextStyle(
    fontSize: 17,
    fontWeight: FontWeight.w300,
    height: 26 / 17,
  ),
  subheadline: TextStyle(
    fontSize: 15,
    fontWeight: FontWeight.w700,
    height: 20 / 15,
  ),
  footnote: TextStyle(
    fontSize: 13,
    fontWeight: FontWeight.w400,
    height: 18 / 13,
  ),
  caption1: TextStyle(
    fontSize: 12,
    fontWeight: FontWeight.w400,
    height: 16 / 12,
  ),
  caption2: TextStyle(
    fontSize: 11,
    fontWeight: FontWeight.w700,
    height: 13 / 11,
  ),
  title1: TextStyle(
    fontSize: 28,
    fontWeight: FontWeight.w700,
    height: 34 / 28,
  ),
  title2: TextStyle(
    fontSize: 22,
    fontWeight: FontWeight.w700,
    height: 28 / 22,
  ),
  title3: TextStyle(
    fontSize: 20,
    fontWeight: FontWeight.w700,
    height: 25 / 20,
  ),
  inputBorderRadius: 20,
  buttonBorderRadius: 200,
  elevatedButtonSize: Size(double.infinity, 52),
);